/* Home New Page Styles */

/* =============================================
   TRENDING CATEGORIES SECTION
   ============================================= */
.trending-categories-section {
    padding: 0px 20px;
    margin: 40px auto;
    max-width: 1340px;
    width: 100%;
    box-sizing: border-box;
}

.trending-categories-title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.trending-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    width: 100%;
}

.trending-category-card {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    padding: 20px;
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0 0 15px 0;
}

.section-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.section-category-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.section-category-item:hover {
    transform: translateY(-5px);
}

.section-category-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    display: block;
}

.section-category-item:hover .section-category-image {
    transform: scale(1.05);
}

.section-category-image-placeholder {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    font-size: 48px;
    color: white;
    margin-bottom: 10px;
}

.section-category-name {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

/* =============================================
   FEATURED CATEGORIES SECTION
   ============================================= */
.featured-categories-section {
    padding: 0px 20px;
    margin: 30px 20px;
    max-width: 1340px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    box-sizing: border-box;
}

.featured-categories-title {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.featured-categories-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 15px;
    width: 100%;
}

.featured-category-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.featured-category-icon-wrapper {
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    overflow: hidden;
    padding: 10px;
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-category-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.featured-category-card:hover .featured-category-icon {
    transform: scale(1.1);
}

.featured-category-icon-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    font-size: 40px;
    color: white;
}

.featured-category-name {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
    padding: 10px;
    text-align: center;
    line-height: 1.4;
}

.no-featured-categories {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    color: #9ca3af;
}

@media (max-width: 1024px) {
    .trending-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trending-categories-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .section-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .featured-categories-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .featured-category-icon-wrapper {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .trending-category-card {
        padding: 10px;
    }
    .section-title {
        padding-bottom: 0px;
    }
    .trending-categories-section {
        padding: 20px 10px;
        margin: 0px auto;
    }

    .trending-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trending-categories-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 14px;
        margin-bottom: 12px;
        padding-bottom: 0px;
    }

    .section-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .section-category-image {
        height: 120px;
        margin-bottom: 8px;
    }

    .section-category-image-placeholder {
        height: 120px;
        font-size: 36px;
    }

    .section-category-name {
        font-size: 12px;
    }

    .featured-categories-section {
        margin: 20px 10px;
    }

    .featured-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .featured-categories-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .featured-category-icon-wrapper {
        height: 90px;
    }

    .featured-category-name {
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .section-categories-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trending-categories-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .section-category-image {
        height: 100px;
    }

    .section-category-image-placeholder {
        height: 100px;
        font-size: 32px;
    }

    .featured-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .featured-categories-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .featured-category-icon-wrapper {
        height: 85px;
    }

    .featured-category-name {
        font-size: 13px;
        padding: 10px;
    }
}

/* =============================================
   POPULAR CATEGORIES SLIDER SECTION
   ============================================= */
.popular-categories-slider-section {
    padding: 0px 20px;
    margin: 0px auto;
    max-width: 1340px;
    width: 100%;
    box-sizing: border-box;
}

.popular-categories-slider-title {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.popular-categories-slider {
    padding: 10px 0;
}

.popular-category-item {
    text-decoration: none;
    display: block;
    height: 100%;
}

.popular-category-slide {
    margin-right: 20px;
}

.popular-category-card-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.popular-category-card-wrapper:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.popular-category-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.popular-category-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.popular-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.popular-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.popular-category-slide-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.popular-category-btn {
    align-self: flex-start;
    padding: 10px 20px;
    background: #f4b400;
    color: white;
    border: none;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popular-category-btn:hover {
    background: #1e40af;
    transform: scale(1.05);
}

.no-popular-categories {
    padding: 20px;
    text-align: center;
    color: #9ca3af;
}
section.brand-area {
    padding: 10px;
}
@media (max-width: 1024px) {

    section.brand-area {
    padding: 0px;
}
    .popular-category-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: 250px;
    }

    .popular-category-card-wrapper {
        height: 200px;
    }

    .popular-categories-slider-title {
        font-size: 24px;
        margin-bottom: 20px;
        margin-top: 0px;
    }

    .popular-category-slide-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .popular-categories-slider-section {
        padding: 10px;
        margin: 0px auto;
    }

    .popular-category-slide {
        flex: 0 0 calc(100% - 10px);
        margin-right: 0;
    }

    .popular-category-card-wrapper {
        height: 200px;
    }

    .popular-categories-slider-title {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .popular-category-slide-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .popular-category-content {
        padding: 15px;
    }

    .popular-category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Modern offers grid styling */
.offers-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px;
}

/* =============================================
   EVENT CAROUSEL SECTION
   ============================================= */
.event-carousel-wrapper {
    position: relative;
    width: calc(50% - 12.5px);
    flex: 0 1 calc(50% - 12.5px);
    box-sizing: border-box;
}

.event-carousel {
    width: 100%;
}

.event-carousel-slide {
    width: 100%;
    outline: none;
}

.event-carousel-single-item {
    width: 100%;
}

.event-carousel-link {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.event-carousel-image-container {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    background: #f0f0f0;
}

.event-carousel-image-container:hover {
    box-shadow: none;
    transform: scale(1.02);
}

.event-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.event-carousel-image-container:hover .event-carousel-image {
    transform: scale(1.05);
}

.event-carousel-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e8f4d 0%, #155a3a 100%);
    font-size: 48px;
    color: white;
}

.event-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    transition: background 0.3s ease;
}

.event-carousel-link:hover .event-carousel-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.event-carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    color: white;
    z-index: 2;
}

.event-carousel-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.3;
    color: #ffffff;
}

.event-carousel-vendors {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    color: #e0e0e0;
}

/* Slick Carousel Arrow Styling for Event Carousel */
#eventCarousel .slick-prev,
#eventCarousel .slick-next {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}


#eventCarousel .slick-prev {
    left: 15px;
}

#eventCarousel .slick-next {
    right: 15px;
}

#eventCarousel .slick-prev:before,
#eventCarousel .slick-next:before {
    color: white;
    font-size: 22px;
}

@media (max-width: 1024px) {
    .offers-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .event-carousel-single-item {
        width: 100%;
    }

    .event-carousel-title {
        font-size: 14px;
    }

    .event-carousel-vendors {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .offers-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .event-carousel-single-item {
        width: 100%;
    }

    .event-carousel-title {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .event-carousel-vendors {
        font-size: 10px;
    }

    .event-carousel-content {
        padding: 12px;
    }
}

@media (max-width: 1024px) {
    .offers-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .offers-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
}

.offer-card-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.offer-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.offer-image-wrapper {
    position: relative;
    padding-bottom: 66.67%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.offer-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer-card-modern:hover .offer-image-wrapper img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.offer-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.offer-vendor-name {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
    font-weight: 500;
}

.offer-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-location {
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
}

.offer-valid {
    font-size: 11px;
    color: #ff4757;
    font-weight: 600;
    margin-bottom: auto;
}

.offer-view-btn {
    background: linear-gradient(135deg, #1e8f4d 0%, #156d3a 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: auto;
}

.offer-view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(30, 143, 77, 0.3);
}

.popular-section {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.popular-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.popular-item {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border: 2px solid #1e8f4d;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popular-item:hover {
    background: linear-gradient(135deg, #1e8f4d 0%, #156d3a 100%);
    color: white;
    transform: scale(1.05);
}

.popular-item-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 13px;
}

.popular-item-count {
    font-size: 11px;
    opacity: 0.8;
}

/* Utility styles for home-new page */
.latest-offers-title {
    padding: 20px 20px 10px 20px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.no-link-decoration {
    text-decoration: none;
}

.no-offers-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #999;
    padding: 40px;
}

/* Brand Area Styles */

.brand-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-left: 20px;
}

.brand-slider {
    position: relative;
    padding-bottom: 25px;
}

/* Slick center mode styling */
.brand-slider.slick-initialized.slick-slider {
    margin: 0 auto;
}

.brand-slider.slick-center-mode-active .slick-track {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-slide {
    padding: 10px;
    display: flex;
    justify-content: center;
}

.brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: translateY(-5px);
}

.brand-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.brand-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-align: center;
    word-break: break-word;
    line-height: 1.4;
}

.brand-link:hover .brand-name {
    color: #1e8f4d;
}

/* Slick slider customizations for brands */
.brand-slider .slick-prev,
.brand-slider .slick-next {
    width: 40px;
    height: 40px;
    background: #1e8f4d;
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.brand-slider .slick-prev:hover,
.brand-slider .slick-next:hover {
    background: #156d3a;
}

.brand-slider .slick-prev {
    left: -50px;
}

.brand-slider .slick-next {
    right: -50px;
}

.brand-slider .slick-prev:before,
.brand-slider .slick-next:before {
    color: white;
    font-size: 20px;
}

.brand-slider .slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 25px;
    padding-bottom: 0;
    display: block !important;
}

.brand-slider .slick-dots li {
    margin: 0 8px;
    display: inline-block;
}

.brand-slider .slick-dots li button:before {
    color: #1e8f4d;
    opacity: 0.5;
    font-size: 12px;
    content: "●";
}

.brand-slider .slick-dots li.slick-active button:before {
    color: #1e8f4d;
    opacity: 1;
}

@media (max-width: 1024px) {
    .brand-slider .slick-prev {
        left: -35px;
    }

    .brand-slider .slick-next {
        right: -35px;
    }
}

/* =============================================
   HOME BANNERS - DUAL CAROUSELS SECTION
   ============================================= */
.home-banners-area {
    padding: 0 20px;
    margin: 0px auto;
    width: 100%;
    max-width: 1340px;
    box-sizing: border-box;
    contain: layout style paint;
}

.banners-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
    contain: layout;
}

.banner-carousel-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(50% - 12.5px);
    flex: 0 1 calc(50% - 12.5px);
    box-sizing: border-box;
    contain: layout style paint;
}

@media (max-width: 768px) {
    .banners-container {
        flex-direction: column;
        gap: 20px;
    }

    .banner-carousel-wrapper {
        width: 100%;
        flex: 0 1 100%;
        min-height: auto;
    }

    .event-carousel-wrapper {
        width: 100%;
        flex: 0 1 100%;
        min-height: auto;
    }
}

.banner-single-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    display: flex;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.banner-carousel {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0px !important;
}

.banner-slide {
    outline: none;
    box-sizing: border-box;
}

.banner-link {
    display: flex;
    text-decoration: none;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.banner-image {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.banner-carousel .slick-slide:hover .banner-image {
    transform: scale(1.02);
}

/* Banner Carousel Arrow Styling */
.banner-carousel .slick-prev,
.banner-carousel .slick-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.banner-carousel .slick-prev {
    left: 15px;
}

.banner-carousel .slick-next {
    right: 15px;
}

.banner-carousel .slick-prev:before,
.banner-carousel .slick-next:before {
    color: white;
    font-size: 22px;
}

/* Banner Carousel Dots Styling */
.banner-carousel .slick-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    border-radius: 20px;
    display: block !important;
}

.banner-carousel .slick-dots li {
    display: inline-block;
    margin: 0px;
}

.banner-carousel .slick-dots li button:before {
    color: white;
    opacity: 0.6;
    font-size: 20px;
    content: "●";
}

.banner-carousel .slick-dots li.slick-active button:before {
    color: white;
    opacity: 1;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .banners-container {
        gap: 20px;
    }

    .banner-carousel .slick-prev,
    .banner-carousel .slick-next {
        width: 40px;
        height: 40px;
    }

    .banner-carousel .slick-prev:before,
    .banner-carousel .slick-next:before {
        font-size: 18px;
    }
}

/* Mobile Responsive - Stack Carousels */
@media (max-width: 768px) {
    .home-banners-area {
        padding: 10px;
    }

    .banners-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .banner-image {
        min-height: auto;
    }

    .banner-carousel .slick-prev,
    .banner-carousel .slick-next {
        width: 35px;
        height: 35px;
    }

    .banner-carousel .slick-prev {
        left: 10px;
    }

    .banner-carousel .slick-next {
        right: 10px;
    }

    .banner-carousel .slick-dots {
        bottom: 10px;
        padding: 8px 12px;
    }

    .banner-carousel .slick-dots li {
        margin: 0 4px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .banner-carousel .slick-prev,
    .banner-carousel .slick-next {
        width: 30px;
        height: 30px;
    }

    .banner-carousel .slick-prev:before,
    .banner-carousel .slick-next:before {
        font-size: 14px;
    }

    .banner-carousel .slick-dots {
        padding: 6px 10px;
        bottom: 8px;
    }

    .banner-carousel .slick-dots li {
        margin: 0 3px;
    }

    .banner-carousel .slick-dots li button:before {
        font-size: 8px;
    }
}

#popularCategoriesSlider  .slick-prev{left: 5px;z-index: 5;}
#popularCategoriesSlider  .slick-next{right: 25px;}

@media (max-width: 768px) {
    #popularCategoriesSlider  .slick-next{right: 5px;}
    .brand-section-title {
        font-size: 18px;
        padding-left: 10px;
        margin-bottom: 20px;
    }

    .brand-link {
        height: 90px;
        padding: 10px;
    }

    .brand-logo {
        max-height: 60px;
        margin-bottom: 8px;
    }

    .brand-name {
        font-size: 11px;
    }

    .brand-slider {
        padding-bottom: 0px;
    }

    .brand-slider .slick-prev,
    .brand-slider .slick-next {
        width: 35px;
        height: 35px;
    }

    .brand-slider .slick-prev {
        left: -40px;
    }

    .brand-slider .slick-next {
        right: -40px;
    }

    .brand-slider .slick-dots {
        margin-top: 0px;
        display: block !important;
    }
}

/* =============================================
   EVENTS CAROUSEL SECTION
   ============================================= */
.events-carousel-section {
    margin: 40px 0;
}

.events-carousel-wrapper {
    width: 100%;
}

.events-carousel-items {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.events-carousel-items::-webkit-scrollbar {
    height: 8px;
}

.events-carousel-items::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 4px;
}

.events-carousel-items::-webkit-scrollbar-thumb {
    background: #1e8f4d;
    border-radius: 4px;
}

.events-carousel-items::-webkit-scrollbar-thumb:hover {
    background: #0f5c3a;
}

.event-carousel-card {
    flex: 0 0 auto;
    width: 300px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.event-carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.event-carousel-image-container {
    position: relative;
    width: 100%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.event-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-carousel-card:hover .event-carousel-image {
    transform: scale(1.1);
}

.event-carousel-image-placeholder {
    font-size: 3rem;
    color: #d1d5db;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-carousel-card:hover .event-overlay {
    opacity: 1;
}

.event-btn {
    background: #1e8f4d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
}

.event-btn:hover {
    background: #0f5c3a;
}

@media (max-width: 768px) {
    .event-carousel-card {
        width: 250px;
    }

    .events-carousel-items {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .event-carousel-card {
        width: 200px;
    }


}



/* =============================================
   EVENT DETAILS PAGE STYLES
   ============================================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #f9fafb;
}

.event-hero {
    background: linear-gradient(135deg, #1e8f4d 0%, #0f5c3a 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.event-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.event-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.event-image-placeholder {
    width: 100%;
    height: 400px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.event-image-placeholder i {
    font-size: 5rem;
    color: #d1d5db;
}

.event-info {
    color: #1f2937;
}

.event-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #374151;
}

.meta-item i {
    font-size: 1.3rem;
    width: 30px;
    color: #1e8f4d;
}

.status-badge {
    background: #d1fae5;
    color: #065f46;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    margin-bottom: 30px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.event-description {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-description h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.event-description p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.vendors-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vendors-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vendors-section h2 i {
    color: #1e8f4d;
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.vendor-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    border-color: #1e8f4d;
}

.vendor-image-wrapper {
    width: 100%;
    height: 200px;
    background: #f3f4f6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-placeholder-icon {
    font-size: 4rem;
    color: #d1d5db;
}

.vendor-content {
    padding: 20px;
}

.vendor-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.vendor-details {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vendor-details i {
    color: #1e8f4d;
}

.vendor-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.vendor-location i {
    color: #1e8f4d;
}

.vendor-actions {
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 10px 15px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-primary {
    background: #1e8f4d;
    color: white;
}

.btn-primary:hover {
    background: #0f5c3a;
    color: white;
}

.btn-secondary {
    background: #e5e7eb;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #d1d5db;
    color: #374151;
}

.no-vendors {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

.no-vendors i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #d1d5db;
}

@media (max-width: 768px) {
    .event-header {
        grid-template-columns: 1fr;
    }

    .event-info h1 {
        font-size: 1.8rem;
    }

    .vendors-grid {
        grid-template-columns: 1fr;
    }

    .event-description,
    .vendors-section {
        padding: 20px;
    }

    .event-description h2,
    .vendors-section h2 {
        font-size: 1.5rem;
    }
}
