


   .hero-banner {
            height: 70vh;
            min-height: 500px;
            max-height: 700px;
            position: relative;
            overflow: hidden;
        }

        .hero-slider {
            height: 100%;
            width: 100%;
        }

        /* Enhanced slide transitions with multiple modern effects */
        .hero-slide {
            height: 100%;
            display: flex;
            align-items: center;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed; /* Parallax effect */
            opacity: 0;
            transform: scale(1.1);
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Active slide animations */
        .hero-slide.swiper-slide-active {
            opacity: 1;
            transform: scale(1);
        }

        /* Next slide preview effect */
        .hero-slide.swiper-slide-next {
            opacity: 0.3;
            transform: scale(0.95) translateX(10%);
        }

        /* Previous slide fade out */
        .hero-slide.swiper-slide-prev {
            opacity: 0;
            transform: scale(1.05) translateX(-10%);
        }

        /* Modern gradient overlay with animated transitions */
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 60%;
            height: 100%;
            background: linear-gradient(
                105deg, 
                rgba(26, 54, 93, 0.95) 0%, 
                rgba(26, 54, 93, 0.8) 40%, 
                rgba(26, 54, 93, 0.4) 70%, 
                transparent 100%
            );
            z-index: 1;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
        }

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

        /* Animated background patterns */
        .hero-slide::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: 
                radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
            z-index: 1;
            opacity: 0;
            transform: scale(0.8) rotate(5deg);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
        }

        .hero-slide.swiper-slide-active::after {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        /* Content container with modern entrance animations */
        .hero-slide .container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 40px 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 500px;
            text-align: left;
            margin-left: 0;
            opacity: 0;
            transform: translateY(40px) translateX(-20px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Staggered content animations */
        .hero-slide.swiper-slide-active .hero-content {
            opacity: 1;
            transform: translateY(0) translateX(0);
            transition-delay: 0.4s;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hero-slide.swiper-slide-active .hero-content h1 {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.6s;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
            font-weight: 400;
            line-height: 1.4;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hero-slide.swiper-slide-active .hero-content p {
            opacity: 0.95;
            transform: translateY(0);
            transition-delay: 0.8s;
        }

        /* Modern CTA button with micro-interactions */
        .hero-cta {
            background: var(--gradient-coral);
            color: white;
            border: none;
            padding: 18px 36px;
            font-size: 18px;
            font-weight: 600;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 
                0 8px 25px rgba(255, 107, 107, 0.4),
                0 0 0 0 rgba(255, 107, 107, 0.4);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px) scale(0.95);
        }

        .hero-slide.swiper-slide-active .hero-cta {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 1s;
        }

        .hero-cta::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.5s ease;
        }

        .hero-cta:hover::before {
            left: 100%;
        }

        .hero-cta:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 
                0 12px 35px rgba(255, 107, 107, 0.5),
                0 0 0 8px rgba(255, 107, 107, 0.1);
        }

        .hero-cta:active {
            transform: translateY(-2px) scale(0.98);
        }

        /* Enhanced navigation controls */
        .hero-pagination {
            bottom: 40px !important;
            z-index: 10;
        }

        .hero-pagination .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.4);
            width: 12px;
            height: 12px;
            margin: 0 6px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: 6px;
        }

        .hero-pagination .swiper-pagination-bullet-active {
            background: var(--primary-coral);
            width: 40px;
            border-radius: 6px;
            box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
        }

        .hero-next, .hero-prev {
            color: white !important;
            background: rgba(255, 255, 255, 0.1) !important;
            border-radius: 50% !important;
            width: 60px !important;
            height: 60px !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hero-next:hover, .hero-prev:hover {
            background: var(--primary-coral) !important;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-slide::before {
                width: 100%;
                background: linear-gradient(
                    135deg, 
                    rgba(26, 54, 93, 0.8) 0%, 
                    rgba(26, 54, 93, 0.4) 100%
                );
            }

            .hero-content {
                text-align: center;
                max-width: 95%;
                margin: 0 auto;
            }

            .hero-banner {
                height: 60vh;
                min-height: 400px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .hero-cta {
                padding: 16px 28px;
                font-size: 16px;
            }
        }

        /* Parallax effect disable on mobile for performance */
        @media (max-width: 768px) {
            .hero-slide {
                background-attachment: scroll;
            }
        }

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            .hero-slide,
            .hero-slide::before,
            .hero-slide::after,
            .hero-content,
            .hero-content h1,
            .hero-content p,
            .hero-cta {
                transition: none !important;
            }

            .hero-slide {
                background-attachment: scroll;
            }
        }

/* Value Propositions */
.value-propositions {
    padding: 60px 0;
    background: var(--neutral-white);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.prop-card {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--border-radius-large);
    transition: var(--transition-smooth);
    border: 1px solid var(--neutral-gray);
    position: relative;
    overflow: hidden;
}

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

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

.prop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-coral);
}

.prop-icon {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}

.prop-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.price-icon {
    background: var(--gradient-coral);
}

.brands-icon {
    background: var(--gradient-premium);
}

.shipping-icon {
    background: linear-gradient(135deg, var(--success-green) 0%, #2f855a 100%);
}

.service-icon {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b7791f 100%);
}

.prop-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.prop-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
}

.title-accent {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary-coral);
    margin-top: 8px;
}

/* Featured Categories */
.featured-categories {
    padding: 80px 0;
    background: var(--neutral-light);
}

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

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

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

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.view-all {
    text-align: center;
}

.category-card {
    background: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
     text-decoration: none;
}

.category-card.hidden-category {
    display: none;
    opacity: 0;
    transform: translateY(30px);
}

.category-card.show-category {
    display: block;
    animation: slideInUp 0.6s ease-out forwards;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.category-image {
    width: 100%;
    aspect-ratio: 16/9; /* Force 16:9 ratio */
    background: var(--neutral-gray);
    position: relative;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

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

.category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.sale-badge {
    background: var(--gradient-coral);
    color: white;
}

.new-badge {
    background: var(--gradient-premium);
    color: white;
}

.hot-badge {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e07b39 100%);
    color: white;
}

.category-info {
    padding: 15px 12px; /* Minimal padding as requested */
    text-align: center;
}

.category-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    line-height: 1.3;
    margin: 0;
}

.expand-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.expand-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.expand-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

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

/* Staff Picks */
.staff-picks {
    padding: 80px 0;
    background: var(--neutral-white);
    position: relative;
}

.staff-picks .container {
   
    /* OR */
    max-width: 80vw; /* Use more of the viewport */
}

.products-slider {
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    height: 480px; /* INCREASED HEIGHT FOR BUTTONS */
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    height: 200px;
    background: var(--neutral-light);
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* CHANGED FROM cover TO contain - FIXES CROPPING */
    object-position: center;
    transition: var(--transition-smooth);
    padding: 10px; /* ADD SOME PADDING TO PREVENT EDGE CROPPING */
}

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

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* DISTRIBUTE CONTENT EVENLY */
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-brand {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    flex: 1; /* TAKES UP REMAINING SPACE */
    line-height: 1.4;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px; /* SPACE ABOVE BUTTONS */
}

/* PRODUCT ACTIONS - NEW BUTTON CONTAINER */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto; /* PUSHES TO BOTTOM */
}

/* BUTTON BASE STYLES */
.btn {
    padding: 10px 16px;
    border: none;
    border-radius: var(--border-radius-medium, 8px);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 44px;
    flex: 1; /* EQUAL WIDTH BUTTONS */
}

/* PRIMARY BUTTON (VIEW DETAILS) */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-coral, #ff6b6b), #ff5252);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5252, #ff4444);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

/* SECONDARY BUTTON (ADD TO CART) */
.btn-secondary {
    background: white;
    color: var(--primary-coral, #ff6b6b);
    border: 2px solid var(--primary-coral, #ff6b6b);
}

.btn-secondary:hover {
    background: var(--primary-coral, #ff6b6b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* SUCCESS STATE FOR ADD TO CART */
.btn-secondary.success {
    background: #27ae60;
    border-color: #27ae60;
    color: white;
}

.btn-secondary.success:hover {
    background: #229954;
    border-color: #229954;
}

/* BUTTON ICONS */
.btn i {
    font-size: 12px;
}

/* MOBILE RESPONSIVE BUTTONS */
@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .product-card {
        height: 520px; /* EXTRA HEIGHT FOR MOBILE STACKED BUTTONS */
    }
}

/* PAGINATION HIDDEN */
.products-pagination {
    display: none !important;
}

/* DISCOUNT PILL */
.discount-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

/* PRICING */
.original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy, #2c3e50);
}

/* SLIDER NAVIGATION */
.slider-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-coral);
    background: white;
    color: var(--primary-coral);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-btn:hover {
    background: var(--primary-coral);
    color: white;
    transform: scale(1.1);
}

/* Professional CTA */
.professional-cta {
    padding: 120px 0;
    background: 
    linear-gradient(rgba(255, 107, 107, 0.7), rgba(52, 73, 94, 0.9)),
    url('https://cf-images.hiraya.digital/emails/collections-products-page/images/CTA.jpg');
background-size: cover;
background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.professional-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.65);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
}

.cta-badge i {
    color: var(--accent-gold);
}

.professional-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.professional-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.feature i {
    color: var(--accent-gold);
    font-size: 16px;
}

.cta-actions {
    display: flex;
    gap: 20px;
}

.primary-btn, .secondary-btn {
    padding: 16px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.primary-btn {
    background: var(--gradient-coral);
    color: white;
    border: none;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
    background: white;
    color: var(--primary-navy);
    border-color: white;
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px; /* Set height for chart container */
}

.chart-container {
    width: 300px;
    height: 300px;
    position: relative;
    animation: chartFloat 4s ease-in-out infinite;
}

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

.revenue-chart {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 120px;
    margin-top: 20px;
}

.bar {
    flex: 1;
    background: var(--accent-gold
    
    );
    border-radius: 4px 4px 0 0;
    animation: growUp 2s ease-out;
    animation-delay: var(--delay);
}

.bar:nth-child(1) { height: 60%; --delay: 0.2s; }
.bar:nth-child(2) { height: 80%; --delay: 0.4s; }
.bar:nth-child(3) { height: 100%; --delay: 0.6s; }
.bar:nth-child(4) { height: 75%; --delay: 0.8s; }
.bar:nth-child(5) { height: 90%; --delay: 1s; }

@keyframes growUp {
    from { height: 0; }
    to { height: var(--final-height, 100%); }
}
.visual-icon {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-gold);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

/* Brand Showcase */
.brand-showcase {
    padding: 80px 0;
    background: var(--neutral-light);
    text-align: center;
}

.brand-image-wrapper {
    margin-bottom: 50px;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    display: inline-block;
}

.brands-showcase-img {
    width: 100%;
    height: auto;
    display: block;
}

.brand-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-coral);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 500;
}

.view-brands-btn {
    background: var(--gradient-coral);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-smooth);
    display: inline-block;
}

.view-brands-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}





.testimonials {
    padding: 80px 50px;
    background: var(--neutral-white);
}

.testimonials-wrapper {
    padding: 50px 90px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.company-info-section {
    width: 20%;
    background: var(--neutral-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: fit-content;
}

.company-logo { width: 140px; margin-bottom: 25px; }
.stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 15px; }
.stars i { color: var(--accent-gold); font-size: 1.5rem; }
.rating-score { font-size: 2.5rem; font-weight: 700; color: var(--primary-navy); }
.review-count { color: var(--text-light); margin: 15px 0; font-size: 14px; }
.all-reviews-btn { background: var(--primary-coral); color: white; padding: 12px 20px; border-radius: 10px; text-decoration: none; }

.testimonials-slider-section {
    width: 80%;
    position: relative;
}

.testimonials-viewport {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    width: 25%;
    display: flex;
    gap: 30px;
    padding-right: 30px;
}

.testimonial-card {
    width: 48%;
    background: var(--neutral-light);
    border-left: 5px solid var(--primary-coral);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars { color: var(--accent-gold); font-size: 1.2rem; margin-bottom: 10px; }
.testimonial-title { font-size: 1.3rem; font-weight: 600; color: var(--primary-navy); margin-bottom: 10px; }
.testimonial-text { color: var(--neutral-dark); line-height: 1.6;  flex: 1; }
.testimonial-author { border-top: 1px solid var(--neutral-gray); padding-top: 15px; }
.author-name { font-weight: 600; color: var(--primary-navy); }
.author-restaurant { color: var(--text-light); font-size: 13px; }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-coral);
    background: white;
    color: var(--primary-coral);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

.prev { left: -25px; }
.next { right: -25px; }
.slider-btn:hover { background: var(--primary-coral); color: white; }



/* INSTAGRAM SHOWCASE SECTION */
.instagram-showcase {
    padding: 80px 0;
    background: var(--neutral-light);
}

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

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--neutral-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(139, 21, 56, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    font-weight: 600;
}

.instagram-stats i {
    margin-right: 8px;
}

.instagram-follow {
    text-align: center;
}

.follow-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(240, 148, 51, 0.4);
}

.follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 148, 51, 0.5);
}

.follow-btn i {
    font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .instagram-showcase {
        padding: 60px 0;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .follow-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

    /* About Us Section */
    .about-us {
        padding: 100px 0;
        background: var(--neutral-white);
        position: relative;
        overflow: hidden;
    }

    .about-us .container{
        max-width: 80vw;
    }

    .about-us::before {
        content: '';
        position: absolute;
        top: 0;
        right: -10%;
        width: 30%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(26, 54, 93, 0.05) 100%);
        transform: skewX(-10deg);
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .about-text {
        max-width: 600px;
    }

    .about-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--gradient-coral);
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 25px;
        font-size: 14px;
        font-weight: 600;
    }

    .about-us h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.2rem, 4vw, 3.2rem);
        font-weight: 700;
        color: var(--primary-navy);
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .about-us p {
        font-size: 1.1rem;
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .about-highlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin: 35px 0;
    }

    .highlight-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px;
        background: var(--neutral-light);
        border-radius: var(--border-radius);
        transition: var(--transition-smooth);
    }

    .highlight-item:hover {
        background: var(--gradient-coral);
        color: white;
        transform: translateX(5px);
    }

    .highlight-item i {
        color: var(--primary-coral);
        font-size: 20px;
        min-width: 20px;
    }

    .highlight-item:hover i {
        color: white;
    }

    .highlight-text {
        font-weight: 600;
        font-size: 15px;
    }

    .about-stats {
        display: flex;
        gap: 40px;
        margin-top: 40px;
    }

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

    .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-coral);
        line-height: 1;
    }

    .stat-label {
        display: block;
        font-size: 14px;
        color: var(--text-light);
        margin-top: 5px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .about-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-image-container {
        position: relative;
        border-radius: var(--border-radius-large);
        overflow: hidden;
        box-shadow: var(--shadow-heavy);
    }

    .about-image {
        width: 100%;
        height: 700px;
        object-fit: cover;
        transition: var(--transition-smooth);
    }

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

    .experience-badge {
        position: absolute;
        top: -20px;
        right: -20px;
        background: var(--gradient-premium);
        color: white;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-heavy);
        z-index: 3;
    }

    .experience-years {
        font-size: 1.8rem;
        font-weight: 800;
        line-height: 1;
    }

    .experience-text {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Industry Use Cases Section */
    .industry-use-cases {
        padding: 100px 0;
        background: var(--neutral-light);
        position: relative;
    }

    .use-cases-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        margin-top: 60px;
    }

    .use-case-card {
        background: white;
        border-radius: var(--border-radius-large);
        overflow: hidden;
        box-shadow: var(--shadow-light);
        transition: var(--transition-smooth);
        cursor: pointer;
        position: relative;
        height: 420px;
    }

    .use-case-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-heavy);
    }

    .use-case-image {
        height: 50%;
        background: var(--neutral-gray);
        position: relative;
        overflow: hidden;
    }

    .use-case-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition-smooth);
    }

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

    .use-case-icon {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--primary-coral);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .use-case-content {
        height: 50%;
        padding: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 210px;
    }

    .use-case-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-navy);
        margin-bottom: 12px;
        line-height: 1.3;
    }
    .use-case-content {
        height: 50%;
        padding: 20px; /* Reduce from 25px to 20px */
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Change from space-between to flex-start */
        min-height: 210px;
    }
    
    .use-case-description {
        color: var(--text-light);
        font-size: 14px;
        line-height: 1.5; /* Reduce from 1.6 to 1.5 */
        margin-bottom: 15px;
        flex: 1;
        overflow: hidden; /* Add this */
        display: -webkit-box; /* Add these 3 lines to truncate text */
        -webkit-line-clamp: 3; /* Limit to 3 lines */
        -webkit-box-orient: vertical;
    }
    
    .equipment-list {
        display: flex;
        flex-wrap: wrap;
        gap: 6px; /* Reduce from 8px to 6px */
        margin-bottom: 12px; /* Reduce from 15px to 12px */
    }
    
    .equipment-tag {
        background: var(--neutral-light);
        color: var(--primary-navy);
        padding: 3px 8px; /* Reduce from 4px 10px */
        border-radius: 12px; /* Reduce from 15px */
        font-size: 11px; /* Reduce from 12px */
        font-weight: 500;
    }
    
    .use-case-cta {
        color: var(--primary-coral);
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: var(--transition-fast);
        margin-top: auto; /* This pushes CTA to bottom */
        padding-top: 10px; /* Add some space above CTA */
    }

    .use-case-cta:hover {
        gap: 10px;
    }

    .industry-bottom-cta {
        text-align: center;
        margin-top: 60px;
        padding: 50px 0;
        background: var(--gradient-primary);
        border-radius: var(--border-radius-large);
        color: white;
    }

    .industry-bottom-cta h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .industry-bottom-cta p {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 30px;
    }

    .consultation-btn {
        background: var(--gradient-coral);
        color: white;
        padding: 16px 35px;
        border-radius: var(--border-radius);
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: var(--transition-smooth);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    }

    .consultation-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .about-content {
            grid-template-columns: 1fr;
            gap: 50px;
            text-align: center;
        }

        .about-stats {
            justify-content: center;
        }

        .use-cases-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .about-highlights {
            grid-template-columns: 1fr;
            gap: 15px;
        }
    }

    @media (max-width: 768px) {
        .about-us, .industry-use-cases {
            padding: 60px 0;
        }

        .use-cases-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .about-stats {
            flex-direction: column;
            gap: 20px;
        }

        .experience-badge {
            width: 80px;
            height: 80px;
            top: -15px;
            right: -15px;
        }

        .experience-years {
            font-size: 1.5rem;
        }
    }



    .section-title {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: var(--primary-navy);
        line-height: 1.2;
    }

    .title-accent {
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        font-weight: 400;
        color: var(--primary-coral);
        margin-top: 8px;
    }

