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

:root {
    /* Colors */
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-green: #00ff88;
    --accent-green-dark: #00cc6a;
    --accent-blue: #4a90e2;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #cccccc;
    --gray-dark: #666666;
    
    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-g {
    color: var(--accent-green);
    font-size: 2rem;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-green);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-green);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition-fast);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,255,136,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--accent-green);
}

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

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay-1 {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s backwards;
}

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

/* ==========================================
   Section Styles
   ========================================== */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-blue) 100%);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    font-weight: 400;
}

/* ==========================================
   About Section
   ========================================== */
.about-section {
    background-color: var(--gray-light);
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

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

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-black);
}

.feature-card p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ==========================================
   Products Section
   ========================================== */
.products-section {
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 0 0 1.5px rgba(0,0,0,0.08);
    border: 1.5px solid #e8e8e8;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.13);
    border-color: var(--accent-green);
}

.product-image {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-green);
    color: var(--primary-black);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-icon {
    font-size: 4rem;
    color: var(--accent-green);
}

.product-info {
    padding: 1rem 1.25rem 1.25rem;
}

.product-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #111;
    line-height: 1.35;
}

.product-desc {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-details ul {
    list-style: none;
    margin-bottom: 1rem;
}

.product-details li {
    padding: 0.3rem 0;
    color: var(--gray-dark);
    position: relative;
    padding-left: 1.5rem;
}

.product-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* ==========================================
   Ingredients Section
   ========================================== */
.ingredients-section {
    background-color: var(--gray-light);
}

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

.ingredient-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ingredient-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ingredient-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.ingredient-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.ingredient-card p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ==========================================
   Why Choose Section
   ========================================== */
.why-choose-section {
    background-color: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.why-choose-item {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.why-choose-item:hover .why-icon {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
    transform: scale(1.1);
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--accent-green);
}

.why-choose-item:hover .why-icon i {
    color: var(--white);
}

.why-choose-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.why-choose-item p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ==========================================
   Lifestyle Section
   ========================================== */
.lifestyle-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.lifestyle-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(74, 144, 226, 0.15) 0%, transparent 50%);
}

.lifestyle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="50" height="50" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(0,255,136,0.1)"/></pattern></defs><rect width="50" height="50" fill="url(%23dots)"/></svg>');
}

.lifestyle-container {
    position: relative;
    z-index: 2;
}

.lifestyle-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.lifestyle-quote {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 3rem;
    font-style: italic;
    font-weight: 300;
}

.lifestyle-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.lifestyle-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lifestyle-feature i {
    font-size: 3rem;
    color: var(--accent-green);
}

.lifestyle-feature span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ==========================================
   Social Section
   ========================================== */
.social-section {
    background-color: var(--gray-light);
}

.social-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.instagram-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.instagram-handle i {
    font-size: 3rem;
    color: var(--accent-green);
}

.instagram-handle a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    text-decoration: none;
    transition: var(--transition-fast);
}

.instagram-handle a:hover {
    color: var(--accent-green);
}

.social-cta {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon i {
    font-size: 1.5rem;
    color: var(--primary-black);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-icon:hover i {
    color: var(--white);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    background-color: var(--white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-green);
    min-width: 40px;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.contact-item p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.contact-item a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--accent-green);
}

.contact-message {
    background-color: var(--gray-light);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.contact-message p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.footer-brand .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: var(--gray-medium);
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-green);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-social h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-green);
}

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

.footer-social-icons a {
    width: 45px;
    height: 45px;
    background-color: var(--secondary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social-icons i {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-social-icons a:hover {
    background-color: var(--accent-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-black);
    color: var(--gray-medium);
}

/* ==========================================
   Back to Top Button
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 60px);
        background-color: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

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

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

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

    .lifestyle-features {
        gap: 2rem;
    }

    .lifestyle-feature i {
        font-size: 2rem;
    }

    .lifestyle-content h2 {
        font-size: 2rem;
    }

    .lifestyle-quote {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }
/* ==========================================
   Hero CTA Group (dual buttons)
   ========================================== */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background-color: #1ebe5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* ==========================================
   Associated Brands Section
   ========================================== */
.brands-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.brand-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}
.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: var(--accent-green);
}
.brand-card--more {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--white);
}
.brand-card--more .brand-name,
.brand-card--more .brand-desc {
    color: var(--white);
}

.brand-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}
.brand-icon-wrap i {
    font-size: 1.8rem;
    color: var(--primary-black);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 0.6rem;
}
.brand-desc {
    font-size: 0.92rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.brand-tag {
    display: inline-block;
    background: var(--accent-green);
    color: var(--primary-black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.brand-card--more .brand-tag {
    background: rgba(0, 255, 136, 0.2);
    color: var(--accent-green);
}

.brands-note {
    text-align: center;
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-top: 2rem;
    font-style: italic;
}

/* ==========================================
   Product Categories Banner
   ========================================== */
.product-categories-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin: 2rem 0 1rem;
}
.product-categories-banner span {
    background: var(--primary-black);
    color: var(--accent-green);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(0, 255, 136, 0.25);
}

.products-variety-note {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-green-dark);
    margin-bottom: 2.5rem;
    font-style: italic;
}

/* ==========================================
   Blog Section
   ========================================== */
.blog-section {
    padding: 5rem 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.blog-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 1.8rem;
    transition: var(--transition-smooth);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: var(--accent-green);
}
.blog-card--featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1e1e1e 100%);
    border-color: rgba(0, 255, 136, 0.3);
}
.blog-card--featured .blog-title,
.blog-card--featured .blog-excerpt {
    color: var(--white);
}
.blog-card--featured .blog-meta span {
    color: var(--gray-medium);
}

.blog-card--cta {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-cta-inner {
    text-align: center;
}
.blog-cta-inner i {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 0.8rem;
}
.blog-cta-inner h3 {
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.blog-cta-inner p {
    color: rgba(0,0,0,0.7);
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.btn-outline-green {
    display: inline-block;
    border: 2px solid var(--primary-black);
    color: var(--primary-black);
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.btn-outline-green:hover {
    background: var(--primary-black);
    color: var(--accent-green);
}

.blog-category {
    display: inline-block;
    background: var(--accent-green);
    color: var(--primary-black);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}
.blog-card--featured .blog-category {
    background: rgba(0, 255, 136, 0.9);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.4;
}
.blog-excerpt {
    font-size: 0.88rem;
    color: var(--gray-dark);
    line-height: 1.6;
    flex: 1;
}
.blog-meta {
    display: flex;
    gap: 1rem;
}
.blog-meta span {
    font-size: 0.78rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ==========================================
   Showroom Section
   ========================================== */
.showroom-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a2a1a 100%);
    text-align: center;
    overflow: hidden;
}
.showroom-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,255,136,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.showroom-container {
    position: relative;
    z-index: 1;
}
.showroom-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.showroom-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}
.showroom-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.showroom-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}
.showroom-desc {
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.7;
}
.showroom-desc strong {
    color: var(--accent-green);
}
.showroom-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.showroom-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
}
.showroom-feature i {
    font-size: 1.5rem;
    color: var(--accent-green);
}
.showroom-notify {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

/* ==========================================
   Updated Contact Section Styles
   ========================================== */
.contact-item--whatsapp {
    border: 1px solid rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
}
.contact-item--whatsapp i {
    color: #25D366 !important;
    font-size: 1.8rem;
}

.btn-whatsapp-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #25D366;
    color: #fff;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 0.7rem;
    transition: var(--transition-smooth);
}
.btn-whatsapp-inline:hover {
    background: #1ebe5c;
    transform: translateY(-1px);
}

.btn-instagram-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 0.7rem;
    transition: var(--transition-smooth);
}
.btn-instagram-inline:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.contact-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.btn-secondary-outline:hover {
    background: var(--accent-green);
    color: var(--primary-black);
}

/* ==========================================
   Responsive – Blog & Brands
   ========================================== */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    .blog-card--featured {
        grid-column: 1 / -1;
    }
}
@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .brands-grid {
        grid-template-columns: 1fr;
    }
    .showroom-title {
        font-size: 1.6rem;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    .contact-cta-buttons {
        flex-direction: column;
    }
    .product-categories-banner span {
        font-size: 0.75rem;
    }
}

/* ==========================================
   COMPREHENSIVE MOBILE RESPONSIVE DESIGN
   Optimised for 360px, 375px, 414px widths
   Aspect ratios: 16:9 to 20:9 (vertical)
   ========================================== */

/* ── Touch improvements ── */
@media (max-width: 768px) {
    * { -webkit-tap-highlight-color: transparent; }

    /* Nav */
    .navbar { padding: 0.8rem 1rem; }
    .logo { font-size: 1.4rem !important; }

    /* Hero */
    .hero { padding: 5rem 1rem 3rem; text-align: center; }
    .hero-title { font-size: 2.4rem !important; line-height: 1.1; }
    .hero-tagline { font-size: 1.2rem !important; }
    .hero-description { font-size: 0.95rem !important; }
    .hero-cta-group { flex-direction: column; align-items: center; gap: 1rem; }
    .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 1.2rem; align-items: center; }

    /* Sections */
    section { padding: 3rem 1rem !important; }
    .section-title { font-size: 1.8rem !important; }
    .section-subtitle { font-size: 0.95rem !important; }

    /* Products grid — 2 columns on tablet, 1 on small mobile */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .product-card { border-radius: 14px; }
    .product-image { height: 160px !important; }
    .product-info { padding: 1rem !important; }
    .product-info h3 { font-size: 0.95rem !important; margin-bottom: 0.3rem !important; }
    .product-desc { font-size: 0.82rem; margin-bottom: 0.5rem !important; }
    .product-details { display: none; }
    .product-size { font-size: 0.75rem !important; }
    .product-brand { font-size: 0.65rem !important; }

    /* Brand tabs — horizontal scroll on mobile */
    .category-filter-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; }
    .category-filters { flex-wrap: nowrap !important; gap: 0.5rem !important; }
    .brand-tab { padding: 0.5rem 0.9rem !important; font-size: 0.8rem !important; flex-shrink: 0; }

    /* About grid */
    .about-grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .about-features { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem; }
    .feature-card { padding: 1.2rem !important; }
    .feature-card h3 { font-size: 1rem !important; }

    /* Ingredients */
    .ingredients-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }
    .ingredient-card { padding: 1.2rem !important; }
    .ingredient-card h3 { font-size: 1rem !important; }
    .ingredient-card p { font-size: 0.82rem !important; }

    /* Blog grid */
    .blog-grid { grid-template-columns: 1fr !important; gap: 1.2rem !important; }
    .blog-card--featured { grid-column: 1 !important; }

    /* Brands grid */
    .brands-grid { grid-template-columns: 1fr !important; gap: 1.2rem; }
    .brand-card { padding: 1.5rem !important; }

    /* Why choose */
    .why-choose-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .why-choose-item { padding: 1.5rem !important; }

    /* Lifestyle */
    .lifestyle-content { text-align: center; }
    .lifestyle-content h2 { font-size: 1.8rem !important; }
    .lifestyle-features { flex-direction: column; gap: 1.2rem; }

    /* Contact / CTA buttons */
    .contact-cta-buttons { flex-direction: column; align-items: center; gap: 1rem; }
    .contact-cta-buttons .btn-primary,
    .contact-cta-buttons .btn-outline { width: 100%; max-width: 280px; }

    /* Showroom */
    .showroom-card { padding: 2rem 1.2rem !important; }
    .showroom-title { font-size: 1.5rem !important; }

    /* Footer */
    .footer-main { grid-template-columns: 1fr !important; gap: 2rem; text-align: center; }
    .footer-social-icons { justify-content: center; }
    .footer-links { text-align: center; }

    /* Products count bar */
    .products-count { font-size: 0.85rem !important; }

    /* Popup — stack vertically on mobile */
    .product-popup {
        width: 100vw !important; max-width: 100vw !important;
        top: auto !important; bottom: 0 !important;
        left: 0 !important; right: 0 !important;
        transform: translateY(100%) !important;
        border-radius: 24px 24px 0 0 !important;
        max-height: 92vh !important;
        flex-direction: column !important;
        overflow-y: auto !important;
    }
    .product-popup.active {
        transform: translateY(0) !important;
        opacity: 1 !important; visibility: visible !important;
    }
    .product-popup-img {
        width: 100% !important; min-height: 260px !important;
        border-radius: 24px 24px 0 0 !important; overflow: hidden;
    }
    .popup-gallery-main { min-height: 240px !important; }
    .popup-gallery-main img { object-fit: contain; max-height: 240px; }
    .popup-gallery-btn { width: 36px !important; height: 36px !important; }
    .product-popup-close {
        top: 10px !important; right: 12px !important;
        background: rgba(255,255,255,0.2) !important; color: #fff !important;
    }
    .product-popup-body { padding: 1.2rem 1.2rem 2rem !important; }
    .product-popup-body h3 { font-size: 1.15rem !important; }
    /* Handle bottom safe area */
    .product-popup-body { padding-bottom: calc(1.2rem + env(safe-area-inset-bottom)) !important; }
}

/* ── Very small phones: 360px ── */
@media (max-width: 390px) {
    .products-grid { grid-template-columns: 1fr !important; }
    .hero-title { font-size: 2rem !important; }
    .product-image { height: 180px !important; }
    .product-info h3 { font-size: 1rem !important; }
    .about-features { grid-template-columns: 1fr !important; }
    .ingredients-grid { grid-template-columns: 1fr !important; }
}

/* ── Tablets 768-1024px — 3 col products ── */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .product-image { height: 170px !important; }
    .product-popup { width: 92vw !important; max-width: 720px !important; }
}

/* ==========================================
   SEARCH & FILTER BAR — CF-INSPIRED CLEAN
   ========================================== */

.search-filter-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: nowrap;
    position: sticky;
    top: 70px;
    z-index: 40;
    padding: 0.9rem 1.25rem;
    background: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
}

/* Search takes all remaining space */
.search-input-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
}
.search-input-wrap .search-icon {
    position: absolute;
    left: 0.9rem;
    color: #aaa;
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 1;
    transition: color 0.2s;
}
.search-input-wrap:focus-within .search-icon { color: #00b894; }

#productSearch {
    width: 100%;
    padding: 0.7rem 2.4rem 0.7rem 2.4rem;
    background: #f7f7f7;
    border: 1.5px solid #e8e8e8;
    border-radius: 9px;
    color: #111;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
#productSearch:focus {
    border-color: #00b894;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,184,148,0.12);
}
#productSearch::placeholder { color: #bbb; }

.clear-search-btn {
    position: absolute;
    right: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #e8e8e8;
    border: none;
    border-radius: 50%;
    color: #888;
    cursor: pointer;
    font-size: 0.68rem;
    transition: background 0.2s, color 0.2s;
}
.clear-search-btn:hover { background: #ff4757; color: #fff; }

/* Divider between search and filters */
.search-filter-divider {
    width: 1px;
    height: 28px;
    background: #e0e0e0;
    flex-shrink: 0;
}

/* Filter group: label + select together */
.filter-group {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}
.filter-group-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #888;
    white-space: nowrap;
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.filter-select {
    padding: 0.6rem 2.2rem 0.6rem 0.75rem;
    background: #f7f7f7;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    color: #222;
    font-size: 0.82rem;
    font-weight: 500;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    transition: border-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.filter-select:hover { border-color: #bbb; }
.filter-select:focus { border-color: #00b894; box-shadow: 0 0 0 3px rgba(0,184,148,0.1); }
.filter-select option { background: #fff; color: #222; }

.mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1rem;
    background: #f7f7f7;
    border: 1.5px solid #e0e0e0;
    border-radius: 9px;
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}
.mobile-filter-toggle:hover { border-color: #00b894; color: #00b894; }

.mobile-filter-panel {
    display: none;
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.mobile-filter-panel.active { display: block; }
.mobile-filter-inner { display: flex; flex-direction: column; gap: 0.6rem; }
.mobile-filter-inner .filter-select { width: 100%; }

/* ==========================================
   PRODUCT CARD UPDATES
   ========================================== */
.product-card { cursor: pointer; }
.product-features-snippet {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    margin: 0.2rem 0 0.4rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.3rem 0;
}
.product-flavours {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-top: 0.1rem;
}
.product-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: #00a36c;
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.product-card mark {
    background: rgba(0,230,118,0.25);
    color: var(--accent);
    border-radius: 2px;
    padding: 0 1px;
}
.product-badge--new {
    background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
    color: #fff !important;
    font-weight: 800;
    animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ==========================================
   PAGINATION
   ========================================== */
#productsPagination { margin-top: 2.5rem; }
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.pagination-perpage {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-right: 0.5rem;
}
.pagination-perpage select {
    padding: 0.4rem 1.8rem 0.4rem 0.6rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 7px;
    color: var(--text-primary);
    font-size: 0.82rem;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}
.pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.pg-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pg-btn:hover:not(.disabled):not(.active) { background: rgba(0,230,118,0.1); border-color: var(--accent); color: var(--accent); }
.pg-btn.active { background: var(--accent); border-color: var(--accent); color: #000; font-weight: 700; }
.pg-btn.disabled, .pg-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.pg-ellipsis { color: rgba(255,255,255,0.3); padding: 0 0.25rem; }
.pg-info { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-left: 0.5rem; }

/* ==========================================
   NEW ARRIVALS SECTION
   ========================================== */
.new-arrivals-section {
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(0,230,118,0.03) 50%, var(--bg) 100%);
}
.new-arrivals-track-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
    padding-bottom: 0.5rem;
}
.new-arrivals-track-wrap::-webkit-scrollbar { height: 4px; }
.new-arrivals-track-wrap::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.new-arrivals-track {
    display: flex;
    gap: 1.25rem;
    padding: 0.5rem 0.25rem 1rem;
    width: max-content;
}
.new-arrival-card {
    width: 180px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    position: relative;
}
.new-arrival-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 12px 30px rgba(0,230,118,0.15); }
.new-arrival-img { position: relative; height: 160px; overflow: hidden; background: #111; }
.new-arrival-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.new-arrival-info { padding: 0.75rem; }
.new-arrival-info h4 { font-size: 0.82rem; line-height: 1.3; margin: 0.2rem 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.na-badge {
    position: absolute;
    top: 0.5rem; left: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff; font-size: 0.65rem; font-weight: 800;
    padding: 0.15rem 0.45rem; border-radius: 4px;
    letter-spacing: 0.5px;
}
.products-count {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
    padding: 0 0.25rem;
}
.products-count strong { color: #00a36c; font-weight: 700; }

/* ── Brand tabs — clean light theme ── */
.category-filter-wrap {
    margin-bottom: 1.25rem;
}
.category-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    align-items: center;
}
.category-filters::-webkit-scrollbar { display: none; }

/* Brand tab pill — light/clean */
.brand-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    background: #f5f5f5;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    color: #444;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.18s ease;
    flex-shrink: 0;
}
.brand-tab:hover {
    border-color: var(--brand-col, #00b894);
    color: var(--brand-col, #00b894);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.brand-tab.active {
    background: var(--brand-col, #00b894);
    border-color: var(--brand-col, #00b894);
    color: #fff !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.brand-tab.active i { color: #fff !important; }
.brand-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    background: rgba(0,0,0,0.12);
    border-radius: 10px;
    font-size: 0.68rem;
    font-weight: 700;
}
.brand-tab.active .brand-tab-count { background: rgba(255,255,255,0.25); color: #fff; }
.brand-tab-count.coming {
    background: rgba(0,0,0,0.07);
    color: #999;
    font-size: 0.62rem;
    padding: 0 5px;
}

/* Cat count badge — kept for legacy, hidden */
.cat-count {
    display: none;
}
/* Old cat-filter-btn kept for compatibility but hidden */
.cat-filter-btn:not(.brand-tab) {
    display: none;
}

/* ==========================================
   ADMIN ANALYTICS EXTRAS
   ========================================== */
.heat-hot   { color: #ff6b35; }
.heat-med   { color: #fbbf24; }
.heat-low   { color: #6b7280; }
.bar-chart-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; font-size: 0.85rem; }
.bar-chart-label { width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #ccc; flex-shrink: 0; }
.bar-chart-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.bar-chart-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--accent), #00b894); transition: width 0.6s ease; }
.bar-chart-count { width: 36px; text-align: right; color: rgba(255,255,255,0.5); font-size: 0.78rem; flex-shrink: 0; }

/* ==========================================
   MOBILE RESPONSIVE UPDATES
   ========================================== */
@media (max-width: 768px) {
    .search-filter-bar { position: static; flex-wrap: wrap; gap: 0.5rem; padding: 0.75rem; }
    .filter-controls { display: none; }
    .search-filter-divider { display: none; }
    .mobile-filter-toggle { display: flex; }
    .search-input-wrap { min-width: 0; flex: 1; }
    #productSearch { font-size: 0.9rem; }
    .new-arrival-card { width: 150px; }
    .new-arrival-img { height: 130px; }
    .pagination { gap: 0.3rem; }
    .pagination-perpage { display: none; }
    .pg-btn { min-width: 32px; height: 32px; font-size: 0.8rem; }
    .pg-info { display: none; }
}
@media (max-width: 480px) {
    .new-arrival-card { width: 140px; }
    .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
}
