/* =====================================================
   AK SALE & BEAUTY — Main Stylesheet
   Palette: Royal Metallic Gold (#D4AF37 / #C59B27) / Warm Champagne (#FAF7F2) /
            Deep Luxury Onyx (#181818) / Cream Beige (#F6F1EA)
   Type: Fraunces (display/headings) + Poppins (body/UI)
   ===================================================== */

:root {
    --color-primary: #D4AF37;
    --color-secondary: #FAF7F2;
    --color-bg: #FFFFFF;
    --color-text: #181818;
    --color-accent: #C59B27;
    --color-accent-dark: #A37C18;
    --color-gold-light: #F7E7B4;
    --color-gold-gradient: linear-gradient(135deg, #ECC876 0%, #C59B27 50%, #9F7220 100%);
    --color-beige: #F6F1EA;
    --color-text-muted: #645F58;
    --color-border: #E8E0D2;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;

    --shadow-sm: 0 2px 10px rgba(24, 24, 24, 0.06);
    --shadow-md: 0 12px 30px rgba(197, 155, 39, 0.16);
    --shadow-lg: 0 20px 48px rgba(197, 155, 39, 0.22);

    --container-w: 1200px;
    --header-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .5em; line-height: 1.15; font-weight: 600; }
p { margin: 0 0 1em; }
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 clamp(16px, 3.5vw, 24px); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    html { scroll-behavior: auto; }
}

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--color-accent);
    color: #fff;
    padding: 10px 18px;
    z-index: 1000;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(197, 155, 39, 0.28);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #E5C358 0%, #C9961A 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline-dark { background: transparent; color: var(--color-text); border-color: var(--color-text); }
.btn-outline-dark:hover { background: var(--color-text); color: #fff; }
.btn-outline { background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn-outline:hover { background: var(--color-accent); color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35); }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom-color: var(--color-border);
}
.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
    border: 2px solid var(--color-accent);
    display: block;
    flex-shrink: 0;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-gold-gradient);
    color: #111;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
}
.brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: var(--color-text);
}
.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--color-accent);
    transition: width 0.25s ease;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--color-accent); }
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.icon-btn {
    background: none;
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: background 0.2s ease;
}
.icon-btn:hover { background: var(--color-secondary); }
.header-cta { padding: 10px 20px; font-size: 0.86rem; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.search-panel {
    max-height: 0;
    overflow: hidden;
    background: var(--color-secondary);
    transition: max-height 0.3s ease;
}
.search-panel:not([hidden]) { max-height: 90px; }
.search-form { display: flex; gap: 10px; padding: 16px 0; }
.search-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: 0.9rem;
}
.search-form button {
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
}

/* Mobile nav drawer */
.mobile-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 700;
    padding: calc(20px + env(safe-area-inset-top, 0px)) 24px calc(28px + env(safe-area-inset-bottom, 0px));
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.14);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--color-border);
}
.mobile-nav-header .brand-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
}
.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-text);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.mobile-nav-close:hover {
    background: var(--color-secondary);
    color: var(--color-accent);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.mobile-nav a {
    display: block;
    padding: 12px 6px;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav a:hover {
    color: var(--color-accent);
    padding-left: 8px;
}
.mobile-nav-cta {
    width: 100%;
    margin-top: auto;
}
.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(34,34,34,0.45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-nav-backdrop.is-visible { opacity: 1; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
    background: linear-gradient(180deg, var(--color-secondary) 0%, #ffffff 70%);
    padding: 64px 0 40px;
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 14px;
}
.hero-title {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    color: var(--color-text);
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 46ch;
    margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 10px;
}
.hero-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    animation: float 5s ease-in-out infinite;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.hero-card:nth-child(1) { animation-delay: 0s; }
.hero-card:nth-child(2) { margin-top: 34px; animation-delay: 0.6s; }
.hero-card:nth-child(3) { animation-delay: 1.2s; }
.hero-card:nth-child(4) { margin-top: 34px; animation-delay: 1.8s; }

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

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero-slider {
    position: relative;
    height: 640px;
    max-height: 82vh;
    overflow: hidden;
    background: var(--color-secondary);
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease;
    display: flex;
    align-items: center;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(34,34,34,0.55) 0%, rgba(34,34,34,0.28) 45%, rgba(34,34,34,0.05) 75%);
}
.hero-slide-content { position: relative; z-index: 2; max-width: 640px; color: #fff; }
.hero-slide .hero-eyebrow { color: #fff; opacity: 0.9; }
.hero-slide .hero-title { color: #fff; }
.hero-slide .hero-subtitle { color: rgba(255,255,255,0.9); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.75); }
.btn-outline-light:hover { background: #fff; color: var(--color-text); }

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-text);
    transition: background 0.2s ease, transform 0.2s ease;
}
.hero-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

.hero-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot.is-active { background: #fff; transform: scale(1.3); }

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
    background: linear-gradient(135deg, #1C1916 0%, #11100E 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    padding: 38px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-item { text-align: center; color: #fff; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-icon { color: #ECC876; opacity: 1; margin-bottom: 4px; }
.stat-number { font-family: var(--font-display); font-size: 1.65rem; font-weight: 700; color: #ECC876; }
.stat-label { font-size: 0.84rem; opacity: 0.88; color: #E8E0D2; }

/* =====================================================
   PRODUCT SLIDER (horizontal carousel)
   ===================================================== */
.section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.slider-controls { display: flex; gap: 10px; }
.slider-arrow {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--color-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-text);
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}
.slider-arrow:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

.product-slider-viewport { overflow: hidden; }
.product-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
}
.product-slide { flex: 0 0 calc(25% - 18px); min-width: 0; }
.product-slide .product-card { height: 100%; }

/* =====================================================
   PHOTO GALLERY
   ===================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(180deg, transparent, rgba(34,34,34,0.65));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}
.gallery-item:nth-child(3n+1) { grid-row: span 2; }

/* =====================================================
   OFFER BANNER GRAPHIC
   ===================================================== */
.offer-banner { position: relative; overflow: hidden; }
.offer-banner-graphic {
    position: absolute;
    top: -30px; right: -20px;
    color: var(--color-accent);
    opacity: 0.15;
}

/* =====================================================
   TESTIMONIAL SLIDER
   ===================================================== */
.testimonial-slider { max-width: 680px; margin: 0 auto; position: relative; }
.testimonial-track { position: relative; overflow: hidden; }
.testimonial-slide {
    display: none;
}
.testimonial-slide.is-active { display: block; animation: fadeInSlide 0.5s ease; }
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.testimonial-card-lg {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.testimonial-quote-lg { font-size: 1.15rem; font-style: italic; margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-person .testimonial-name { font-weight: 600; margin: 0; text-align: left; }
.testimonial-person .testimonial-role { font-size: 0.8rem; color: var(--color-text-muted); margin: 0; text-align: left; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.testimonial-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-dot.is-active { background: var(--color-accent); transform: scale(1.3); }

/* =====================================================
   SECTION HEADINGS
   ===================================================== */
.section { padding: 84px 0; }
.section-tight { padding: 60px 0; }
.section-beige { background: var(--color-beige); }
.section-pink { background: var(--color-secondary); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--color-text-muted); }

/* =====================================================
   CATEGORY CARDS
   ===================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.category-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-card-media { overflow: hidden; aspect-ratio: 4/3; }
.category-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover .category-card-media img { transform: scale(1.08); }
.category-card-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.category-card-body h3 { font-size: 1.2rem; }
.category-card-body p { color: var(--color-text-muted); font-size: 0.92rem; flex: 1; }

/* =====================================================
   PRODUCT GRID / CARDS
   ===================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-card-media { position: relative; display: block; aspect-ratio: 1/1; overflow: hidden; background: var(--color-beige); }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-media img { transform: scale(1.06); }
.badge-sale {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
}
.product-card-body { padding: 18px; }
.product-card-category { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); margin-bottom: 4px; }
.product-card-name { font-size: 1rem; margin-bottom: 8px; }
.product-card-name a:hover { color: var(--color-accent); }
.product-card-price { margin-bottom: 14px; }
.price-current { font-weight: 700; font-size: 1.05rem; color: var(--color-accent); }
.price-old { text-decoration: line-through; color: var(--color-text-muted); font-size: 0.88rem; margin-right: 8px; }
.product-card-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.product-card-actions .btn { flex: 1; }

/* =====================================================
   ABOUT / FEATURE CARDS
   ===================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.about-copy p { color: var(--color-text-muted); }
.feature-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.feature-mini {
    background: var(--color-beige);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    font-weight: 500;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.feature-mini svg { color: var(--color-accent); flex-shrink: 0; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.why-item .why-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
}
.why-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-item p { color: var(--color-text-muted); font-size: 0.88rem; margin: 0; }

/* =====================================================
   OFFER BANNER
   ===================================================== */
.offer-banner {
    background: linear-gradient(120deg, var(--color-secondary) 0%, var(--color-beige) 100%);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    text-align: center;
}
.offer-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.offer-banner p { color: var(--color-text-muted); margin-bottom: 26px; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
}
.testimonial-quote { font-size: 0.98rem; color: var(--color-text); margin-bottom: 16px; font-style: italic; }
.testimonial-name { font-weight: 600; font-size: 0.9rem; margin: 0; }
.testimonial-stars { color: var(--color-accent); margin-bottom: 10px; font-size: 0.9rem; letter-spacing: 2px; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: var(--color-accent);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.contact-info-item h4 { margin: 0 0 4px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; }
.contact-info-item p { margin: 0; color: var(--color-text-muted); font-size: 0.92rem; }

.contact-form {
    background: var(--color-beige);
    border-radius: var(--radius-md);
    padding: 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: 16px;
    background: #fff;
    -webkit-appearance: none;
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--color-beige); padding-top: 64px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 48px;
}
.footer-logo {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
    border: 2px solid var(--color-accent);
    display: block;
    margin-bottom: 14px;
}
.footer-brand .brand-mark { margin-bottom: 14px; }
.footer-name { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 6px; }
.footer-tagline { color: var(--color-text-muted); font-size: 0.9rem; }
.footer-col h3 { font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--color-text-muted); font-size: 0.9rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom { border-top: 1px solid var(--color-border); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { margin: 0; font-size: 0.85rem; color: var(--color-text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.85rem; color: var(--color-text-muted); }
.footer-legal a:hover { color: var(--color-accent); }

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
    z-index: 400;
    transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* =====================================================
   PAGE HERO (category / about / contact banners)
   ===================================================== */
.page-hero {
    background: var(--color-secondary);
    padding: 56px 0 48px;
    text-align: center;
}
.page-hero .breadcrumb { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 14px; }
.page-hero .breadcrumb a { color: var(--color-accent); }
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.page-hero p { color: var(--color-text-muted); max-width: 560px; margin: 0 auto; }

/* =====================================================
   PRODUCT DETAIL
   ===================================================== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
.product-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1/1;
    background: var(--color-beige);
    margin-bottom: 16px;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 12px; }
.product-gallery-thumbs img {
    width: 76px; height: 76px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.product-gallery-thumbs img:hover, .product-gallery-thumbs img.is-active { border-color: var(--color-accent); }

.product-info-category { color: var(--color-accent); font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; }
.product-info h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.product-info-price { font-size: 1.6rem; font-weight: 700; color: var(--color-accent); margin-bottom: 18px; }
.product-info-price .price-old { font-size: 1.05rem; }
.product-info-desc { color: var(--color-text-muted); margin-bottom: 20px; }
.product-info-list { margin-bottom: 24px; }
.product-info-list h4 { font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 10px; }
.product-info-list ul { display: flex; flex-direction: column; gap: 8px; }
.product-info-list li { display: flex; gap: 8px; font-size: 0.92rem; color: var(--color-text); }
.product-info-list li::before { content: '✓'; color: var(--color-accent); font-weight: 700; }
.product-info-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }

/* =====================================================
   SCROLL FADE-IN ANIMATION
   ===================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

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

/* Desktop / Large tablets (<= 1100px) */
@media (max-width: 1100px) {
    .main-nav ul { gap: 16px; }
    .main-nav a { font-size: 0.88rem; }
    .header-cta { padding: 9px 16px; font-size: 0.82rem; }
}

/* Tablet portrait & below (<= 960px) */
@media (max-width: 960px) {
    .main-nav { display: none; }
    .header-cta { display: none; }
    .hamburger { display: flex; }
    .hero-inner, .about-grid, .contact-grid, .product-detail { grid-template-columns: 1fr; gap: 40px; }
    .hero-collage { order: -1; max-width: 440px; margin: 0 auto; }
    .hero-slider { height: 500px; }
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .product-slide { flex: 0 0 calc(45% - 12px); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* Small tablets & landscape mobile (<= 768px) */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-tight { padding: 44px 0; }
    .hero-slider { height: clamp(440px, 68vh, 520px); }
    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(20,20,20,0.5) 0%, rgba(20,20,20,0.7) 100%);
    }
    .hero-slide-content { text-align: center; margin: 0 auto; padding: 0 12px; }
    .hero-actions { justify-content: center; width: 100%; }
    .hero-actions .btn { padding: 12px 24px; font-size: 0.9rem; }
    .hero-title { font-size: clamp(1.75rem, 5.5vw, 2.5rem); }
    .hero-subtitle { font-size: 0.96rem; margin: 0 auto 24px; }
    .product-gallery-main { max-width: 440px; margin: 0 auto 14px; }
    .product-gallery-thumbs { justify-content: center; }
}

/* Standard Mobile (<= 640px) */
@media (max-width: 640px) {
    .section { padding: 50px 0; }
    .section-head { margin-bottom: 32px; }
    .section-head-row { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .category-card-body { padding: 14px 12px; gap: 6px; }
    .category-card-body h3 { font-size: 1.05rem; }
    .category-card-body p { font-size: 0.82rem; margin-bottom: 6px; }
    .category-card-body .btn { padding: 8px 10px; font-size: 0.78rem; width: 100%; text-align: center; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-card-body { padding: 14px 12px; }
    .product-card-name { font-size: 0.92rem; min-height: 2.3em; }
    .product-card-price { font-size: 0.96rem; margin-bottom: 10px; }
    .product-card-actions { flex-direction: column; gap: 6px; }
    .product-card-actions .btn { width: 100%; padding: 7px 10px; font-size: 0.8rem; }
    .product-slide { flex: 0 0 calc(78% - 8px); }
    .hero-arrow { width: 38px; height: 38px; }
    .hero-arrow-prev { left: 8px; }
    .hero-arrow-next { right: 8px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-item:nth-child(3n+1) { grid-row: span 1; }
    .gallery-caption { padding: 8px 10px; font-size: 0.75rem; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .why-item { padding: 20px 12px; }
    .why-item .why-icon { width: 46px; height: 46px; margin-bottom: 10px; }
    .why-item h3 { font-size: 0.95rem; }
    .why-item p { font-size: 0.82rem; }
    .feature-mini-grid { grid-template-columns: 1fr; gap: 10px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
    .stat-number { font-size: 1.35rem; }
    .stat-label { font-size: 0.78rem; }
    .offer-banner { padding: 36px 18px; }
    .testimonial-card-lg { padding: 24px 16px; }
    .testimonial-quote-lg { font-size: 1rem; }
    .contact-form { padding: 24px 18px; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }
    .product-info-actions { flex-direction: column; gap: 10px; }
    .product-info-actions .btn { width: 100%; }
}

/* Extra Small Mobile (<= 440px) */
@media (max-width: 440px) {
    .header-inner { height: 68px; }
    .brand-mark { width: 36px; height: 36px; font-size: 0.95rem; }
    .brand-text { font-size: 0.92rem; }
    .hero-slider { height: 460px; }
    .hero-title { font-size: 1.65rem; }
    .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .product-slide { flex: 0 0 calc(86% - 8px); }
    .category-grid { grid-template-columns: 1fr; }
    .category-card-media { aspect-ratio: 16/9; }
    .product-gallery-thumbs img { width: 56px; height: 56px; }
    .footer-legal { flex-direction: column; gap: 8px; }
}
