/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    color: #2c5530;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #2c5530;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-bar {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    border: 1px solid #e9ecef;
}

.search-bar input {
    border: none;
    background: none;
    outline: none;
    padding: 0.5rem;
    width: 200px;
    font-size: 0.9rem;
}

.search-bar button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.2rem;
    color: #2c5530;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 8px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white !important;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
    z-index: 10;
    min-width: 24px;
    min-height: 24px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    border: 2px solid white;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.cart-count:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.6);
}

.cart-count.pulse {
    animation: cartPulse 0.6s ease-in-out;
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Ensure cart count text is always visible and centered */
.cart-count:not([style*="display: none"]) {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cart-count span,
.cart-count::before,
.cart-count::after {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Mobile cart count adjustments */
@media (max-width: 768px) {
    .cart-count {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        top: 2px;
        right: 6px;
        min-width: 24px;
        min-height: 24px;
        background: #e74c3c;
        border-radius: 50%;
        line-height: 1;
        font-weight: 700;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        box-shadow: 0 3px 8px rgba(231, 76, 60, 0.4);
    }
}

@media (max-width: 480px) {
    .cart-count {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
        top: 2px;
        right: 6px;
        min-width: 22px;
        min-height: 22px;
        background: #e74c3c;
        border-radius: 50%;
        line-height: 1;
        font-weight: 700;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        box-shadow: 0 3px 8px rgba(231, 76, 60, 0.4);
    }
}

@media (max-width: 360px) {
    .cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
        top: 2px;
        right: 6px;
        min-width: 20px;
        min-height: 20px;
        background: #e74c3c;
        border-radius: 50%;
        line-height: 1;
        font-weight: 700;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        box-shadow: 0 3px 8px rgba(231, 76, 60, 0.4);
    }
}

.user-actions {
    display: flex;
    gap: 1rem;
}

.btn-signin, .btn-create-account {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-signin {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-signin:hover {
    background: #2c5530;
    color: white;
}

.btn-create-account {
    background: #2c5530;
    color: white;
}

.btn-create-account:hover {
    background: #1e3a23;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #2c5530;
}

/* Horizontal Scrolling Hero Carousel */
.hero-carousel-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
}

.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-carousel-track {
    display: flex;
    width: 400%; /* 4 slides */
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    opacity: 1;
    transform: none;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Background Patterns */
.mandala-pattern {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.mandala-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.mandala-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.mandala-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 20%;
    animation-delay: 4s;
}

.decorative-pattern {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 85, 48, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.pattern-1 {
    width: 250px;
    height: 250px;
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.pattern-2 {
    width: 180px;
    height: 180px;
    bottom: 25%;
    left: 10%;
    animation-delay: 3s;
}

.health-pattern {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: float 7s ease-in-out infinite;
}

.health-1 {
    width: 220px;
    height: 220px;
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.health-2 {
    width: 160px;
    height: 160px;
    bottom: 30%;
    left: 15%;
    animation-delay: 2.5s;
}

.quality-pattern {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 202, 240, 0.1) 0%, transparent 70%);
    animation: float 9s ease-in-out infinite;
}

.quality-1 {
    width: 280px;
    height: 280px;
    top: 12%;
    right: 12%;
    animation-delay: 1.5s;
}

.quality-2 {
    width: 200px;
    height: 200px;
    bottom: 18%;
    left: 8%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Brand Header */
.brand-header {
    margin-bottom: 2rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.brand-icon {
    color: #2c5530;
    font-size: 1.5rem;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5530;
    text-transform: lowercase;
    letter-spacing: 2px;
}

.brand-tagline {
    font-size: 1rem;
    color: #8b4513;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slide Titles */
.slide-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 3rem;
    color: #2c5530;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line-1 {
    display: block;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.title-line-2 {
    display: block;
    color: #d2691e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5d4e37;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #2c5530 0%, #1e3a23 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(44, 85, 48, 0.4);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #2c5530;
    border: 2px solid #2c5530;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-actions .btn-secondary:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-3px);
}

/* Product Showcase Horizontal */
.product-showcase-horizontal {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.product-item {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    max-width: 250px;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 85, 48, 0.1), transparent);
    transition: left 0.6s ease;
}

.product-item:hover::before {
    left: 100%;
}

.product-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #2c5530;
}

.product-item .product-image {
    width: 100%;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.product-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-item .product-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
    text-align: center;
}

.product-item .product-info .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d2691e;
    text-align: center;
    display: block;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #2c5530;
}

.benefit-item i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Quality Features */
.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quality-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quality-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #2c5530;
}

.quality-item i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.quality-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1rem;
}

.quality-item p {
    color: #666;
    line-height: 1.6;
}

/* Carousel Navigation */
.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.carousel-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #2c5530;
    border: 2px solid rgba(44, 85, 48, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: #2c5530;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(44, 85, 48, 0.3);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-dot.active {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.carousel-dot.active::before {
    width: 8px;
    height: 8px;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2c5530 0%, #4CAF50 50%, #2c5530 100%);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(44, 85, 48, 0.9);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-btn:hover {
    background: #2c5530;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.4);
}

.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Products Carousel Navigation */
.products-carousel-container .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #2c5530;
    border: 2px solid rgba(44, 85, 48, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(44, 85, 48, 0.1);
    z-index: 10;
    opacity: 0.8;
}

.products-carousel-container .carousel-arrow:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 20px 50px rgba(44, 85, 48, 0.3);
    opacity: 1;
    border-color: rgba(44, 85, 48, 0.3);
}

.products-carousel-container .carousel-arrow:active {
    transform: translateY(-50%) scale(1.05);
}

.products-carousel-container .carousel-prev {
    left: 20px;
}

.products-carousel-container .carousel-next {
    right: 20px;
}

/* Products Carousel Dots */
.featured-products-carousel .carousel-dots {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    justify-content: center;
}

.featured-products-carousel .carousel-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.featured-products-carousel .carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-products-carousel .carousel-dot.active {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.featured-products-carousel .carousel-dot.active::before {
    width: 8px;
    height: 8px;
}

.featured-products-carousel .carousel-dot:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* Products Carousel Progress Bar */
.featured-products-carousel .carousel-progress {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    overflow: hidden;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.featured-products-carousel .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2c5530 0%, #4CAF50 50%, #2c5530 100%);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.featured-products-carousel .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

/* Mobile pagination - hidden by default on desktop */
.mobile-pagination {
    display: none;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    
    /* General mobile text size reduction */
    body {
        font-size: 0.9rem;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-size: 0.9em;
    }
    
    p, span, div, a {
        font-size: 1.0em;
    }
    
    /* Force single column layout with high specificity */
    .featured-products-carousel .products-carousel-container .products-carousel-wrapper .products-carousel-track .products-slide .products-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    
    .hero-carousel-section {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    .hero-carousel-container {
        height: 90vh;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .product-showcase-horizontal {
        flex-direction: column;
        align-items: center;
    }
    
    .product-item {
        min-width: 250px;
        max-width: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .carousel-dots {
        bottom: 30px;
        padding: 15px;
    }
    
    .carousel-progress {
        bottom: 100px;
        width: 250px;
    }
    
    .floating-actions {
        right: 15px;
        gap: 0.5rem;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }
    
    .whatsapp-float a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Products Carousel Mobile */
    .products-carousel-container {
        padding: 0 2rem;
        gap: 1rem;
    }
    
    .products-carousel-container .carousel-arrow {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .products-carousel-container .carousel-prev {
        left: 10px;
    }
    
    .products-carousel-container .carousel-next {
        right: 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* Override any existing grid rules with maximum specificity */
    .featured-products-carousel .container .products-carousel-container .products-carousel-wrapper .products-carousel-track .products-slide .products-grid,
    .products-grid,
    div.products-grid {
        grid-template-columns: 1fr !important;
        -ms-grid-columns: 1fr !important;
        display: grid !important;
        width: 100% !important;
    }
    
    /* Force single column with CSS custom properties */
    .products-grid {
        --grid-columns: 1 !important;
        grid-template-columns: repeat(1, 1fr) !important;
        grid-template-columns: minmax(0, 1fr) !important;
        grid-auto-columns: 1fr !important;
    }
    
    /* Fix product card width and spacing on mobile */
    .product-card {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        grid-column: 1 / -1 !important;
    }
    
    /* Hide carousel navigation on mobile */
    .products-carousel-container .carousel-arrow {
        display: none !important;
    }
    
    /* Hide carousel wrapper styling for mobile */
    .products-carousel-wrapper {
        overflow: visible !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        width: 100% !important;
    }
    
    /* Make slides stack vertically on mobile */
    .products-carousel-track {
        display: block !important;
        transform: none !important;
        width: 100% !important;
    }
    
    .products-slide {
        width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        display: block !important;
        margin-bottom: 2rem;
        flex-shrink: unset !important;
        position: static !important;
    }
    
    /* Hide carousel dots on mobile */
    .featured-products-carousel .carousel-dots {
        display: none !important;
    }
    
    /* Hide carousel progress on mobile */
    .featured-products-carousel .carousel-progress {
        display: none !important;
    }
    
    /* Override container padding on mobile */
    .products-carousel-container {
        padding: 0 !important;
        gap: 0 !important;
        display: block !important;
    }
    
    .products-slide {
        padding: 1.5rem 0 !important;
    }
    
    .featured-products-carousel .carousel-dots {
        padding: 15px;
        gap: 10px;
    }
    
    .featured-products-carousel .carousel-progress {
        width: 250px;
    }
    
    .featured-products-carousel .section-header h2 {
        font-size: 2.2rem;
    }
    
    .featured-products-carousel .section-header p {
        font-size: 1.1rem;
    }
    
    /* Final mobile grid override - nuclear option */
    * .products-grid,
    .products-grid,
    div[class*="products-grid"],
    [class*="grid"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Force flexbox fallback if grid fails */
    .products-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .product-card {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Mobile pagination styles */
    .mobile-pagination {
        display: flex !important;
        justify-content: center;
        gap: 10px;
        margin-top: 2rem;
        flex-wrap: wrap;
    }
    
    .mobile-pagination .page-btn {
        padding: 10px 15px;
        background: #2c5530;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        min-width: 45px;
    }
    
    .mobile-pagination .page-btn:hover,
    .mobile-pagination .page-btn.active {
        background: #4CAF50;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
    }
    
    .mobile-pagination .page-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }
}

@media (max-width: 480px) {
    .hero-carousel-container {
        height: 85vh;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item,
    .quality-item {
        padding: 1.5rem;
    }
    
    .product-item {
        min-width: 200px;
        max-width: 250px;
        padding: 1rem;
    }
    
    .product-item .product-image {
        height: 100px;
    }
    
    .product-image-container {
        width: 100% !important;
        height: 200px !important;
        overflow: hidden !important;
        border-radius: 8px !important;
    }
    
    .product-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    .product-image-placeholder {
        width: 100% !important;
        height: 200px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .carousel-dots {
        bottom: 25px;
        padding: 10px;
        gap: 10px;
    }
    
    .carousel-progress {
        bottom: 80px;
        width: 200px;
    }
    
    /* Products Carousel Mobile Small */
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* Fix product card width and spacing on small mobile */
    .product-card {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .products-carousel-container {
        padding: 0 !important;
        gap: 0 !important;
        display: block !important;
    }
    
    .products-carousel-container .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .products-carousel-container .carousel-prev {
        left: 5px;
    }
    
    .products-carousel-container .carousel-next {
        right: 5px;
    }
    
    .products-slide {
        padding: 1rem 0 !important;
        width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        display: block !important;
        margin-bottom: 2rem;
        flex-shrink: unset !important;
        position: static !important;
    }
    
    .featured-products-carousel .carousel-dots {
        padding: 10px;
        gap: 8px;
    }
    
    .featured-products-carousel .carousel-progress {
        width: 200px;
    }
    
    .featured-products-carousel .section-header h2 {
        font-size: 1.8rem;
    }
    
    .featured-products-carousel .section-header p {
        font-size: 1rem;
    }
    
    
    
    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-item {
        padding: 1rem;
    }
    
    .product-item img {
        height: 100px;
    }
    
    
    
    /* Desserts Mobile */
    .desserts-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dessert-item {
        height: 300px;
    }
    
    .dessert-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .product-box {
        max-width: 150px;
    }
    
    .dessert-model img {
        width: 100px;
        height: 100px;
    }
    
    /* LABA Mobile */
    .laba-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .laba-carousel-container {
        padding: 0 2rem;
    }
    
    .laba-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
}

/* Desserts & Snacks Section */
.desserts-snacks-section {
    padding: 80px 0;
    background: white;
}

.desserts-snacks-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
    font-weight: 700;
}

.desserts-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.dessert-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.dessert-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dessert-background.makhana-kheer {
    background: linear-gradient(135deg, #ff8a65 0%, #ff7043 50%, #ff5722 100%);
}

.dessert-background.roasted-makhana {
    background: linear-gradient(135deg, #424242 0%, #616161 50%, #757575 100%);
}

.dessert-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.product-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: #333;
    max-width: 200px;
}

.product-box img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-tag {
    background: #2c5530;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.dessert-model img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.dessert-item h3 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.brand-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.brand-description p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* LABA Section */
.laba-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #e8f5e8 100%);
}

.laba-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
    font-weight: 700;
}

.laba-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 100px;
}

.laba-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(44, 85, 48, 0.1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.laba-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.laba-slide {
    width: 100%;
    flex-shrink: 0;
    padding: 2rem;
}

.laba-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.laba-product-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(44, 85, 48, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.laba-product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(44, 85, 48, 0.15);
}

.product-package {
    position: relative;
    margin-bottom: 1rem;
}

.product-package img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}

.package-label {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c5530;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.laba-product-card h4 {
    font-size: 1rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.price {
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.sale-price {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-outline:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-2px);
}

.laba-section .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.laba-section .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(44, 85, 48, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.laba-section .carousel-dot.active {
    background: #2c5530;
    transform: scale(1.3);
}

.laba-section .carousel-dot:hover {
    background: rgba(44, 85, 48, 0.5);
    transform: scale(1.2);
}

/* Social Media Section */

/* Hero Carousel - Premium Design */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    align-items: center;
    transform: none;
    filter: brightness(1);
}

.hero-slide.active {
    opacity: 1;
    transform: none;
    filter: brightness(1);
}

.hero-slide.prev {
    opacity: 1;
    transform: none;
    filter: brightness(1);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

/* Smooth scrolling indicators */
.hero-carousel::before,
.hero-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(to right, rgba(0,0,0,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-carousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.1), transparent);
}

.hero-carousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.1), transparent);
}

.hero-carousel:hover::before,
.hero-carousel:hover::after {
    opacity: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 4rem;
    border-radius: 30px;
    margin: 0 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 600px;
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-slide .hero-text h1 {
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slide .hero-text p {
    color: #e8e8e8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide .hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-slide .btn-primary {
    background: linear-gradient(135deg, #2c5530 0%, #1e3a23 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 
        0 8px 25px rgba(44, 85, 48, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-slide .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-slide .btn-primary:hover::before {
    left: 100%;
}

.hero-slide .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(44, 85, 48, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-slide .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.hero-slide .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Carousel Navigation - Premium Design */
.carousel-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-dot.active {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.carousel-dot.active::before {
    width: 8px;
    height: 8px;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* Scroll progress indicator - Premium Design */
.carousel-progress {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2c5530 0%, #4CAF50 50%, #2c5530 100%);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.carousel-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
}

.hero-carousel:hover .carousel-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.carousel-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.carousel-arrow:hover::before {
    width: 100%;
    height: 100%;
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* Mobile Responsive for Carousel */
@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
    }
    
    .hero-slide .hero-content {
        margin: 0 15px;
        padding: 2.5rem;
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 90%;
    }
    
    .hero-slide .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-slide .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-slide .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-slide .btn-primary,
    .hero-slide .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .carousel-nav {
        bottom: 25px;
        padding: 15px;
        gap: 12px;
    }
    
    .carousel-dot {
        width: 14px;
        height: 14px;
    }
    
    .carousel-progress {
        width: 200px;
        bottom: 80px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 60vh;
    }
    
    .hero-slide .hero-content {
        margin: 0 10px;
        padding: 2rem;
    }
    
    .hero-slide .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-slide .hero-text p {
        font-size: 1rem;
    }
    
    .hero-slide .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-nav {
        bottom: 20px;
        padding: 12px;
    }
    
    .carousel-progress {
        width: 150px;
        bottom: 70px;
    }
}

/* Smooth scrolling enhancements */
.hero-carousel {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.hero-slide {
    will-change: transform, opacity;
}

/* Premium hover effects and animations */
.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Floating animation for content */
.hero-slide .hero-content {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Particle effect background */
.hero-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Enhanced slide transition animations */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(1.1);
        filter: brightness(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: brightness(1);
    }
}

@keyframes slideOut {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: brightness(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%) scale(0.9);
        filter: brightness(0.6);
    }
}

/* Loading states and micro-interactions */
.hero-carousel.loading .hero-slide {
    filter: blur(2px);
}

.hero-carousel.loading .carousel-arrow,
.hero-carousel.loading .carousel-dot {
    pointer-events: none;
    opacity: 0.5;
}

/* Premium focus states for accessibility */
.carousel-arrow:focus,
.carousel-dot:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Smooth state transitions */
.hero-slide,
.carousel-arrow,
.carousel-dot,
.carousel-progress-bar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #2c5530;
    color: white;
}

.btn-primary:hover {
    background: #1e3a23;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-secondary:hover {
    background: #2c5530;
    color: white;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

/* Trending Section */
.trending {
    padding: 60px 0;
    background: white;
}

.trending h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 2rem;
}

.trending-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag {
    background: #f8f9fa;
    color: #2c5530;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    background: #2c5530;
    color: white;
    border-color: #2c5530;
}

/* Hero Section */
.hero-section {
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    height: 60vh;
    min-height: 60vh;
    max-height: 60vh;
    display: block;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 60vh;
    max-height: 60vh;
    overflow: hidden;
    background: transparent;
}

.hero-slide {
    width: 100%;
    height: 60vh;
    min-height: 60vh;
    max-height: 60vh;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide .hero-image {
    width: 100%;
    height: 60vh;
    min-height: 60vh;
    max-height: 60vh;
    position: relative;
}

.hero-slide .hero-image img {
    width: 100%;
    height: 60vh;
    min-height: 60vh;
    max-height: 60vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Force hero-slide to be visible - override any conflicting rules */
.hero-slide {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* Ensure first slide is always visible */
.hero-slide[data-slide="0"] {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* Remove any gaps between hero section and content below */
.hero-section,
.hero-carousel,
.hero-slide,
.hero-image,
.hero-image img {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
}

/* Ensure content below hero section starts immediately */
.trending-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Global reset to remove any gaps */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure no gaps between sections */
section {
    margin: 0 !important;
    padding: 0 !important;
}

/* Specific fix for hero section and content below */
.hero-section + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Force full height for all hero elements */
.hero-section,
.hero-carousel,
.hero-slide,
.hero-image,
.hero-image img {
    height: 60vh !important;
    min-height: 60vh !important;
    max-height: 60vh !important;
}

/* Ensure no background shows through */
.hero-section {
    background: transparent !important;
}

.hero-carousel {
    background: transparent !important;
}

.hero-slide {
    background: transparent !important;
}

.hero-image {
    background: transparent !important;
}

/* Mobile image display optimization */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
        background: #f8f9fa !important;
    }
    
    .hero-carousel {
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
        width: 100% !important;
        background: transparent !important;
    }
    
    .hero-slide {
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
        width: 100% !important;
        background: transparent !important;
    }
    
    .hero-image {
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
        width: 100% !important;
        background: transparent !important;
        display: block !important;
    }
    
    .hero-slide .hero-image img,
    .hero-banner-image {
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
    }
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 24px;
    font-weight: bold;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: #2c5530;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Device-specific banner display */
.hero-banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    background: #f8f9fa;
    display: block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    will-change: transform;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Desktop banner - show desktop image */
@media (min-width: 769px) {
    .hero-banner-image {
        /* Remove content attr as it doesn't work with img tags */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Mobile banner - show mobile image */
@media (max-width: 768px) {
    .hero-banner-image {
        /* Remove content attr as it doesn't work with img tags */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

.hero-background {
    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"><defs><pattern id="hero-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="%23ffffff" opacity="0.08"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.12"/><circle cx="10" cy="60" r="1.8" fill="%23ffffff" opacity="0.06"/><circle cx="90" cy="40" r="1.2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.3;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-makhana {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-makhana.makhana-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-makhana.makhana-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-makhana.makhana-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brand-badge i {
    color: #4CAF50;
}

.brand-badge span {
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    line-height: 1.1;
}

.title-main {
    display: block;
    color: white;
}

.title-accent {
    display: block;
    color: #4CAF50;
    font-size: 0.8em;
    margin-top: -0.2em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-actions .btn-primary {
    background: white;
    color: #2c5530;
    border: 2px solid white;
}

.hero-actions .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-actions .btn-secondary:hover {
    background: white;
    color: #2c5530;
    transform: translateY(-2px);
}

.hero-products {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 500px;
}

.product-item {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item.featured {
    transform: scale(1.05);
    border: 2px solid #4CAF50;
}

.product-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-item.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.product-image {
    position: relative;
    margin-bottom: 1rem;
}

.product-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 85, 48, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    color: #2c5530;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #4CAF50;
    color: white;
    transform: scale(1.05);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2c5530;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.product-info h4 {
    font-size: 1rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-top: auto;
}

.product-rating i {
    color: #ffc107;
    font-size: 0.8rem;
}

.product-rating span {
    font-size: 0.8rem;
    color: #6c757d;
    margin-left: 0.3rem;
}


/* Plain Makhana Section */
.plain-makhana-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f8e9 100%);
    position: relative;
    overflow: hidden;
}

.plain-makhana-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Featured Products Carousel */
.featured-products-carousel {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f8e9 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.featured-products-carousel::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e8f5e8" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23d4edda" opacity="0.2"/><circle cx="50" cy="10" r="0.5" fill="%23c3e6cb" opacity="0.4"/><circle cx="10" cy="60" r="0.8" fill="%23a8d5a8" opacity="0.2"/><circle cx="90" cy="40" r="0.6" fill="%23b8e6b8" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.featured-products-carousel .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.featured-products-carousel .section-header h2 {

    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.featured-products-carousel .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2c5530, #4CAF50, #2c5530);
    border-radius: 2px;
}

.featured-products-carousel .section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.featured-products-carousel .section-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.featured-products-carousel .section-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(44, 85, 48, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.featured-products-carousel .section-indicators .indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #2c5530;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-products-carousel .section-indicators .indicator.active {
    background: transparent;
    transform: scale(1.3);
}

.featured-products-carousel .section-indicators .indicator.active::before {
    width: 8px;
    height: 8px;
}

.featured-products-carousel .section-indicators .indicator:hover {
    background: rgba(44, 85, 48, 0.5);
    transform: scale(1.2);
}

/* Products Carousel Container */
.products-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 100px;
}

/* Ensure 4 products on large screens */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2rem;
    }
}

/* Show 3 products on medium screens */
@media (min-width: 769px) and (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.8rem;
    }
}

/* Override for mobile - most specific rule */
@media (max-width: 768px) {
    /* Ultra-specific mobile grid override */
    section.featured-products-carousel .container .products-carousel-container .products-carousel-wrapper .products-carousel-track .products-slide .products-grid,
    .featured-products-carousel .products-grid,
    #products-grid,
    [id*="products"] .products-grid {
        grid-template-columns: 1fr !important;
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
        display: grid !important;
    }
}

.products-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(44, 85, 48, 0.1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: grab;
    user-select: none;
}

.products-carousel-wrapper:active {
    cursor: grabbing;
}

.products-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.products-slide {
    width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-slide:first-child {
    opacity: 1;
    transform: translateX(0);
}

.products-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0;
    height: 100%;
    min-height: 400px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44, 85, 48, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 280px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.02) 0%, rgba(76, 175, 80, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(44, 85, 48, 0.15);
    border-color: rgba(44, 85, 48, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* Stock status overlay for index page */
.product-image-container .stock-status-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 15;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure stock overlay shows on images */
.product-image-container > div[style*="position: absolute"][style*="bottom: 10px"] {
    position: absolute !important;
    bottom: 10px !important;
    left: 10px !important;
    z-index: 100 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

/* Additional override for stock overlay visibility */
.product-image-container div[style*="IN STOCK"] {
    position: absolute !important;
    bottom: 10px !important;
    left: 10px !important;
    z-index: 100 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

/* Ultra-specific override for stock overlay on product images */
.featured-products-carousel .product-card .product-image-container div[style*="position: absolute"][style*="bottom: 10px"] {
    position: absolute !important;
    bottom: 10px !important;
    left: 10px !important;
    z-index: 100 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

/* Stock overlay inside image link */
.product-image-container a[style*="position: relative"] div[style*="position: absolute"][style*="bottom: 10px"] {
    position: absolute !important;
    bottom: 10px !important;
    left: 10px !important;
    z-index: 100 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

/* Stock overlay styling - Match view_all_products.php */
.stock-status-overlay {
    position: absolute !important;
    bottom: 10px !important;
    left: 10px !important;
    z-index: 10 !important;
}

.stock-status-overlay span {
    background: rgba(40, 167, 69, 0.9) !important;
    color: white !important;
    padding: 3px 8px !important;
    border-radius: 12px !important;
    font-size: 0.6rem !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
}

.stock-status-overlay i {
    font-size: 0.5rem !important;
}

/* Index.php specific responsive image heights */
@media (max-width: 768px) {
    .premium-product-card.laba-card .laba-product-image {
        height: 200px !important;
        border-radius: 8px !important;
    }
    
    .premium-product-card.laba-card .laba-product-image .product-image-placeholder {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .premium-product-card.laba-card .laba-product-image {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
    }
    
    .premium-product-card.laba-card .laba-product-image .product-image-placeholder {
        height: 180px !important;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .premium-product-card.laba-card .laba-product-image {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }
    
    .premium-product-card.laba-card .laba-product-image .product-image-placeholder {
        height: 220px !important;
    }
}

@media (min-width: 1200px) {
    .premium-product-card.laba-card .laba-product-image {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }
    
    .premium-product-card.laba-card .laba-product-image .product-image-placeholder {
        height: 280px !important;
    }
}

/* Product page stock status styling - Content area */
.stock-status-section {
    margin-bottom: 1rem;
}

.stock-status-badge {
    display: inline-block;
}

.stock-status-badge span {
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.stock-status-badge i {
    font-size: 0.7rem;
}

/* Responsive stock status for product page */
@media (max-width: 768px) {
    .stock-status-badge span {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .stock-status-badge i {
        font-size: 0.65rem;
    }
}

/* Product page stock overlay on image */
.main-product-image .stock-status-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 10;
}

.main-product-image .stock-status-overlay span {
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.main-product-image .stock-status-overlay i {
    font-size: 0.7rem;
}

/* Add to Cart button responsive sizing */
.btn-add-to-cart {
    width: 150px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 768px) {
    .btn-add-to-cart {
        width: 130px !important;
        height: 45px !important;
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
    }
    
    .main-product-image .stock-status-overlay span {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .main-product-image .stock-status-overlay i {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .btn-add-to-cart {
        width: 110px !important;
        height: 40px !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
    }
}

/* Product page responsive spacing */
@media (max-width: 768px) {
    .product-details-container {
        margin-top: 0 !important;
        padding: 0 !important;
    }
    
    .breadcrumb-nav {
        padding: 0.2rem 0 !important;
        margin-bottom: 0.3rem !important;
    }
    
    .product-details-grid {
        padding: 0.8rem !important;
        gap: 1.5rem !important;
        margin-top: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .product-details-container {
        margin-top: 0 !important;
        padding: 0 !important;
    }
    
    .breadcrumb-nav {
        padding: 0.1rem 0 !important;
        margin-bottom: 0.2rem !important;
    }
    
    .product-details-grid {
        padding: 0.5rem !important;
        gap: 1rem !important;
        margin-top: 0.3rem !important;
    }
}

/* Force remove any header spacing on mobile */
@media (max-width: 768px) {
    body {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .product-details-container {
        position: relative !important;
        top: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Reduce discount badge size on mobile */
    .left-badge.discount-percent-badge {
        padding: 4px 8px !important;
        top: 10px !important;
        left: 10px !important;
    }
    
    .left-badge.discount-percent-badge .badge-text {
        font-size: 0.65rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .wishlist-icon {
        width: 30px !important;
        height: 30px !important;
        top: 10px !important;
        right: 10px !important;
    }
    
    .wishlist-icon i {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    /* Even smaller badges for small mobile */
    .left-badge.discount-percent-badge {
        padding: 3px 6px !important;
        top: 8px !important;
        left: 8px !important;
    }
    
    .left-badge.discount-percent-badge .badge-text {
        font-size: 0.6rem !important;
        letter-spacing: 0.3px !important;
    }
    
    .wishlist-icon {
        width: 28px !important;
        height: 28px !important;
        top: 8px !important;
        right: 8px !important;
    }
    
    .wishlist-icon i {
        font-size: 0.8rem !important;
    }
}

/* Mobile View All Products button - Much smaller */
@media (max-width: 768px) {
    .view-all-button-mobile .view-all-btn,
    .view-all-btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem !important;
        min-width: 140px !important;
        height: 35px !important;
    }
    
    /* Make pricing much smaller on mobile */
    .laba-current-price {
        font-size: 0.6rem !important;
    }
    
    .laba-original-price {
        font-size: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .view-all-button-mobile .view-all-btn,
    .view-all-btn {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.7rem !important;
        min-width: 120px !important;
        height: 30px !important;
    }
    
    /* Even smaller pricing for small mobile */
    .laba-current-price {
        font-size: 0.55rem !important;
    }
    
    .laba-original-price {
        font-size: 0.45rem !important;
    }
}

.product-image-container .stock-status-overlay span {
    display: inline-flex !important;
    align-items: center;
    gap: 0.3rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

/* Ultra-specific override for stock status */
.featured-products-carousel .product-card .product-image-container .stock-status-overlay {
    position: absolute !important;
    bottom: 10px !important;
    left: 10px !important;
    z-index: 20 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

.featured-products-carousel .product-card .product-image-container .stock-status-overlay span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    padding: 3px 8px !important;
    border-radius: 12px !important;
    font-size: 0.6rem !important;
    font-weight: 600 !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(4px) !important;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Mobile Responsive Styles for Product Images - Same as view_all_products.php */
@media (max-width: 768px) {
    .product-image-container {
        width: 100% !important;
        height: 200px !important;
        overflow: hidden !important;
        border-radius: 8px !important;
    }
    
    .product-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    .product-image-placeholder {
        width: 100% !important;
        height: 200px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .product-image-container {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
    }
    
    .product-image-placeholder {
        height: 180px !important;
    }
}

@media (min-width: 1200px) {
    .product-image-container {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }
}

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

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background: white;
    color: #2c5530;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.quick-view:hover {
    background: #2c5530;
    color: white;
}

.product-info {
    padding: 0.6rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.product-info h3 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
}

.product-info h3:hover {
    color: #2d3748;
}

.product-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.current-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a202c;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
}

.original-price {
    font-size: 1.1rem;
    color: #718096;
    text-decoration: line-through;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.discount {
    background: #28a745;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}





.badge-text {
    color: white;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    white-space: nowrap;
}



@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Discount Percentage Badge - Hot Red Theme */
.discount-percent-badge {
    background: #ff4757;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: discountPulse 2s ease-in-out infinite;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    border-radius: 25px;
    padding: 8px 16px;
    overflow: hidden;
}

.discount-percent-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 2s infinite;
}

@keyframes discountPulse {
    0%, 100% {
        transform: scale(1) rotate(-2deg);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05) rotate(1deg);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
}

/* Hover Effects */
.discount-percent-badge:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transform: scale(1.08) rotate(0deg);
    transition: all 0.3s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.product-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.5rem !important;
    margin-top: 0.6rem !important;
    align-items: center !important;
    align-items: stretch !important;
}

.action-buttons {
    display: flex !important;
    gap: 0.5rem !important;
    align-items: center !important;
    margin-bottom: 0 !important;
    flex: 1 !important;
    align-items: stretch !important;
}

.quantity-controls {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    padding: 0.2rem !important;
    flex-shrink: 0 !important;
    height: 32px !important;
    min-height: 32px !important;
}

.quantity-btn {
    background: #4a5568;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quantity-btn:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.quantity-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.quantity-display {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    color: #2d3748!important;
    font-size: 0.9rem;
    padding: 0.2rem 0.6rem;
    background: #f7fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.quantity-select {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: white;
    font-size: 0.9rem;
    min-width: 120px;
}

.btn-add-to-cart {
    background: #2c5530;
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 32px;
    min-height: 32px;
}

.btn-add-to-cart:hover {
    background: #1e3a23;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

.btn-wishlist {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e9ecef;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-wishlist:hover {
    background: #ff6b9d;
    color: white;
    border-color: #ff6b9d;
    transform: scale(1.1);
}

.btn-wishlist.active {
    background: #ff6b9d;
    color: white;
    border-color: #ff6b9d;
    animation: heartBeat 0.6s ease;
}

.btn-wishlist.active i {
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Featured Products Additional Styles */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.no-products p {
    font-size: 1.1rem;
    margin: 0;
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Product Details Page Styles */
.product-details-container {
    padding: 40px 20px;
    background: white;
    min-height: 100vh;
}

.breadcrumb-nav {
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #2c5530;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #1e3a23;
}

.breadcrumb-nav .separator {
    margin: 0 0.5rem;
    color: #6c757d;
}

.breadcrumb-nav .current {
    color: #6c757d;
    font-weight: 500;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Side - Product Images */
.product-images-section {
    position: sticky;
    top: 100px;
    max-width: 500px;
}

.main-product-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    background: white;
}

.main-product-image img {
    width: 100%;
    height: auto;
    display: block;
    background: #f8f9fa;
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.thumbnail.active {
    border-color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Right Side - Product Information */
.product-info-section {
    background: white;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 600px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.product-title {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    font-weight: 600;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.product-share:hover {
    background: #f8f9fa;
    color: #2c5530;
}

.sales-activity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.fire-icon {
    font-size: 1.2rem;
}

.vendor-details {
    margin-bottom: 2rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.vendor-details > div {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.vendor-details > div:last-child {
    margin-bottom: 0;
}

.status.in-stock {
    color: #28a745;
    font-weight: 500;
}

.status.out-of-stock {
    color: #dc3545;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 2rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 0.5rem;
}



/* Pack Size Section */
.pack-size-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.pack-size-section label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.pack-size-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pack-size-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.pack-size-btn:hover,
.pack-size-btn.active {
    border-color: #333;
    background: #333;
    color: white;
}

/* Quantity Section */
.quantity-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.quantity-section label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
    background: white;
}

.quantity-btn {
    padding: 0.6rem 0.8rem;
    border: none;
    background: #2c5530;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.quantity-btn:hover {
    background: #1e3a23;
}

.quantity-btn:active {
    background: #1e3a23;
}

#quantity {
    border: none;
    text-align: center;
    padding: 0.6rem;
    width: 70px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

#quantity:focus {
    outline: none;
}

/* Subtotal Section */
.subtotal-section {
    margin-bottom: 2rem;
    padding: 1rem 0;
    background: transparent;
    border-radius: 0;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.subtotal-section strong {
    font-size: 1.1rem;
    color: #333;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.btn-add-to-cart {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: #2c5530;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-add-to-cart:hover {
    background: #1e3a23;
    transform: translateY(-2px);
}

.btn-wishlist {
    padding: 0.8rem;
    background: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wishlist:hover {
    border-color: #ff6b9d;
    color: #ff6b9d;
}

.btn-wishlist.active {
    background: #ff6b9d;
    color: white;
    border-color: #ff6b9d;
}

/* Product Description & Features */
.product-description-section,
.product-features {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.product-description-section h3,
.product-features h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.product-description-section p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.4rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Product Image Link in Featured Products */
.product-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-image-link:hover {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .product-images-section {
        position: static;
        max-width: 100%;
    }
    
    .main-product-image {
        margin-bottom: 1rem;
    }
    
    .product-thumbnails {
        justify-content: center;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-wishlist {
        align-self: center;
    }
    
    .pack-size-buttons {
        justify-content: center;
    }
    
    .quantity-selector {
        margin: 0 auto;
    }
    
    .product-info-section {
        max-width: 100%;
    }
}

/* Shop Categories */
.shop-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.shop-categories::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(44, 85, 48, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(40, 167, 69, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.shop-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5530, #4a90e2);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.categories-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1rem;
}

.categories-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.categories-grid .category-card {
    flex: 0 0 280px;
    min-width: 280px;
    scroll-snap-align: start;
}

/* Categories Container and Scroll Buttons */
.categories-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 80px; /* Increased padding for button space */
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 3px solid #2c5530;
    border-radius: 50%;
    background: white;
    color: #2c5530;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    font-weight: bold;
}

.scroll-btn:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(44, 85, 48, 0.3);
    border-color: #4a90e2;
}

.scroll-btn:hover i {
    color: white;
    transform: scale(1.2);
}

.scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}

/* Hide scroll buttons on mobile */
@media (max-width: 768px) {
    .scroll-btn {
        display: none;
    }
    
    .categories-container {
        padding: 0 1rem;
    }
}

.category-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: inherit;
    display: block;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-card:hover::before {
    opacity: 1;
}

.category-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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



.category-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.category-content p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.category-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(44, 85, 48, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.category-arrow i {
    font-size: 1rem;
    color: #2c5530;
    transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
    background: #2c5530;
    transform: translateX(5px);
}

.category-card:hover .category-arrow i {
    color: white;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.05) 0%, rgba(44, 85, 48, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .shop-categories {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
    }
    

}

/* Enhanced animations and effects */
.category-card {
    animation: fadeInUp 0.6s ease-out;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover state enhancements */
.category-card:hover .category-content h3 {
    color: #1e3a23;
}

.category-card:hover .category-content p {
    color: #495057;
}

/* Focus states for accessibility */
.category-card:focus {
    outline: 3px solid #4a90e2;
    outline-offset: 2px;
}



/* Loading state animation */
.category-card.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Company Highlights */
.company-highlights {
    padding: 80px 0;
    background: #f8f9fa;
}

.company-highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-card i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
}

/* Brand Glance Section */
.brand-glance-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.glance-title {
    font-size: 2.2rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.glance-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #2c5530;
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.glance-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
}

.glance-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.glance-feature {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.glance-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.1);
    background: white;
}

.glance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
}

.glance-feature:nth-child(1) .glance-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.glance-feature:nth-child(2) .glance-icon {
    background: linear-gradient(135deg, #20bf6b, #26de81);
    color: white;
}

.glance-feature:nth-child(3) .glance-icon {
    background: linear-gradient(135deg, #4CAF50, #8bc34a);
    color: white;
}

.glance-icon i {
    font-size: 2rem;
}

.glance-feature h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 700;
}

.glance-feature p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 120px 0 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 2rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #666;
}

.contact-info i {
    color: #ffffff;
    font-size: 1.2rem;
    min-width: 20px;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    font-size: 1.3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #2c5530;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #1e3a23;
    transform: translateY(-3px);
}

/* Contact Social Links - Same style as @MosoFoods */
.contact-social-links {
    margin-top: 2rem;
}

.contact-social-links h4 {
    font-size: 1.3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.contact-social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #2c5530;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 70px;
}

.contact-social-link:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-social-link i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-social-link span {
    font-size: 0.8rem;
    font-weight: 500;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #f5f5f5;
    color: #333;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #333;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #333;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
}

/* Desktop Footer Icons - Green Color */
@media (min-width: 769px) {
    .footer .social-link {
        color: #2c5530 !important;
    }
    
    .footer .social-link:hover {
        background: #2c5530 !important;
        color: white !important;
        border-color: #2c5530 !important;
    }
    
    .contact-info i {
        color: #2c5530 !important;
        margin-right: 8px;
    }
    
    .payment-methods i {
        color: #2c5530 !important;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: #666;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

/* Cart Items Styling */
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-details h4 {
    font-size: 0.9rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.cart-item-details p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.cart-item-total {
    font-weight: 600;
    color: #2c5530 !important;
}

.cart-item-actions {
    flex-shrink: 0;
}

.btn-remove {
    background: #e74c3c;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.btn-remove:hover {
    background: #c0392b;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.cart-header h3 {
    color: #2c5530;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
}

.cart-items {
    padding: 1.5rem;
    min-height: 300px;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c5530;
}

.btn-checkout {
    width: 100%;
    background: #2c5530;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-checkout:hover {
    background: #1e3a23;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Mobile Menu Styles */
    .nav-menu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 1rem 0;
        border-top: 1px solid #e9ecef;
    }
    
    .nav-menu.active .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu.active .nav-list li {
        border-bottom: 1px solid #f8f9fa;
    }
    
    .nav-menu.active .nav-list a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f8f9fa;
    }
    
    .nav-actions.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 1rem 2rem;
        border-top: 1px solid #e9ecef;
        gap: 1rem;
    }
    
    .nav-actions.active .search-bar {
        width: 100%;
    }
    
    .nav-actions.active .search-bar input {
        width: 100%;
    }
    
    .nav-actions.active .user-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-actions.active .btn-signin,
    .nav-actions.active .btn-create-account {
        width: 100%;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact {
        padding: 60px 0 40px 0;
    }
    
    .contact h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-social-links h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-social-icons {
        gap: 1rem;
    }
    
    .contact-social-link {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .contact-social-link i {
        font-size: 1.2rem;
    }
    
    .contact-social-link span {
        font-size: 0.7rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .btn-submit {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Contact form submit button mobile optimization */
    .contact-form .btn-primary {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
    
    /* Brand Glance Mobile */
    .brand-glance-section {
        padding: 40px 0;
    }
    
    .glance-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .glance-title::after {
        width: 40px;
        height: 2px;
        margin: 0.6rem auto 1rem;
    }
    
    .glance-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .glance-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .glance-feature {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .glance-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
    }
    
    .glance-icon i {
        font-size: 1.5rem;
    }
    
    .glance-feature h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .glance-feature p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .product-card {
        max-width: none;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .trending-tags {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .tag {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .trending-tags {
        gap: 0.5rem;
    }
    
    .tag {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card {
        max-width: none;
    }
}

/* CSECoder Inspired Styles */
.main-content {
    margin-top: 0;
}

.hero-section {
    position: relative;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    display: block;
    top: 0;
    border: none;
    outline: none;
    border-radius: 0;
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
    border: none;
    outline: none;
    border-radius: 0;
}

/* Hero content removed - only image display */

/* Hero text styles removed - only image display */

.btn-primary, .btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #2c5530;
    color: white;
    border: 2px solid #2c5530;
}

.btn-primary:hover {
    background: #1a3a1f;
    border-color: #1a3a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-secondary:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    border-radius: 0;
    border: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Trending Now Section - Enhanced Design */
.trending-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.trending-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

.trending-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trending-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2c5530;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.trending-icon {
    font-size: 2.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.trending-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
    margin: 0;
}

.trending-tags-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.trending-tags {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.trending-tag {
    background: white;
    color: #2c5530;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.trending-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.trending-tag:hover::before {
    left: 100%;
}

.trending-tag:hover {
    background: linear-gradient(135deg, #2c5530 0%, #1a3d1e 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
    border-color: #2c5530;
}

.tag-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.trending-tag:hover .tag-icon {
    transform: scale(1.2) rotate(5deg);
}

.tag-text {
    font-size: 1rem;
    font-weight: 600;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .trending-section {
        padding: 3rem 0;
    }
    
    .trending-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .trending-icon {
        font-size: 1.8rem;
    }
    
    .trending-subtitle {
        font-size: 1rem;
    }
    
    .trending-tags {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .trending-tag {
        padding: 0.875rem 1.25rem;
        min-width: 160px;
        font-size: 0.9rem;
    }
    
    .tag-icon {
        font-size: 1.1rem;
    }
    
    .tag-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .trending-section {
        padding: 2.5rem 0;
    }
    
    .trending-title {
        font-size: 1.5rem;
    }
    
    .trending-tags {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .trending-tag {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1rem;
    }
}

/* Product Cards - CSECoder Style */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #2c5530;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c5530;
}

.original-price {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
}

.discount {
    background: #dc3545;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-quick-view, .btn-add-cart {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
}

.btn-quick-view {
    background: #f8f9fa;
    color: #2c5530;
    border: 1px solid #e9ecef;
}

.btn-quick-view:hover {
    background: #e9ecef;
    color: #1a3a1f;
}

.btn-add-cart {
    background: #2c5530;
    color: white;
}

.btn-add-cart:hover {
    background: #1a3a1f;
    transform: translateY(-1px);
}

/* Desktop Responsive */
@media (min-width: 1025px) {
    .hero-image {
        
        min-height: 700px !important;
        max-height: 50vh !important;
        width: 100% !important;
        border-radius: 0 !important;
        border: none !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .hero-image {
        height: auto !important;
        min-height: 550px !important;
        max-height: 85vh !important;
        width: 100% !important;
        border-radius: 0 !important;
        border: none !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hero text styles removed - only image display */
    
    .hero-section {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        min-height: auto !important;
    }
    
    .hero-section {
        min-height: 50vh !important;
    }
    
    .hero-carousel {
        height: 50vh !important;
    }
    
    .hero-slide {
        height: 50vh !important;
    }
    
    .hero-image {
        height: 50vh !important;
        width: 100% !important;
        border-radius: 0 !important;
        border: none !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-image img {
        height: 50vh !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    .trending-section {
        background: white !important;
        padding: 20px 0 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .featured-products-carousel {
        padding: 20px 0 80px 0 !important;
        background: white !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .hero-image img,
    .hero-section .hero-image img,
    .hero-container .hero-image img {
        width: 100% !important;
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        display: block !important;
    }
    
    /* Mobile Carousel Controls */
    .carousel-controls {
        padding: 0 10px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev i,
    .carousel-next i {
        font-size: 14px;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    /* Hero text styles removed - only image display */
    
    .hero-section {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        min-height: auto !important;
    }
    
    .hero-section {
        min-height: 50vh !important;
    }
    
    .hero-carousel {
        height: 50vh !important;
    }
    
    .hero-slide {
        height: 50vh !important;
    }
    
    .hero-image {
        height: 50vh !important;
        width: 100% !important;
        border-radius: 0 !important;
        border: none !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-image img {
        height: 50vh !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    .trending-section {
        background: white !important;
        padding: 20px 0 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .featured-products-carousel {
        padding: 20px 0 60px 0 !important;
        background: white !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .hero-image img,
    .hero-section .hero-image img,
    .hero-container .hero-image img {
        width: 100% !important;
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        display: block !important;
    }

    .trending-tags {
        gap: 0.5rem;
    }

    .trending-tag {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .product-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* iPhone and small mobile banner fixes */
    .hero-section {
        height: 45vh !important;
        min-height: 45vh !important;
        max-height: 45vh !important;
        background: #f8f9fa !important;
        overflow: hidden !important;
    }
    
    .hero-carousel {
        height: 45vh !important;
        min-height: 45vh !important;
        max-height: 45vh !important;
        width: 100% !important;
        background: transparent !important;
    }
    
    .hero-slide {
        height: 45vh !important;
        min-height: 45vh !important;
        max-height: 45vh !important;
        width: 100% !important;
        background: transparent !important;
    }
    
    .hero-image {
        height: 45vh !important;
        min-height: 45vh !important;
        max-height: 45vh !important;
        width: 100% !important;
        background: transparent !important;
        display: block !important;
    }
    
    .hero-slide .hero-image img,
    .hero-banner-image {
        height: 45vh !important;
        min-height: 45vh !important;
        max-height: 45vh !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

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

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-section {
        height: 40vh !important;
        min-height: 40vh !important;
        max-height: 40vh !important;
        background: #f8f9fa !important;
    }
    
    .hero-carousel {
        height: 40vh !important;
        min-height: 40vh !important;
        max-height: 40vh !important;
        background: transparent !important;
    }
    
    .hero-slide {
        height: 40vh !important;
        min-height: 40vh !important;
        max-height: 40vh !important;
        background: transparent !important;
    }
    
    .hero-image {
        height: 40vh !important;
        min-height: 40vh !important;
        max-height: 40vh !important;
        background: transparent !important;
    }
    
    .hero-slide .hero-image img,
    .hero-banner-image {
        height: 40vh !important;
        min-height: 40vh !important;
        max-height: 40vh !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        background: transparent !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
    }
}

/* iPhone Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .hero-banner-image {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
        will-change: transform;
    }
    
    .hero-slide .hero-image img {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
        will-change: transform;
    }
}

/* iPhone specific media queries */
@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
    .hero-section {
        height: 45vh !important;
        min-height: 45vh !important;
        max-height: 45vh !important;
    }
    
    .hero-banner-image {
        height: 45vh !important;
        min-height: 45vh !important;
        max-height: 45vh !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
    .hero-section {
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
    }
    
    .hero-banner-image {
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* iPhone Safari image loading fix */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .hero-banner-image {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
    
    .hero-slide .hero-image img {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
}

/* Force hardware acceleration for iPhone */
.hero-section,
.hero-carousel,
.hero-slide,
.hero-image {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Very small devices (iPhone SE, etc.) - Force image display */
@media (max-width: 320px) {
    .hero-section {
        height: 35vh !important;
        min-height: 35vh !important;
        max-height: 35vh !important;
        background: #f8f9fa !important;
    }
    
    .hero-banner-image {
        height: 35vh !important;
        min-height: 35vh !important;
        max-height: 35vh !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        background: transparent !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        image-rendering: -webkit-optimize-contrast !important;
        image-rendering: crisp-edges !important;
    }
}

/* Shop Categories Section - Enhanced with Horizontal Scrolling */
.shop-categories-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.shop-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

.categories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2c5530;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.categories-icon {
    font-size: 1.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.categories-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
    margin: 0;
}

.categories-scroll-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.categories-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0 2rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #2c5530 #f1f1f1;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1rem;
}

.categories-grid::-webkit-scrollbar {
    height: 6px;
}

.categories-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.categories-grid::-webkit-scrollbar-thumb {
    background: #2c5530;
    border-radius: 3px;
}

.categories-grid::-webkit-scrollbar-thumb:hover {
    background: #1a3d1e;
}

.category-card {
    flex: 0 0 280px;
    min-width: 280px;
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(44, 85, 48, 0.2);
    border-color: #2c5530;
}

.category-card.bundle-card {
    background: linear-gradient(135deg, #2c5530 0%, #1a3d1e 100%);
    color: white;
    border-color: #2c5530;
}

.category-card.bundle-card:hover {
    background: linear-gradient(135deg, #1a3d1e 0%, #2c5530 100%);
    transform: translateY(-8px) scale(1.02);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.category-icon i {
    font-size: 1.5rem;
    color: #2c5530;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, #2c5530 0%, #1a3d1e 100%);
    transform: scale(1.1) rotate(5deg);
}

.category-card:hover .category-icon i {
    color: white;
    transform: scale(1.1);
}

.category-card.bundle-card .category-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.category-card.bundle-card .category-icon i {
    color: white;
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-card:hover h3 {
    color: #1a3d1e;
}

.category-card.bundle-card h3 {
    color: white;
}

.category-card p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.category-card:hover p {
    color: #495057;
}

.category-card.bundle-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Brand Glance Section */
.brand-glance-section {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid #e9ecef;
}

.glance-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5530;
    text-align: center;
    margin-bottom: 3rem;
}

.glance-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.glance-feature {
    text-align: center;
    padding: 2rem;
}

.glance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5530, #1a3a1f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.glance-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.glance-feature p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Social Media Section */
.social-media-section {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.social-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #2c5530;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 80px;
}

.social-link:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.follow-btn {
    background: #2c5530;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.follow-btn:hover {
    background: #1a3a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

/* Mobile Responsive for Shop Categories */
@media (max-width: 768px) {
    .shop-categories-section {
        padding: 4rem 0 3rem 0;
    }
    
    .categories-title {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .categories-icon {
        font-size: 1.3rem;
    }
    
    .categories-subtitle {
        font-size: 0.9rem;
    }
    
    .categories-grid {
        gap: 1rem;
        padding: 0.5rem 0 1.5rem 0;
    }

    .category-card {
        flex: 0 0 240px;
        min-width: 240px;
        padding: 1.5rem 1.25rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .category-icon i {
        font-size: 1.3rem;
    }
    
    .category-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .category-card p {
        font-size: 0.9rem;
    }

    .glance-title {
        font-size: 2rem;
    }

    .glance-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .glance-feature {
        padding: 1rem;
    }

    .glance-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        min-width: 60px;
        padding: 0.75rem;
    }

    .social-link i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .shop-categories-section {
        padding: 3rem 0 2.5rem 0;
    }
    
    .categories-title {
        font-size: 1.5rem;
    }
    
    .categories-grid {
        gap: 0.75rem;
        padding: 0.25rem 0 1rem 0;
    }
    
    .category-card {
        flex: 0 0 200px;
        min-width: 200px;
        padding: 1.25rem 1rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .category-icon i {
        font-size: 1.1rem;
    }

    .category-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .category-card p {
        font-size: 0.8rem;
    }

    .glance-title {
        font-size: 1.5rem;
    }
    
    .brand-glance-section {
        padding: 30px 0;
    }
    
    .glance-title::after {
        width: 35px;
        height: 2px;
        margin: 0.5rem auto 0.8rem;
    }
    
    .glance-features {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .glance-feature {
        padding: 1.2rem 0.8rem;
        border-radius: 10px;
    }
    
    .glance-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.6rem;
    }
    
    .glance-icon i {
        font-size: 1.3rem;
    }
    
    .glance-feature h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .glance-feature p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        min-width: 50px;
        padding: 0.5rem;
    }
}

/* CSECoder Exact Footer Match */
.footer {
    background: #f5f5f5;
    color: #333333;
    padding: 40px 0 20px;
    border-top: 1px solid #e5e5e5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0;
}

/* Hide toggle icons on desktop */
.toggle-icon {
    display: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Ensure footer links are always visible on desktop */
.footer-links {
    display: block;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-section ul li a:hover {
    color: #333333;
}

.contact-info p {
    margin-bottom: 8px;
    color: #666666;
    font-size: 14px;
    line-height: 1.4;
}

.contact-info i {
    color: #2c5530;
    margin-right: 8px;
}

.payment-methods i {
    color: #2c5530;
}

.contact-info strong {
    color: #333333;
    font-weight: 600;
}

.footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer .social-link {
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5530;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.footer .social-link:hover {
    background: #2c5530;
    color: white;
    border-color: #2c5530;
    transform: translateY(-2px);
}

.footer .social-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: inherit;
    line-height: 1;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
    text-align: left;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #666666;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.footer-bottom strong {
    color: #333333;
    font-weight: 600;
}

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-methods i {
    font-size: 18px;
    color: #999999;
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: #333333;
}

/* Mobile Footer - Exact CSECoder Match */
@media (max-width: 768px) {
    .footer {
        padding: 20px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-section {
        border-bottom: 1px solid #e5e5e5;
        padding: 15px 0;
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        color: #2c5530;
        margin: 0;
        padding: 0;
        user-select: none;
    }

    .toggle-icon {
        display: block;
        font-size: 18px;
        font-weight: bold;
        color: #2c5530;
        transition: transform 0.3s ease;
    }

    .footer-toggle.active .toggle-icon {
        transform: rotate(45deg);
    }

    .footer-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-links.active {
        max-height: 300px;
        padding-top: 10px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links li a {
        color: #666666;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-links li a:hover {
        color: #2c5530;
    }

    .footer-section h3:not(.footer-toggle) {
        font-size: 16px;
        margin-bottom: 15px;
        color: #2c5530;
    }

    .contact-info p {
        font-size: 14px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .contact-info i {
        color: #2c5530;
        width: 16px;
    }

    .contact-social-icons {
        gap: 1rem;
    }

    .contact-social-link {
        min-width: 60px;
        padding: 0.5rem;
    }

    .contact-social-link i {
        font-size: 1.3rem;
    }

    .contact-social-link span {
        font-size: 0.75rem;
    }

    .footer .social-links {
        gap: 12px;
        margin-top: 15px;
    }

    .footer .social-link {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .payment-methods {
        justify-content: center;
        gap: 12px;
    }

    .payment-methods i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 15px 0 10px;
    }

    .footer-section {
        padding: 12px 0;
    }

    .footer-toggle {
        font-size: 15px;
    }

    .toggle-icon {
        font-size: 16px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-section h3:not(.footer-toggle) {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .contact-info p {
        font-size: 13px;
    }

    .contact-info i {
        width: 14px;
    }

    .contact-social-icons {
        gap: 0.75rem;
    }

    .contact-social-link {
        min-width: 50px;
        padding: 0.4rem;
    }

    .contact-social-link i {
        font-size: 1.1rem;
    }

    .contact-social-link span {
        font-size: 0.7rem;
    }
    
    .contact {
        padding: 40px 0 30px 0;
    }
    
    .contact h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-content {
        gap: 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-social-links h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-social-icons {
        gap: 0.8rem;
    }
    
    .contact-social-link {
        min-width: 50px;
        padding: 0.4rem;
    }
    
    .contact-social-link i {
        font-size: 1.1rem;
    }
    
    .contact-social-link span {
        font-size: 0.65rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .btn-submit {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Contact form submit button mobile optimization for small screens */
    .contact-form .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
        display: block;
    }

    .footer .social-links {
        gap: 10px;
    }

    .footer .social-link {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-methods i {
        font-size: 14px;
    }
}

/* Premium Makhana Collection Styles */
.premium-makhana-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.premium-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Premium Products Container */
.premium-products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Load More Button Styles */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    background: linear-gradient(135deg, #2c5530 0%, #1a3d1e 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

/* Mobile responsive styles for load more button */
@media (max-width: 768px) {
    .load-more-btn {
        padding: 8px 20px;
        font-size: 14px;
        border-radius: 20px;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .load-more-btn {
        padding: 6px 16px;
        font-size: 13px;
        border-radius: 18px;
        min-width: 120px;
    }
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
}

.load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    display: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Winbanner Section */
.winbanner-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.winbanner-header {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.winbanner-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c5530;
    margin: 0;
    line-height: 1.2;
}

.winbanner-image {
    width: 100%;
    height: auto;
    display: block;
}

.premium-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 4rem; /* Increased padding for more left and right space */
}

.premium-section-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a365d; /* Dark blue color like Laba */
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.header-underline {
    width: 80px;
    height: 4px;
    background: #2c5530;
    border-radius: 2px;
    margin: 0 auto 1.5rem auto;
}

.premium-section-header p {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
}

.view-all-link {
    margin-top: 1rem;
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    background: #1a365d;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #1a365d;
}

.view-all-btn:hover {
    background: #2c5530;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

/* Premium Carousel Container */
.premium-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.premium-carousel-wrapper {
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
}

.premium-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-slide {
    min-width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.premium-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding: 0;
    min-height: 550px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Laba Style Product Card */
.laba-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #f1f3f4;
    width: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

/* Wishlist Icon Styles */
.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 15;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wishlist-icon:hover {
    background: rgba(231, 76, 60, 0.9);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    border: 2px solid white;
}

.wishlist-icon:hover i {
    color: white !important;
    transform: scale(1.1);
}

.wishlist-icon i {
    color: #e74c3c;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.wishlist-icon.active {
    background: rgba(231, 76, 60, 0.9);
    border: 2px solid white;
}

.wishlist-icon.active i {
    color: white !important;
}

/* Laba Card Top Section (No background) */
.laba-card-top {
    background: transparent;
    padding: 0;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Laba Logo */
.laba-logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.laba-logo-circle {
    width: 50px;
    height: 50px;
    background: #ffd700; /* Yellow background */
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    color: #000;
}

/* Laba Certifications */
.laba-certifications {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.veg-badge {
    background: #4ade80; /* Green background */
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
}

.fssai-badge {
    background: #dc2626; /* Red background */
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
}

/* Laba Product Image - General */
.laba-product-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Laba Product Image - Specific for index.php */
.premium-product-card.laba-card .laba-product-image {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.laba-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Laba Card Bottom Section (Colored background) */
.laba-card-bottom {
    padding: 0;
    color: #ffffff;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Flavor-specific colors */
.pepper-pops {
    background: #1a1a1a; /* Black */
}

.mint-munch {
    background: #059669; /* Green */
}

.cream-onion {
    background: #7c3aed; /* Purple */
}

.peri-peri {
    background: #dc2626; /* Red */
}

.cheese-herbs {
    background: #92400e; /* Brown */
}

.laba-flavor-name {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.laba-description {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.laba-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.laba-feature {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.6rem;
    font-weight: 600;
    white-space: nowrap;
}

.laba-feature-icon {
    font-size: 0.8rem;
}

/* Laba Product Info Below Card */
.laba-product-info {
    padding: 1rem;
    background: #ffffff;
    text-align: center;
}

.laba-product-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.laba-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.laba-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.7rem;
    display: inline;
    margin-right: 0.5rem;
}

.laba-current-price {
    color: #dc2626;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline;
}

.laba-quick-add-btn {
    background: #ffffff;
    color: #1a365d;
    border: 2px solid #1a365d;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.laba-quick-add-btn:hover {
    background: #1a365d;
    color: #ffffff;
    transform: translateY(-2px);
}

/* View All Products Page Styles */
.view-all-products-section {
    padding: 80px 0;
    background: #ffffff;
    min-height: 100vh;
}

.view-all-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.view-all-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.view-all-header p {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.view-all-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-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;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a365d;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #1a365d;
    color: #ffffff;
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    margin-bottom: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.current-price {
    color: #e53e3e;
    font-size: 1.2rem;
    font-weight: 700;
}

.product-actions {
    position: relative;
}

.quick-add-btn {
    width: 100%;
    background: #ffffff;
    color: #1a365d;
    border: 2px solid #1a365d;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-add-btn:hover {
    background: #1a365d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
    padding: 0 2rem;
}

.load-more-btn {
    background: #1a365d;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

/* Mobile responsive styles for load more button (second instance) */
@media (max-width: 768px) {
    .load-more-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .load-more-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: 120px;
    }
}

.load-more-btn:hover {
    background: #2c5530;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.load-more-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.loading-spinner {
    margin-left: 10px;
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.2rem;
}

/* Mobile Responsive for View All Products */
@media (max-width: 1200px) {
    .view-all-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .view-all-products-section {
        padding: 60px 0;
    }
    
    .view-all-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .view-all-header h2 {
        font-size: 1.4rem;
    }
    
    .view-all-header p {
        font-size: 1rem;
    }
    
    .view-all-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1rem;
        min-height: 2.4rem;
    }
    
    .current-price {
        font-size: 1.1rem;
    }
    
    .quick-add-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .view-all-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .product-info {
        padding: 0.8rem;
    }
    
    .product-name {
        font-size: 0.9rem;
        min-height: 2rem;
    }
}

/* Quantity Selector Styles */
.quantity-selector {
    margin-top: 1rem;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 12px;
    border: none;
}

.quantity-label {
    text-align: center;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.8rem;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #1a365d;
    background: #ffffff;
    color: #1a365d;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.quantity-btn:hover {
    background: #1a365d;
    color: #ffffff;
    transform: scale(1.05);
}

.quantity-input {
    width: 70px;
    height: 45px;
    text-align: center;
    border: 2px solid #1a365d;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a365d;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.quantity-input:focus {
    outline: none;
    border-color: #2c5530;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.quantity-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.add-to-cart-btn {
    background: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: Arial, sans-serif;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cancel-btn {
    background: #ffffff;
    color: #1a365d;
    border: 2px solid #1a365d;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: Arial, sans-serif;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cancel-btn:hover {
    background: #1a365d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

/* Keep original premium styles for backward compatibility */
.premium-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #f1f3f4;
    width: 100%;
    min-height: 450px;
}

.premium-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #2c5530;
}

.premium-product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.premium-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-product-card:hover .premium-product-image img {
    transform: scale(1.05);
}

.premium-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 85, 48, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-product-card:hover .premium-product-overlay {
    opacity: 1;
}

.premium-quick-add-btn {
    background: #2c5530;
    color: #ffffff;
    border: 3px solid #2c5530;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2);
}

.premium-quick-add-btn:hover {
    background: #ffffff;
    color: #2c5530;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.premium-quick-add-btn-bottom {
    background: #2c5530;
    color: #ffffff;
    border: 3px solid #2c5530;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 1rem;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2);
}

.premium-quick-add-btn-bottom:hover {
    background: #ffffff;
    color: #2c5530;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.premium-product-info {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 130px;
}

.premium-product-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.1);
}

.premium-product-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.premium-current-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: #2c5530;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.1);
}

.premium-original-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #999999;
    text-decoration: line-through;
}

/* Premium Carousel Arrows */
.premium-carousel-container .premium-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    color: #2c5530;
    border: 2px solid #e9ecef;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.premium-carousel-container .premium-carousel-arrow:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
    border-color: #2c5530;
}

.premium-carousel-container .premium-carousel-arrow:active {
    transform: translateY(-50%) scale(1.05);
}

.premium-carousel-container .premium-carousel-prev {
    left: 20px;
}

.premium-carousel-container .premium-carousel-next {
    right: 20px;
}

/* Premium Carousel Dots */
.premium-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    z-index: 10;
}

.premium-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #2c5530;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-carousel-dot.active {
    background: transparent;
    border-color: #2c5530;
    transform: scale(1.2);
}

.premium-carousel-dot.active::before {
    width: 6px;
    height: 6px;
}

.premium-carousel-dot:hover {
    background: #f8f9fa;
    border-color: #2c5530;
    transform: scale(1.1);
}

/* Mobile Responsive Styles for Premium Section */
@media (max-width: 1024px) {
    .premium-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .premium-section-header {
        padding: 0 2rem; /* Increased from 1rem for better spacing */
    }
    
    .product-image-container {
        width: 100% !important;
        height: 220px !important;
        overflow: hidden !important;
        border-radius: 8px !important;
    }
    
    .product-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    .product-image-placeholder {
        width: 100% !important;
        height: 220px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .laba-card {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .winbanner-title {
        font-size: 1.4rem;
        font-weight: 700;
        padding: 0 1rem;
    }
    
    .winbanner-header {
        padding: 1.5rem 0.5rem;
    }
    
    .premium-section-header h2 {
        font-size: 1.8rem;
        font-weight: 900;
    }
    
    .premium-section-header p {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .premium-section-header {
        padding: 0 1.5rem; /* Increased from 1rem for better spacing */
    }
    
    .premium-carousel-container {
        padding: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .premium-carousel-container::-webkit-scrollbar {
        display: none;
    }
    
    /* Hide arrows on mobile */
    .premium-carousel-container .premium-carousel-arrow {
        display: none;
    }
    
    /* Enable horizontal scrolling for mobile */
    .premium-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .premium-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .premium-carousel-track {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        padding: 0 1rem;
        width: max-content;
    }
    
    .premium-slide {
        flex: 0 0 auto;
        width: 300px;
        opacity: 1;
        transform: none;
        position: static;
    }
    
    .premium-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
        min-height: auto;
    }
    
    .laba-card {
        min-height: 500px;
    }
    
    .laba-product-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }
    
    .laba-product-info {
        padding: 1rem;
    }
    
    .laba-product-info h4 {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .laba-price {
        margin-bottom: 1rem;
    }
    
    .laba-current-price {
        font-size: 0.8rem;
        font-weight: 800;
        display: inline;
    }
    
    .laba-original-price {
        font-size: 0.7rem;
        display: inline;
        margin-right: 0.5rem;
    }
    
    .laba-quick-add-btn {
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 700;
    }
    
    .quantity-selector {
        padding: 1rem;
    }
    
    .quantity-controls {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .quantity-input {
        width: 60px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .quantity-actions {
        gap: 0.6rem;
    }
    
    .add-to-cart-btn, .cancel-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
        min-height: 45px;
    }
    
    .premium-product-info h3 {
        font-size: 1.1rem;
        font-weight: 800;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .premium-makhana-section {
        padding: 60px 0;
    }
    
    .premium-section-header h2 {
        font-size: 1.5rem;
        font-weight: 900;
    }
    
    .premium-section-header p {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .premium-section-header {
        padding: 0 1rem; /* Increased from 0.5rem for better spacing */
    }
    
    /* Hide arrows on small mobile */
    .premium-carousel-container .premium-carousel-arrow {
        display: none;
    }
    
    /* Horizontal scrolling for small mobile */
    .premium-carousel-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .premium-carousel-container::-webkit-scrollbar {
        display: none;
    }
    
    .premium-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .premium-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .premium-carousel-track {
        display: flex;
        flex-direction: row;
        gap: 0.8rem;
        padding: 0 0.5rem;
        width: max-content;
    }
    
    .premium-slide {
        flex: 0 0 auto;
        width: 280px;
        opacity: 1;
        transform: none;
        position: static;
    }
    
    .premium-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 1rem;
        min-height: auto;
    }
    
    .laba-card {
        min-height: 450px;
    }
    
    .laba-product-info {
        padding: 0.8rem;
    }
    
    .laba-product-info h4 {
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .laba-price {
        margin-bottom: 0.8rem;
    }
    
    .laba-current-price {
        font-size: 0.65rem;
        font-weight: 800;
        display: inline;
    }
    
    .laba-original-price {
        font-size: 0.55rem;
        display: inline;
        margin-right: 0.5rem;
    }
    
    .laba-quick-add-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .quantity-selector {
        padding: 0.8rem;
    }
    
    .quantity-controls {
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }
    
    .quantity-btn {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .quantity-input {
        width: 50px;
        height: 35px;
        font-size: 1rem;
    }
    
    .quantity-actions {
        gap: 0.5rem;
    }
    
    .add-to-cart-btn, .cancel-btn {
        padding: 0.7rem 1rem;
        font-size: 0.7rem;
        min-height: 40px;
    }
    
    /* Mobile Product Card Spacing Optimization */
    .laba-card {
        min-height: 320px !important;
        padding: 0.2rem !important;
        margin: 0 !important;
    }
    
    .laba-product-info {
        padding: 0.4rem !important;
    }
    
    .laba-product-info h4 {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.1 !important;
    }
    
    .laba-price {
        margin-bottom: 0.3rem !important;
    }
    
    .laba-current-price {
        font-size: 0.7rem !important;
    }
    
    .laba-original-price {
        font-size: 0.6rem !important;
    }
    
    .laba-quick-add-btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.8rem !important;
        margin-top: 0.3rem !important;
    }
    
    .quantity-selector {
        padding: 0.4rem !important;
        margin-top: 0.3rem !important;
    }
    
    .quantity-label {
        font-size: 0.7rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .quantity-controls {
        gap: 0.3rem !important;
    }
    
    .quantity-btn {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.7rem !important;
    }
    
    .quantity-input {
        width: 40px !important;
        height: 24px !important;
        font-size: 0.7rem !important;
    }
    
    .quantity-actions {
        gap: 0.3rem !important;
        margin-top: 0.3rem !important;
    }
    
    .add-to-cart-btn, .cancel-btn {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.7rem !important;
    }
}

@media (max-width: 480px) {
    /* Even more compact spacing for very small screens */
    .laba-card {
        min-height: 280px !important;
        padding: 0.1rem !important;
    }
    
    .laba-product-info {
        padding: 0.3rem !important;
    }
    
    .laba-product-info h4 {
        font-size: 0.75rem !important;
        margin-bottom: 0.1rem !important;
    }
    
    .laba-price {
        margin-bottom: 0.2rem !important;
    }
    
    .laba-current-price {
        font-size: 0.65rem !important;
    }
    
    .laba-original-price {
        font-size: 0.55rem !important;
    }
    
    .laba-quick-add-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
        margin-top: 0.2rem !important;
    }
    
    .quantity-selector {
        padding: 0.3rem !important;
        margin-top: 0.2rem !important;
    }
    
    .quantity-label {
        font-size: 0.65rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .quantity-btn {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.65rem !important;
    }
    
    .quantity-input {
        width: 35px !important;
        height: 22px !important;
        font-size: 0.65rem !important;
    }
    
    .add-to-cart-btn, .cancel-btn {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.65rem !important;
    }
}
