
    
    /* Product Grid */
.product-card {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .1);
    transition: box-shadow .2s ease-in-out;
    height: 100%;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, .11);
}

.product-image {
    height: 200px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-details {
    padding: 15px;
    border-top: 1px solid #f0f0f0;
}

.product-title {
    font-size: 14px;
    margin-bottom: 8px;
    color: #212121;
    height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    --webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 16px;
    font-weight: 500;
    color: #212121;
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.original-price {
    color: #878787;
    text-decoration: line-through;
    font-size: 14px;
}

.discount {
    color: #388e3c;
    font-size: 13px;
}
    
  
/* Modern Banner Styles */
.hero-banner {
    margin: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fffff7;
    padding: 20px;
}

.swiper {
    width: 100%;
    height: auto;
    min-height: 200px;  /* Reduced from 400px to 200px */
    margin: 0 auto;
    position: relative;
    background: transparent;
     margin: 20px; 
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.banner-slide-inner {
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;  /* Reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.banner-slide-inner::before {
    display: none;
}

.banner-slide-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    max-width: 100%;
    max-height: 100%;
}


.banner-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    padding: 1rem;
    border-radius: 10px;
    max-width: 50%;
    background: rgba(0, 0, 0, 0.4); /* Optional: adds a semi-transparent background */
    color: #fff; /* Ensures text is readable */
}


.banner-title {
    font-size: 2rem;  /* Reduced font size */
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;  /* Reduced margin */
    line-height: 1.2;
    color: white;
}

.banner-subtitle {
    font-size: 1rem;  /* Reduced font size */
    color: #666;
    margin-bottom: 1rem;  /* Reduced margin */
    font-weight: 400;
    line-height: 1.4;
}

/* Rest of the styles remain the same */
.banner-btn {
    justify-content: center;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #4CAF50;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.banner-btn:hover {
    background: #43A047;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.swiper-pagination {
    position: absolute;
    bottom: 10px !important;  /* Reduced from 20px */
    z-index: 4;
    width: 100%;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ddd;
    opacity: 1;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    background: #4CAF50;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 1.75rem;
    }
    .banner-content {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 15px;
    }
    .banner-content {
        left: 10px;
        bottom: 10px;
        max-width: 90%;
        text-align: left;
    }
    .banner-title {
        font-size: 1.5rem;
    }
    .banner-subtitle {
        font-size: 0.9rem;
    }
    .banner-btn {
        padding: 0.6rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 10px;
    }
    .banner-title {
        font-size: 1.25rem;
    }
    .banner-content {
        width: 100%;
        padding: 0.75rem;
    }
    .banner-slide-inner {
        padding: 0.75rem;
    }
    .swiper {
        min-height: 150px;  /* Even smaller height for mobile */
    }
}
/* Enhanced Delivery Tiles */
/* Enhanced Delivery Tiles */
.delivery-tiles {
    padding: 2rem 0;
    background: #f8f9fa;
}

.delivery-tiles .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    justify-content: center;
    padding: 0 1rem;
}

.delivery-tiles .col-md-3 {
    flex: 0 0 calc(16.666% - 1rem);
    max-width: calc(16.666% - 1rem);
}

.delivery-tile {
    background: white;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.delivery-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.delivery-tile i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ff4081;
}

.delivery-tile h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.delivery-tile .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    .delivery-tiles .col-md-3 {
        flex: 0 0 calc(16.666% - 1rem);
        max-width: calc(16.666% - 1rem);
    }
}

@media (max-width: 1200px) {
    .delivery-tiles .col-md-3 {
        flex: 0 0 calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .delivery-tiles .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .delivery-tiles .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .delivery-tile {
        height: auto;
        min-height: 140px;
        padding: 1rem;
    }
}
/* Enhanced Delivery Tiles - Mobile View Fix */
@media (max-width: 576px) {
    .delivery-tiles .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.5rem;
    }
    
    .delivery-tiles .col-md-3 {
        width: 100%;
        padding: 0;
    }
    
    .delivery-tile {
        height: auto;
        min-height: 120px;
        padding: 1rem 0.5rem;
    }
    
    .delivery-tile i {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }
    
    .delivery-tile h3 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .delivery-tile .btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .delivery-tiles .row {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .delivery-tile {
        min-height: 110px;
    }
    
    .delivery-tile i {
        font-size: 1.2rem;
    }
    
    .delivery-tile h3 {
        font-size: 0.75rem;
    }
    
    .delivery-tile .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
}
@media (max-width: 480px) {
    .delivery-tiles .row {
        grid-template-columns: 1fr;
    }
    
    .delivery-tile {
        min-height: 120px;
    }
    
    .delivery-tile i {
        font-size: 1.5rem;
    }
    
    .delivery-tile h3 {
        font-size: 0.85rem;
    }
}

/* Enhanced Festival Calendar */
/* Enhanced Festival Calendar */
.festival-calendar {
    padding: 3rem 0;
    background: #fff;
}

.festival-tile {
    position: relative;
    border-radius: 20px;
    height: 300px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.15);
    transition: all 0.3s ease;
}

.festival-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.25);
}

.festival-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.festival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.festival-tile:hover .festival-image img {
    transform: scale(1.1);
}

.festival-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.3) 100%
);

    color: black;
    text-align: center;
}

.festival-tile .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.festival-tile h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.festival-tile .date {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .festival-tile {
        height: 250px;
    }
    
    .festival-tile .icon {
        font-size: 2.5rem;
    }
    
    .festival-tile h3 {
        font-size: 1.2rem;
    }
    
    .festival-tile .date {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .swiper {
        height: 300px;
        margin: 10px auto;
    }

    .banner-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 1.5rem;
    }

    .banner-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .banner-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .delivery-tiles .row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .delivery-tile {
        height: 140px;
        padding: 1rem;
    }

    .delivery-tile i {
        font-size: 1.5rem;
    }

    .delivery-tile h3 {
        font-size: 0.9rem;
    }

    .festival-tile {
        padding: 1.5rem;
    }

    .festival-tile .icon {
        font-size: 2.5rem;
    }

    .festival-tile h3 {
        font-size: 1.2rem;
    }
}

.deals-container {
    background: linear-gradient(135deg, #4f46e5 0%, #ff0000 100%);

    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.deals-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 0l100 100M20 0l80 100M40 0l60 100M60 0l40 100M80 0l20 100" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/></svg>');
    background-size: 20px 20px;
    opacity: 0.3;
}

.deals-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.deals-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.deals-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.countdown-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 1rem 2rem;
    display: inline-flex;
    gap: 1rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.time-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Monaco', monospace;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.time-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    align-self: center;
    margin-top: -0.5rem;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 768px) {
    .deals-content {
        padding: 1.5rem;
        text-align: center;
    }
    
    .countdown-wrapper {
        margin-top: 1rem;
        padding: 1rem;
        justify-content: center;
    }
    
    .time-unit {
        min-width: 50px;
    }
    
    .time-value {
        font-size: 1.5rem;
        padding: 0.4rem 0.8rem;
    }
}
        
/* Enhanced Section Header Styles */
.section-header {
    background: white;
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 20px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    /*margin: 0;*/
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #4f46e5;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.view-all-btn {
    background: white;
    color: #dc3545;
    font-weight: 500;
    border: 1px solid #dc3545;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header {
        padding: 10px 15px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .section-title:after {
        width: 30px;
        height: 2px;
    }
}

/* Add this CSS to fix the spacing between Featured Products and Footer */

/* CSS fix for the excessive space under Featured and Latest Products */
.container.mt-5:last-of-type {
    margin-bottom: 2rem !important; /* Reduce the bottom margin */
}

/* Override the previous styles that were adding too much margin */
.container.mt-5 {
    margin-bottom: 2rem !important; /* Control consistent spacing */
}

/* Fix specific to the products-collage-container */
.products-collage-container {
    margin-bottom: 0 !important; /* Remove bottom margin from collage containers */
}

/* Add this if there's still some extra space from the Featured Products section */
.featured-products-image {
    margin-bottom: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container.mt-5:last-of-type,
    .container.mt-5 {
        margin-bottom: 1.5rem !important; /* Even less margin on mobile */
    }
}





/*.container.mt-5 {
    margin-bottom: 5rem !important; /* Add significant bottom margin *
    
}

/* Alternative approach if you want to target specifically the featured products section */
/*.container.mt-5:last-of-type {
  /*  margin-bottom: 5rem !important;
/*}

/* Ensure proper spacing on mobile devices */
/*@media (max-width: 768px) {
    .container.mt-5:last-of-type {
        margin-bottom: 3rem !important;
    }
}
