/* ============================================
   DAGA BROTHERS - PREMIUM HOMEPAGE REDESIGN
   Modern, Engaging, Next-Level Design
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --gold: #efb762;
    --gold-light: #fde4b0;
    --gold-dark: #d4a04a;
    --brown-dark: #2e0e01;
    --brown: #5f4532;
    --brown-light: #8b6d5c;
    --charcoal: #27272f;
    --accent: #b65a1f;
    --beige: #fdf6eb;
    --beige-dark: #f5e6d0;
    --cream: #fffaf3;
    --white: #ffffff;
    --black: #111111;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-gold: 0 8px 30px rgba(239,183,98,0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-gold { color: var(--gold); }

.text-italic { font-style: italic; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brown-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.loader-logo img {
    width: 300px;
    margin-bottom: 30px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    animation: loadProgress 2s ease-in-out forwards;
}

.loader-text {
    color: var(--gold-light);
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    letter-spacing: 3px;
    opacity: 0.7;
}

@keyframes loadProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

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

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

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

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ===== BACK TO TOP ===== */
#backToTop {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--brown-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    transform: translateY(-3px);
    background: var(--gold-dark);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    transition: var(--transition);
}

.nav-topbar {
    background: var(--brown-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--gold-light);
    padding: 8px 40px;
    transition: var(--transition);
}

.navbar.scrolled .nav-topbar {
    display: none;
}

.topbar-left span, .topbar-right span {
    margin-right: 20px;
}

.topbar-left span i, .topbar-right span i {
    margin-right: 6px;
    color: var(--gold);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links-top a {
    color: var(--gold-light);
    margin-left: 12px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-links-top a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.navbar.scrolled .nav-main {
    padding: 8px 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.nav-logo img {
    height: 55px;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--gold-dark);
    background: var(--beige);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 60%;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown .fa-chevron-down {
    font-size: 0.6rem;
    margin-left: 4px;
    transition: var(--transition);
}

.has-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown li a {
    display: block;
    padding: 10px 24px;
    font-size: 0.88rem;
    color: var(--charcoal);
    border-radius: 0;
}

.dropdown li a:hover {
    background: var(--beige);
    color: var(--gold-dark);
    padding-left: 30px;
}

.dropdown li a::after { display: none; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--charcoal);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.nav-icon-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 30px 40px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-overlay-inner {
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    gap: 15px;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    font-size: 1.1rem;
    border: 2px solid var(--beige-dark);
    border-radius: var(--radius);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--gold);
}

.search-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--beige);
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--charcoal);
    transition: var(--transition);
}

.search-close:hover {
    background: var(--gold);
    color: var(--brown-dark);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

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

.hero-slide.active .fade-up {
    opacity: 1;
    transform: translateY(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(46, 14, 1, 0.88) 0%, rgba(46, 14, 1, 0.7) 50%, rgba(46, 14, 1, 0.4) 100%);
}

.hero-content {
    position: absolute;
    top: 0;
    bottom: 91px;
    left: 0;
    width: 55%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 130px 60px 20px;
    overflow: hidden;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

.hero-badge {
    display: inline-block;
    margin-bottom: 12px;
}

.hero-badge span {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(239, 183, 98, 0.15);
    border: 1px solid rgba(239, 183, 98, 0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gold);
    color: var(--brown-dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--brown-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Hero Stats Bar - Fixed at bottom, visible across all slides */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    background: rgba(46, 14, 1, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(239, 183, 98, 0.2);
    padding: 20px 8%;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    display: inline;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

.hero-prev, .hero-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.hero-prev:hover, .hero-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    animation: floatY 2.5s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

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

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    padding: 0 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brown-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-content span i {
    margin-right: 8px;
    font-size: 0.7rem;
}

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

/* ===== SECTION COMMONS ===== */
.section-label {
    display: inline-block;
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--gold-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
    position: relative;
}

.section-label.light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: var(--transition-slow);
}

.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ===== HERITAGE SECTION ===== */
.heritage-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.heritage-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239,183,98,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.heritage-images {
    position: relative;
}

.heritage-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.heritage-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.heritage-img-main:hover img {
    transform: scale(1.05);
}

.heritage-badge-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.badge-year {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brown-dark);
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brown-dark);
    text-align: center;
    font-weight: 600;
}

.heritage-img-secondary {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.heritage-img-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.heritage-divider {
    display: flex;
    align-items: center;
    margin: 20px 0 25px;
}

.heritage-divider::before, .heritage-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.heritage-divider::after {
    background: linear-gradient(90deg, transparent, var(--gold));
}

.divider-icon {
    padding: 0 15px;
    color: var(--gold);
    font-size: 1.2rem;
}

.heritage-text {
    color: var(--brown);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.heritage-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-dark);
    font-size: 1.2rem;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 120px 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.category-card.category-large {
    grid-column: span 2;
}

.category-img {
    width: 100%;
    height: 100%;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(46,14,1,0.1) 0%, rgba(46,14,1,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(46,14,1,0.3) 0%, rgba(46,14,1,0.9) 100%);
}

.category-count {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(239,183,98,0.2);
    border: 1px solid rgba(239,183,98,0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.category-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
}

.category-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.category-card:hover .category-content p {
    max-height: 80px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-link:hover {
    color: var(--gold-light);
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* ===== PARALLAX QUOTE ===== */
.parallax-quote {
    position: relative;
    padding: 120px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 14, 1, 0.85);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.5;
}

.quote-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.quote-content p {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== FEATURED PRODUCTS ===== */
.featured-section {
    padding: 120px 0;
    background: var(--beige);
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 28px;
    border: 2px solid var(--beige-dark);
    background: var(--white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.popular {
    background: var(--accent);
    color: white;
}

.product-badge.new {
    background: #22c55e;
    color: white;
}

.product-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

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

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-action-btn:hover {
    background: var(--gold);
    color: var(--brown-dark);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.78rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin: 6px 0 8px;
    color: var(--charcoal);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 15px;
}

.product-rating i {
    color: var(--gold);
    font-size: 0.8rem;
}

.product-rating span {
    font-size: 0.8rem;
    color: var(--gray);
    margin-left: 5px;
}

.product-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brown-dark);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid var(--gold);
    transition: var(--transition);
}

.product-buy-btn:hover {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.product-buy-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.product-buy-btn:hover i {
    transform: translateX(4px);
}

/* ===== USP SECTION ===== */
.usp-section {
    padding: 120px 0;
    background: var(--white);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.usp-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    background: var(--cream);
    transition: var(--transition);
    border: 1px solid transparent;
}

.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(239,183,98,0.2);
}

.usp-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.usp-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brown-dark);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.usp-card:hover .usp-icon {
    transform: rotate(8deg) scale(1.05);
}

.usp-icon-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed rgba(239,183,98,0.3);
    border-radius: 24px;
    animation: spinSlow 20s linear infinite;
}

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

.usp-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.usp-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== EXCLUSIVE SECTION ===== */
.exclusive-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--brown-dark) 0%, #1a0800 100%);
    overflow: hidden;
}

.exclusive-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.exclusive-content .section-title {
    color: var(--white);
}

.exclusive-content p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.exclusive-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.exclusive-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.exclusive-feature i {
    color: var(--gold);
    font-size: 1.1rem;
}

.exclusive-price-range {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(239,183,98,0.1);
    border: 1px solid rgba(239,183,98,0.2);
    padding: 12px 24px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.exclusive-price-range span {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.exclusive-price-range strong {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 220px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.gallery-item-overlay strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
}

/* ===== NUTRISOME SECTION ===== */
.nutrisome-section {
    padding: 80px 0;
    background: var(--white);
}

.nutrisome-banner {
    background: linear-gradient(135deg, #3d1f0a 0%, var(--brown-dark) 50%, #1a0800 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.nutrisome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239,183,98,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.nutrisome-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.nutrisome-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 15px;
}

.nutrisome-content > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.nutrisome-products {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.nutrisome-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 20px;
    width: 220px;
    text-align: center;
    transition: var(--transition);
}

.nutrisome-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.nutrisome-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.nutrisome-item h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 6px;
}

.nutrisome-item span {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 120px 0;
    background: var(--cream);
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 40px auto 0;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: var(--transition-slow);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 1rem;
    margin-right: 3px;
}

.testimonial-text {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--brown);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.test-prev, .test-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--beige-dark);
    background: var(--white);
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.test-prev:hover, .test-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--beige-dark);
    cursor: pointer;
    transition: var(--transition);
}

.test-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 120px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.blog-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    padding: 80px 0 0;
    background: var(--beige);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 40px;
}

.insta-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 14, 1, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

/* ===== STORES SECTION ===== */
.stores-section {
    padding: 120px 0;
    background: var(--cream);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.store-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.store-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(239,183,98,0.3);
}

.store-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--brown-dark);
}

.store-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.store-flagship {
    display: inline-block;
    padding: 2px 10px;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-left: 5px;
    font-family: var(--font-body);
}

.store-address {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
    min-height: 60px;
}

.store-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.store-contact a {
    font-size: 0.88rem;
    color: var(--brown);
}

.store-contact a:hover {
    color: var(--gold-dark);
}

.store-contact a i {
    margin-right: 8px;
    color: var(--gold);
}

.store-hours {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.store-hours i {
    margin-right: 6px;
    color: var(--gold);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 80px 0;
    background: var(--white);
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.newsletter-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239,183,98,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--charcoal);
    margin-bottom: 12px;
}

.newsletter-content > p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.newsletter-form .form-group {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    background: var(--white);
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(239,183,98,0.15);
}

.newsletter-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 15px;
}

.newsletter-note i {
    margin-right: 5px;
    color: var(--gold);
}

.newsletter-decoration {
    position: relative;
    z-index: 2;
}

.newsletter-img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 280px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 3px;
    min-width: 16px;
}

.footer-contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-certifications {
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 0.8rem;
}

.footer-certifications i {
    color: var(--gold);
    margin-right: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .heritage-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .heritage-images { max-width: 500px; }

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

    .category-card.category-large {
        grid-column: span 1;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .exclusive-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .blog-card:last-child {
        grid-column: span 2;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .stores-grid .store-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        justify-self: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .newsletter-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html { font-size: 15px; }

    .nav-topbar {
        display: none !important;
    }

    .nav-main {
        padding: 10px 20px;
    }

    .nav-logo img {
        height: 42px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right 0.4s ease;
        overflow-y: auto;
        z-index: 9999;
    }

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

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links li a {
        display: block;
        padding: 14px 0;
        font-size: 1.05rem;
        border-radius: 0;
    }

    .nav-links li a::after { display: none; }

    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 15px;
        display: none;
    }

    .has-dropdown:hover .dropdown,
    .has-dropdown.open .dropdown {
        display: block;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Mobile overlay when menu is open */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.4);
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-content {
        width: 100%;
        bottom: 70px;
        padding: 120px 30px 20px;
        justify-content: center;
    }

    .hero-stats-bar {
        padding: 15px 20px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-plus {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .stat-divider {
        width: 1px;
        height: 30px;
    }

    .hero-controls {
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
    }

    .scroll-indicator { display: none; }

    .heritage-section,
    .categories-section,
    .featured-section,
    .usp-section,
    .testimonials-section,
    .blog-section,
    .stores-section {
        padding: 80px 0;
    }

    .heritage-badge-overlay {
        width: 110px;
        height: 110px;
        bottom: -20px;
        right: -10px;
    }

    .badge-year { font-size: 2rem; }

    .heritage-img-secondary { display: none; }

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

    .category-card, .category-card.category-large {
        grid-column: span 1;
        height: 260px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-img { height: 180px; }

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

    .usp-card { padding: 30px 25px; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .gallery-item { height: 170px; }

    .nutrisome-banner { padding: 40px 25px; }

    .nutrisome-products {
        flex-direction: column;
        align-items: center;
    }

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

    .blog-card:last-child {
        grid-column: span 1;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .insta-item { height: 150px; }

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

    .stores-grid .store-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .newsletter-wrapper {
        padding: 40px 25px;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    #backToTop {
        width: 42px;
        height: 42px;
        bottom: 80px;
        right: 20px;
    }

    .exclusive-section { padding: 80px 0; }
    .exclusive-content { text-align: center; }
    .exclusive-features { align-items: center; }
    .exclusive-price-range { margin: 20px auto 30px; }

    .parallax-quote {
        background-attachment: scroll;
        padding: 80px 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-img { height: 220px; }

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

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

    .product-tabs {
        gap: 6px;
    }

    .tab-btn {
        padding: 8px 18px;
        font-size: 0.82rem;
    }
}

/* ===== UTILITY: HIDDEN TEXT FOR FILTER ===== */
.product-card.hidden {
    display: none;
}

/* ===== SMOOTH PERFORMANCE ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .parallax-quote {
        background-attachment: scroll;
    }
}

/* ===== SELECTION COLORS ===== */
::selection {
    background: var(--gold);
    color: var(--brown-dark);
}

::-moz-selection {
    background: var(--gold);
    color: var(--brown-dark);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--beige);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}
