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

:root {
    --bg: #FFFDD7;
    --bg-white: #ffffff;
    --primary: #244225;
    /* deep teal */
    --primary-hover: #1a301b;
    --accent: #C9A84C;
    /* premium gold accent */
    --text: #1a1a1a;
    --text-secondary: #555;
    --text-muted: #888;
    --border: #e8e8e8;
    --border-light: #f0f0f0;
    --white: #ffffff;
    --black: #1a1a1a;
    --danger: #d32f2f;
    --success: #2e7d32;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-blur: 12px;
    --transition-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

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

/* Touch optimization for faster tap response */
button,
a,
input,
select,
textarea,
[role="button"] {
    touch-action: manipulation;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

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

/* ===== PAGE TRANSITIONS ===== */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

.page-transition-inner {
    text-align: center;
}

.pt-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: ptSpin 0.7s linear infinite;
}

@keyframes ptSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Page Enter Animation */
.main-content {
    animation: pageEnter 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Exit - applied via JS */
body.page-exiting .main-content {
    animation: pageExit 0.25s ease both;
}

@keyframes pageExit {
    to {
        opacity: 0;
        transform: translateY(-8px);
    }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #0a140b 0%, #162a17 50%, #0a140b 100%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.76rem;
    font-weight: 500;
    overflow: hidden;
    height: 38px;
    display: flex;
    align-items: center;
    z-index: 10001;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.announcement-bar.hidden {
    height: 0;
    opacity: 0;
    border-bottom-width: 0;
    pointer-events: none;
}

.announcement-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.announcement-inner {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: announcementScroll 30s linear infinite;
    will-change: transform;
}

.announcement-inner span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 25px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
}

.announcement-inner span i {
    color: #C9A84C;
    font-size: 0.85rem;
}

.announcement-sep {
    color: #C9A84C !important;
    font-size: 0.5rem !important;
    opacity: 0.5;
    padding: 0 !important;
}

@keyframes announcementScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.announcement-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-right: 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.announcement-close:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
}

/* ===== PREMIUM FLOATING NAVBAR ===== */
/* Spacer pushes content below fixed navbar on other pages.
   On homepage, the hero banner starts at top of screen behind the nav. */
.nav-spacer {
    height: 80px;
    display: block;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.home-page .nav-spacer {
    display: none;
}

/* Base Navbar container (Fixed below announcement bar) */
.floating-nav {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px 24px;
    background: transparent;
    transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Adjustment when announcement bar is closed */
body.announcement-closed .floating-nav {
    top: 0;
}

/* Inner card wrapper (Transitions smoothly between unscrolled and scrolled states) */
.floating-nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 10px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 12px;
}

/* Unscrolled States depending on index (Homepage overlay vs Other Page) */
body.home-page:not(.scrolled) .floating-nav-inner {
    background: rgba(10, 22, 11, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

body:not(.home-page):not(.scrolled) .floating-nav-inner {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(36, 66, 37, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Scrolled Floating Glass state (all pages) */
.floating-nav.scrolled {
    top: 12px !important;
    /* Floats down from the top viewport slightly */
    padding: 0 24px;
}

.floating-nav.scrolled .floating-nav-inner {
    max-width: 1200px;
    background: rgba(12, 22, 13, 0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22),
        0 4px 16px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 8px 10px 8px 20px;
    border-radius: 22px;
}

/* Logo handling */
.fn-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.25s ease;
}

.fn-logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.fn-logo img {
    height: 38px;
    width: auto;
    transition: filter 0.45s ease, height 0.45s ease;
}

/* Invert logo to white on homepage top or general scrolled state */
body.home-page:not(.scrolled) .fn-logo img,
.floating-nav.scrolled .fn-logo img {
    filter: brightness(0) invert(1);
}

/* Nav Links Menu */
.fn-links {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.fn-link {
    position: relative;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
    z-index: 1;
    letter-spacing: 0.2px;
    border-radius: 12px;
}

/* Background pill hover for links */
.fn-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

/* Underline glow style on hover / active */
.fn-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 18px;
    height: 2px;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
}

.fn-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.fn-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.fn-link:hover::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.fn-link.active::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

/* Colors - Unscrolled other pages (Dark text) */
body:not(.home-page):not(.scrolled) .fn-link {
    color: var(--text-secondary);
}

body:not(.home-page):not(.scrolled) .fn-link::before {
    background: rgba(36, 66, 37, 0.05);
}

body:not(.home-page):not(.scrolled) .fn-link::after {
    background: var(--primary);
}

body:not(.home-page):not(.scrolled) .fn-link:hover,
body:not(.home-page):not(.scrolled) .fn-link.active {
    color: var(--primary);
}

/* Colors - Homepage overlay & general scrolled state (White text, Gold accents) */
body.home-page:not(.scrolled) .fn-link,
.floating-nav.scrolled .fn-link {
    color: rgba(255, 255, 255, 0.7);
}

body.home-page:not(.scrolled) .fn-link::before,
.floating-nav.scrolled .fn-link::before {
    background: rgba(255, 255, 255, 0.07);
}

body.home-page:not(.scrolled) .fn-link::after,
.floating-nav.scrolled .fn-link::after {
    background: #C9A84C;
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}

body.home-page:not(.scrolled) .fn-link:hover,
body.home-page:not(.scrolled) .fn-link.active,
.floating-nav.scrolled .fn-link:hover,
.floating-nav.scrolled .fn-link.active {
    color: #fff;
}

/* Right Actions Container */
.fn-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Inline Expanding Search Bar (desktop) */
.fn-search-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 8px 14px;
    cursor: text;
    width: 170px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.fn-search-inline:focus-within {
    width: 230px;
}

.fn-search-inline-icon {
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: color 0.25s ease;
}

.fn-search-inline-input {
    flex: 1;
    border: none;
    background: none;
    font-size: 0.82rem;
    font-weight: 500;
    outline: none;
    font-family: var(--font);
    min-width: 0;
}

/* Dark theme logic - Scrolled & Home Top unscrolled */
body.home-page:not(.scrolled) .fn-search-inline,
.floating-nav.scrolled .fn-search-inline {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

body.home-page:not(.scrolled) .fn-search-inline:focus-within,
.floating-nav.scrolled .fn-search-inline:focus-within {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

body.home-page:not(.scrolled) .fn-search-inline-icon,
.floating-nav.scrolled .fn-search-inline-icon {
    color: rgba(255, 255, 255, 0.4);
}

body.home-page:not(.scrolled) .fn-search-inline:focus-within .fn-search-inline-icon,
.floating-nav.scrolled .fn-search-inline:focus-within .fn-search-inline-icon {
    color: #C9A84C;
}

body.home-page:not(.scrolled) .fn-search-inline-input,
.floating-nav.scrolled .fn-search-inline-input {
    color: #fff;
}

body.home-page:not(.scrolled) .fn-search-inline-input::placeholder,
.floating-nav.scrolled .fn-search-inline-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

/* Light theme logic - Other pages unscrolled */
body:not(.home-page):not(.scrolled) .fn-search-inline {
    background: rgba(36, 66, 37, 0.04);
    border-color: rgba(36, 66, 37, 0.05);
}

body:not(.home-page):not(.scrolled) .fn-search-inline:focus-within {
    background: rgba(36, 66, 37, 0.06);
    border-color: rgba(36, 66, 37, 0.15);
    box-shadow: 0 0 0 3px rgba(36, 66, 37, 0.05);
}

body:not(.home-page):not(.scrolled) .fn-search-inline-icon {
    color: var(--text-muted);
}

body:not(.home-page):not(.scrolled) .fn-search-inline:focus-within .fn-search-inline-icon {
    color: var(--primary);
}

body:not(.home-page):not(.scrolled) .fn-search-inline-input {
    color: var(--text);
}

body:not(.home-page):not(.scrolled) .fn-search-inline-input::placeholder {
    color: var(--text-muted);
}

/* Icon Buttons (Search & Cart) */
.fn-icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.15rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.fn-icon-btn:hover {
    transform: scale(1.05);
}

/* Colors - Unscrolled other pages (Dark text) */
body:not(.home-page):not(.scrolled) .fn-icon-btn {
    background: rgba(36, 66, 37, 0.05);
    color: var(--text-secondary);
}

body:not(.home-page):not(.scrolled) .fn-icon-btn:hover {
    background: rgba(36, 66, 37, 0.09);
    color: var(--primary);
}

/* Colors - Homepage overlay & general scrolled state (White text, Gold hover) */
body.home-page:not(.scrolled) .fn-icon-btn,
.floating-nav.scrolled .fn-icon-btn {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
}

body.home-page:not(.scrolled) .fn-icon-btn:hover,
.floating-nav.scrolled .fn-icon-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Cart badge count style */
.fn-cart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background: #C9A84C;
    color: #0c160d;
    font-size: 0.58rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

body.home-page:not(.scrolled) .fn-cart-badge,
.floating-nav.scrolled .fn-cart-badge {
    border-color: #0c160d;
}

.fn-cart-badge.bump {
    animation: cartBump 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cartBump {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.6);
    }

    100% {
        transform: scale(1);
    }
}

/* Shop Now Call To Action */
.fn-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #C9A84C 0%, #e5c36e 50%, #C9A84C 100%);
    background-size: 200% auto;
    color: #0c160d;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 10px rgba(201, 168, 76, 0.25);
    cursor: pointer;
}

.fn-shop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.fn-shop-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
    color: #050b06;
}

.fn-shop-btn:hover::before {
    left: 150%;
}

.fn-shop-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.fn-shop-btn:hover i {
    transform: translateX(3px);
}

/* Hamburger mobile button */
.fn-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    padding: 0;
    transition: background 0.25s ease;
    flex-shrink: 0;
    cursor: pointer;
}

/* Colors - Unscrolled other pages (Dark menu button) */
body:not(.home-page):not(.scrolled) .fn-burger {
    background: rgba(36, 66, 37, 0.05);
}

body:not(.home-page):not(.scrolled) .fn-burger:hover {
    background: rgba(36, 66, 37, 0.09);
}

body:not(.home-page):not(.scrolled) .fn-burger span {
    background: var(--primary);
}

/* Colors - Homepage overlay & general scrolled state (White menu button) */
body.home-page:not(.scrolled) .fn-burger,
.floating-nav.scrolled .fn-burger {
    background: rgba(255, 255, 255, 0.06);
}

body.home-page:not(.scrolled) .fn-burger:hover,
.floating-nav.scrolled .fn-burger:hover {
    background: rgba(255, 255, 255, 0.12);
}

body.home-page:not(.scrolled) .fn-burger span,
.floating-nav.scrolled .fn-burger span {
    background: rgba(255, 255, 255, 0.9);
}

.fn-burger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.fn-burger span:nth-child(1) {
    width: 22px;
}

.fn-burger span:nth-child(2) {
    width: 16px;
}

.fn-burger span:nth-child(3) {
    width: 22px;
}

.fn-burger.active span:nth-child(1) {
    width: 22px;
    transform: translateY(7px) rotate(45deg);
}

.fn-burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.fn-burger.active span:nth-child(3) {
    width: 22px;
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU OVERLAY ===== */
.fn-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 5, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fn-mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.fn-mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 88vw;
    height: 100%;
    background: rgba(10, 20, 11, 0.96);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 0 36px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
}

.fn-mobile-overlay.active .fn-mobile-panel {
    transform: translateX(0);
}

/* Mobile panel header */
.fn-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.fn-mobile-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    /* always white on mobile dark menu */
}

.fn-mobile-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.25s ease;
    cursor: pointer;
}

.fn-mobile-close:hover {
    background: rgba(220, 38, 38, 0.2);
    color: #ef4444;
    border-color: rgba(220, 38, 38, 0.3);
    transform: rotate(90deg);
}

/* Mobile search wrapper */
.fn-mobile-search {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
    flex-shrink: 0;
}

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

.fn-mobile-search-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.25s ease;
    text-align: left;
    cursor: pointer;
}

.fn-mobile-search-btn:hover {
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.8);
}

.fn-mobile-search-btn i {
    font-size: 1.1rem;
    color: #C9A84C;
}

/* Mobile links list */
.fn-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 16px 16px 0;
    flex: 1;
}

.fn-mobile-links li {
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fn-mobile-overlay.active .fn-mobile-links li {
    opacity: 1;
    transform: translateX(0);
}

.fn-mobile-overlay.active .fn-mobile-links li:nth-child(1) {
    transition-delay: 0.08s;
}

.fn-mobile-overlay.active .fn-mobile-links li:nth-child(2) {
    transition-delay: 0.13s;
}

.fn-mobile-overlay.active .fn-mobile-links li:nth-child(3) {
    transition-delay: 0.18s;
}

.fn-mobile-overlay.active .fn-mobile-links li:nth-child(4) {
    transition-delay: 0.23s;
}

.fn-mobile-overlay.active .fn-mobile-links li:nth-child(5) {
    transition-delay: 0.28s;
}

.fn-mobile-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    font-size: 0.98rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.fn-mobile-links a i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.25s ease;
    flex-shrink: 0;
    width: 20px;
}

.fn-mobile-links a:hover,
.fn-mobile-links a.active {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.fn-mobile-links a:hover i,
.fn-mobile-links a.active i {
    color: #C9A84C;
}

.fn-mobile-links a.active {
    font-weight: 700;
    border-left: 2px solid #C9A84C;
    border-radius: 0 12px 12px 0;
    padding-left: 16px;
    background: rgba(201, 168, 76, 0.05);
}

/* Mobile panel bottom area */
.fn-mobile-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 24px 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease 0.32s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.32s;
    flex-shrink: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 16px;
}

.fn-mobile-overlay.active .fn-mobile-bottom {
    opacity: 1;
    transform: translateY(0);
}

.fn-mobile-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    color: #fff;
    transition: all 0.25s ease;
    cursor: pointer;
}

.fn-mobile-cart:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.15);
}

.fn-mobile-cart i {
    color: #C9A84C;
}

.fn-mobile-shop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(135deg, #C9A84C 0%, #e5c36e 100%);
    color: #0c160d;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
    cursor: pointer;
}

.fn-mobile-shop:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    pointer-events: all;
    opacity: 1;
}

.search-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 7, 0.65);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.search-overlay-panel {
    position: relative;
    width: 100%;
    max-width: 660px;
    margin-top: 12vh;
    padding: 0 24px;
    transform: translateY(-24px) scale(0.97);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active .search-overlay-panel {
    transform: translateY(0) scale(1);
}

.search-close {
    position: absolute;
    top: -54px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.3rem;
    transition: all 0.25s ease;
    z-index: 2;
    cursor: pointer;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: rotate(90deg);
}

.search-container {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.search-input-wrap i {
    font-size: 1.3rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.search-input-wrap input {
    flex: 1;
    border: none;
    background: none;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    outline: none;
    font-family: var(--font);
}

.search-input-wrap input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.search-kbd {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: var(--border-light);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--font);
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.search-suggestions {
    padding: 12px 8px;
    max-height: 360px;
    overflow-y: auto;
}

.search-section {
    padding: 4px 0;
}

.search-section-label {
    display: block;
    padding: 8px 16px 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.search-suggestion-item:hover {
    background: rgba(36, 66, 37, 0.06);
    color: var(--primary);
}

.search-suggestion-item i {
    font-size: 1rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.search-suggestion-item:hover i {
    color: var(--primary);
}

.search-suggestions::-webkit-scrollbar {
    width: 4px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: transparent;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

/* ===== CINEMATIC BANNER CAROUSEL ===== */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Premium full screen viewport */
    height: 100svh;
    min-height: 580px;
    max-height: 980px;
    overflow: hidden;
    background: #000;
}

.banner-carousel .container {
    max-width: 100%;
    padding: 0;
}

.banner-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: bannerZoom 20s ease-in-out infinite alternate;
}

.banner-carousel:hover .banner-slide.active img {
    animation-play-state: paused;
}

@keyframes bannerZoom {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1.15);
    }
}

/* Premium gradient overlays for cinematic contrast */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(4, 10, 5, 0.94) 0%,
            rgba(8, 22, 9, 0.8) 35%,
            rgba(8, 22, 9, 0.45) 60%,
            rgba(8, 22, 9, 0.1) 85%,
            transparent 100%);
}

.banner-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(4, 10, 5, 0.6) 0%,
            transparent 40%);
}

/* Slide content styling */
.banner-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px 80px;
    max-width: 720px;
}

.banner-content>* {
    opacity: 0;
    transform: translateY(28px);
}

@keyframes bannerTextIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.banner-slide.active .banner-content>*:nth-child(1) {
    animation: bannerTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.banner-slide.active .banner-content>*:nth-child(2) {
    animation: bannerTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.banner-slide.active .banner-content>*:nth-child(3) {
    animation: bannerTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.banner-slide.active .banner-content>*:nth-child(4) {
    animation: bannerTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* Category indicator tag */
.banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 6px 14px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #C9A84C;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.banner-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #C9A84C;
    border-radius: 50%;
    animation: tagPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes tagPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* Main title with shiny gold shimmer gradient */
.banner-content h1 {
    font-size: clamp(2.8rem, 5.8vw, 4.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.banner-content h1 span {
    background: linear-gradient(135deg, #C9A84C 0%, #f3d481 40%, #C9A84C 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: goldShimmer 4s linear infinite;
}

@keyframes goldShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.banner-content p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 460px;
}

/* Banner Button CTA */
.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 16px 32px;
    background: #fff;
    color: var(--primary);
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.banner-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 66, 37, 0.08), transparent);
    transform: skewX(-15deg);
    transition: left 0.6s ease;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    background: #fdfdfd;
}

.banner-btn:hover::before {
    left: 150%;
}

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

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

/* Auto sliding progress bar */
.banner-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.banner-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #C9A84C, #f3d481);
    border-radius: 0 3px 3px 0;
    transition: width 0.1s linear;
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.7);
}

/* dots indicator */
.banner-dots {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    gap: 10px;
    z-index: 5;
    align-items: center;
}

.banner-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-dot.active {
    width: 36px;
    border-radius: 6px;
    background: #C9A84C;
    border-color: transparent;
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.5);
}

/* Scroll down visual hint */
.banner-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 5;
    opacity: 0.5;
    animation: scrollHintFade 3s ease-in-out 2s infinite;
}

@keyframes scrollHintFade {

    0%,
    100% {
        opacity: 0.4;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(6px);
    }
}

.banner-scroll-hint span {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.banner-scroll-hint i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ===== FLOATING CART PANEL ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 92vw;
    height: 100vh;
    background: #fff;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
}

.cart-panel.active {
    transform: translateX(0);
}

.cart-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    flex-shrink: 0;
}

.cart-panel-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
}

.cart-panel-header h3 i {
    font-size: 1.3rem;
    color: var(--primary);
}

.cart-panel-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border-light);
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all 0.25s;
}

.cart-panel-close:hover {
    background: #fee2e2;
    color: var(--danger);
}

.cart-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-panel-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-panel-empty i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 16px;
}

.cart-panel-empty h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.cart-panel-empty p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cart-panel-empty a {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s;
}

.cart-panel-empty a:hover {
    background: var(--primary-hover);
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

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

.cart-item-check {
    position: absolute;
    top: 14px;
    left: -4px;
}

.cart-item-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--border-light);
    flex-shrink: 0;
}

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

.cart-item-info {
    flex: 1;
    min-width: 0;
    padding-left: 10px;
}

.cart-item-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-variant {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-item-price {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--black);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: background 0.2s;
}

.cart-item-qty button:hover {
    background: var(--border-light);
}

.cart-item-qty span {
    width: 28px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--black);
}

.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

.cart-item-remove:hover {
    background: #fee2e2;
    color: var(--danger);
}

/* Cart Footer */
.cart-panel-footer {
    border-top: 1px solid var(--border-light);
    padding: 16px 24px;
    flex-shrink: 0;
    background: #fff;
}

.cart-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.cart-footer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--black);
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
    margin-top: 10px;
    margin-bottom: 16px;
}

.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-checkout-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(36, 66, 37, 0.3);
}

.cart-checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cart-select-info {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

/* ===== SECTION HEADERS ===== */
.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(36, 66, 37, 0.06);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header-center h2,
.section-header-row h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    border-bottom: 1.5px solid var(--border-light);
    padding-bottom: 16px;
}

.view-all-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}

.view-all-link:hover {
    gap: 8px;
}

/* ===== CATEGORIES ===== */
.section-categories {
    padding: 60px 24px;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.category-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.category-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(10, 31, 11, 0.9) 0%, rgba(10, 31, 11, 0.3) 40%, rgba(10, 31, 11, 0.05) 100%);
    transition: background 0.5s ease;
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(to top, rgba(10, 31, 11, 0.95) 0%, rgba(10, 31, 11, 0.45) 40%, rgba(10, 31, 11, 0.1) 100%);
}

.category-card-content {
    position: relative;
    z-index: 3;
    padding: 32px;
    color: #fff;
}

.category-card-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.category-card-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.category-card-content p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 260px;
}

.category-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4ade80;
    transition: all 0.3s ease;
}

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

.category-card:hover .category-card-cta i {
    transform: translate(3px, -3px);
}

/* ===== PRODUCTS ===== */
.section-products {
    padding: 0 24px 60px;
}

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

.product-card {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card-link {
    display: block;
}

.product-card-img {
    position: relative;
    aspect-ratio: 1;
    background: var(--border-light);
    overflow: hidden;
}

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

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-muted);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger);
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 1;
}

.product-card-body {
    padding: 16px;
}

.product-cat {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--black);
    margin: 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--black);
}

.product-old-price {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card-footer {
    padding: 0 16px 16px;
}

.product-buy-btn {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background: rgba(36, 66, 37, 0.05);
    color: var(--primary);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.product-buy-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== VALUES ===== */
.section-values {
    padding: 0 24px 60px;
}

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

.value-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(36, 66, 37, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 auto 14px;
}

.value-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.value-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== REVIEWS ===== */
.section-reviews {
    padding: 80px 24px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
}

.review-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.review-author {
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
}

.review-author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--black);
}

.review-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.section-faq {
    padding: 80px 24px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.faq-left h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.faq-left p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-white);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--black);
    text-align: left;
    transition: color 0.25s;
}

.faq-q:hover {
    color: var(--primary);
}

.faq-q i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 0 20px 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: #fff;
    padding: 60px 0 24px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.7;
}

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

.footer-col ul li a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.25s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    opacity: 0.5;
}

.developer-credit {
    margin-top: 6px;
    font-size: 0.78rem;
}

.developer-credit a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    opacity: 0.8;
}

.developer-credit a:hover {
    opacity: 1;
}

/* ===== ABOUT PAGE ===== */
.about-page {
    padding-bottom: 60px;
}

.about-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: -80px 0 0 0;
    padding-top: 80px;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 11, 0.9) 0%, rgba(26, 58, 28, 0.8) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px 60px;
}

.about-hero-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.about-gradient-text {
    background: linear-gradient(135deg, #4ade80, #a3e635);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-mission {
    padding: 60px 24px;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-mission-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-mission-icon {
    width: 60px;
    height: 60px;
    background: rgba(36, 66, 37, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin: 0 auto 18px;
}

.about-mission-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-mission-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-story {
    padding: 40px 24px 60px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-story-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 24px;
    text-align: center;
}

.about-badge-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #4ade80;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(36, 66, 37, 0.06);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.about-story-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 600;
}

.about-highlight-item i {
    font-size: 1.3rem;
    color: #4ade80;
}

.about-why {
    padding: 40px 24px 60px;
}

.about-why-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-why-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.about-why-icon {
    width: 52px;
    height: 52px;
    background: rgba(36, 66, 37, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 auto 16px;
}

.about-why-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-why-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-store {
    padding: 0 24px 60px;
}

.about-store-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-store-bg {
    position: absolute;
    inset: 0;
}

.about-store-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-store-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(36, 66, 37, 0.92) 0%, rgba(36, 66, 37, 0.8) 100%);
}

.about-store-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
    max-width: 600px;
}

.about-store-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.about-store-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    line-height: 1.7;
}

.about-store-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: var(--primary);
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.about-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.about-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* ===== CHECKOUT & CART (kept from original) ===== */
.cart-page {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 32px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.cart-empty p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.cart-table th {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-item-image {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--border-light);
    flex-shrink: 0;
}

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

.cart-item-name {
    font-weight: 600;
}

.cart-item-variant {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.cart-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.cart-qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    font-size: 1rem;
    transition: var(--transition);
}

.cart-qty-btn:hover {
    background: var(--border-light);
}

.cart-remove {
    color: var(--danger);
    font-size: 0.85rem;
    font-weight: 500;
}

.cart-remove:hover {
    text-decoration: underline;
}

.cart-summary {
    margin-top: 28px;
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.cart-total {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cart-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.checkout-page {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
}

.checkout-form {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 32px;
}

.checkout-form h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.88rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: inherit;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(36, 66, 37, 0.1);
}

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

.form-group .error-msg {
    display: block;
    color: var(--danger);
    font-size: 0.78rem;
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkout-summary {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 28px;
    height: fit-content;
    position: sticky;
    top: 94px;
}

.checkout-summary h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.92rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 800;
    padding: 16px 0;
}

.payment-method {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(36, 66, 37, 0.04);
    border: 1px solid rgba(36, 66, 37, 0.15);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.payment-method input[type="radio"] {
    margin-top: 4px;
    accent-color: var(--primary);
}

.payment-method label {
    font-weight: 500;
    font-size: 0.92rem;
}

.success-page {
    text-align: center;
    padding: 80px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
}

.success-page h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-page p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.order-id {
    font-weight: 800;
    color: var(--primary);
}

.checkout-steps-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0;
    gap: 15px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: var(--transition);
}

.step-indicator.active {
    opacity: 1;
    font-weight: 700;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--text-secondary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.step-indicator.active .step-number {
    background: var(--primary);
}

.step-label {
    font-size: 0.9rem;
}

.step-line {
    width: 80px;
    height: 2px;
    background: var(--border);
}

.checkout-step-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.checkout-step-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header {
    padding: 40px 0 10px;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-warning {
    background: #fff3e0;
    color: #e65100;
}

.badge-info {
    background: #e3f2fd;
    color: #1565c0;
}

.badge-primary {
    background: rgba(36, 66, 37, 0.08);
    color: var(--primary);
}

.badge-success {
    background: #e8f5e9;
    color: var(--success);
}

.badge-danger {
    background: #ffebee;
    color: var(--danger);
}

.badge-secondary {
    background: var(--border-light);
    color: var(--text-muted);
}

.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 0.92rem;
    border: 1px solid;
}

.alert-error {
    background: #ffebee;
    color: var(--danger);
    border-color: #ffcdd2;
}

.alert-success {
    background: #e8f5e9;
    color: var(--success);
    border-color: #c8e6c9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .floating-nav {
        width: calc(100% - 24px);
        top: 10px;
    }

    .floating-nav.floating {
        width: calc(100% - 24px);
    }

    .fn-links {
        display: none;
    }

    .fn-shop-btn {
        display: none;
    }

    .fn-search-btn {
        display: none;
    }

    .fn-mobile-search-btn-nav {
        display: flex;
    }

    .fn-burger {
        display: flex;
    }

    .search-overlay-panel {
        margin-top: 8vh;
        padding: 0 16px;
    }

    .search-close {
        top: -48px;
        right: 16px;
    }

    .search-input-wrap {
        padding: 16px 18px;
    }

    .search-input-wrap input {
        font-size: 0.95rem;
    }

    .search-kbd {
        display: none;
    }

    .search-suggestion-item {
        padding: 10px 14px;
        font-size: 0.88rem;
    }

    .banner-carousel {
        height: 55vh;
        min-height: 320px;
        border-radius: 0;
        margin: 0 -24px;
    }

    .banner-content {
        padding: 30px 24px;
    }

    .banner-content h1 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }

    .category-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-card {
        min-height: 280px;
    }

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

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

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

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

    .about-story-image img {
        height: 280px;
    }

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

/* ===== PRODUCT HOVER ADD TO CART ===== */
.product-card {
    position: relative;
}

.product-hover-cart {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 14px rgba(36, 66, 37, 0.35);
}

.product-card:hover .product-hover-cart {
    opacity: 1;
    transform: translateY(0);
}

.product-hover-cart:hover {
    background: var(--primary-hover);
    transform: scale(1.1) !important;
}

.product-hover-cart.adding {
    background: var(--success);
    animation: cartPop 0.4s ease;
}

@keyframes cartPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== STORY / ABOUT SECTION ===== */
.section-story {
    padding: 80px 0;
}

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

.story-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin: 8px 0 16px;
    line-height: 1.3;
}

.story-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.story-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.story-stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.story-stat span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.story-visual {
    position: relative;
}

.story-img-main {
    border-radius: 16px;
    overflow: hidden;
}

.story-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-img-float {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    border-radius: 14px;
    overflow: hidden;
    border: 4px solid var(--bg);
    box-shadow: var(--shadow-lg);
}

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

/* ===== HOW IT WORKS ===== */
.section-how {
    padding: 80px 0;
}

.how-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.how-step {
    text-align: center;
    flex: 1;
    max-width: 260px;
    padding: 32px 20px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
}

.how-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.how-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(36, 66, 37, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.how-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.how-step p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.how-arrow {
    display: flex;
    align-items: center;
    padding-top: 60px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* ===== VALUES ===== */
.section-values {
    padding: 0 0 80px;
}

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

.value-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(36, 66, 37, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.value-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.value-item p {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* ===== CTA BANNER ===== */
.section-cta {
    padding: 0 0 80px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 48px 56px;
    gap: 40px;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 24px;
}

.cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-btns .btn-primary {
    background: #fff;
    color: var(--primary);
}

.cta-btns .btn-primary:hover {
    background: var(--bg);
}

.cta-btns .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btns .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.cta-visual {
    flex-shrink: 0;
}

.cta-visual img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(36, 66, 37, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}

.btn-danger:hover {
    background: #b71c1c;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--primary);
    padding: 14px 0;
    margin-top: -1px;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 24px;
    white-space: nowrap;
}

.trust-bar-item i {
    font-size: 1.1rem;
    opacity: 0.85;
}

.trust-bar-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: var(--primary);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 8px 0 12px;
}

.contact-hero p {
    font-size: 1rem;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto;
}

/* Quick Connect Cards */
.contact-quick {
    padding: 48px 24px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.quick-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.quick-whatsapp .quick-card-icon {
    background: #dcf8c6;
    color: #25d366;
}

.quick-phone .quick-card-icon {
    background: #e3f2fd;
    color: #1976d2;
}

.quick-email .quick-card-icon {
    background: #fff3e0;
    color: #f57c00;
}

.quick-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.quick-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
}

.quick-card-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quick-card:hover .quick-card-arrow {
    color: var(--primary);
    transform: translate(2px, -2px);
}

/* Contact Main Grid */
.contact-main {
    padding: 60px 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Form Card */
.contact-form-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 4px;
}

/* Submit Button */
.contact-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-submit-loading {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Alerts */
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    margin-top: 16px;
    font-size: 0.88rem;
}

.contact-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.contact-success i {
    font-size: 1.3rem;
    margin-top: 2px;
}

.contact-error {
    background: #fce4ec;
    color: #c62828;
}

.contact-error i {
    font-size: 1.3rem;
    margin-top: 2px;
}

.contact-alert strong {
    display: block;
    margin-bottom: 2px;
}

.contact-alert p {
    margin: 0;
    opacity: 0.85;
}

/* Info Sidebar */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(36, 66, 37, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.contact-info-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-info-card strong {
    font-size: 0.95rem;
    color: var(--black);
    display: block;
    margin-top: 4px;
}

.contact-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 4px 12px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.contact-info-badge i {
    font-size: 0.5rem;
    color: #4caf50;
}

/* Social Card */
.contact-social-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.contact-social-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.contact-social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-wa {
    background: #dcf8c6;
    color: #25d366;
}

.social-wa:hover {
    background: #25d366;
    color: #fff;
}

.social-fb {
    background: #e3f2fd;
    color: #1976d2;
}

.social-fb:hover {
    background: #1976d2;
    color: #fff;
}

.social-ig {
    background: #fce4ec;
    color: #e91e63;
}

.social-ig:hover {
    background: #e91e63;
    color: #fff;
}

.social-call {
    background: #fff3e0;
    color: #f57c00;
}

.social-call:hover {
    background: #f57c00;
    color: #fff;
}

/* Contact FAQ */
.contact-faq-section {
    padding: 0 24px 80px;
}

.contact-faq-list {
    max-width: 740px;
    margin: 0 auto;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: waPulse 2s ease-in-out infinite;
}

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

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ===== HOMEPAGE CONTACT SECTION ===== */
.section-contact-home {
    padding: 0 24px 80px;
}

.contact-home-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 48px 56px;
    gap: 40px;
}

.contact-home-left h2 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 8px 0 12px;
}

.contact-home-left p {
    font-size: 0.92rem;
    opacity: 0.85;
    max-width: 400px;
}

.contact-home-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-home-wa {
    background: #25d366;
    color: #fff;
}

.contact-home-wa:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.contact-home-call {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-home-call:hover {
    background: rgba(255, 255, 255, 0.25);
}

.contact-home-form {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-home-form:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ===== FOOTER SOCIALS ===== */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ADDITIONS ===== */

/* ---- Navbar responsive breakpoints ---- */
@media (max-width: 1100px) {
    .fn-search-inline {
        width: 150px;
    }

    .fn-search-inline:focus-within {
        width: 200px;
    }

    .fn-shop-btn {
        padding: 9px 16px;
    }
}

@media (max-width: 900px) {

    /* Show burger, hide desktop nav links */
    .fn-burger {
        display: flex;
    }

    .fn-links {
        display: none;
    }

    /* Hide inline search on mobile — show icon btn instead */
    .fn-search-inline {
        display: none;
    }

    .fn-search-btn {
        display: flex;
    }

    /* Compact nav padding */
    .floating-nav {
        padding: 8px 16px 0;
    }

    .floating-nav.floating {
        width: calc(100% - 24px);
        top: 8px;
    }

    .floating-nav-inner {
        padding: 8px 8px 8px 16px;
        border-radius: 18px;
    }

    .fn-logo img {
        height: 34px;
    }

    .fn-shop-btn {
        display: none;
    }
}

@media (max-width: 600px) {

    /* Announcement bar smaller */
    .announcement-bar {
        font-size: 0.72rem;
        height: 32px;
    }

    /* Floating nav full width feel */
    .floating-nav {
        padding: 8px 10px 0;
    }

    .floating-nav.floating {
        width: calc(100% - 16px);
        top: 6px;
    }

    .floating-nav-inner {
        padding: 7px 7px 7px 14px;
        border-radius: 16px;
        gap: 4px;
    }

    .fn-logo img {
        height: 30px;
    }

    .fn-icon-btn {
        width: 36px;
        height: 36px;
        font-size: 1.05rem;
        border-radius: 10px;
    }
}

/* ---- End navbar responsive ---- */

@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-visual {
        order: -1;
    }

    .story-img-main img {
        height: 300px;
    }

    .how-grid {
        flex-direction: column;
        align-items: center;
    }

    .how-arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }

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

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

    .cta-btns {
        justify-content: center;
    }

    .cta-visual img {
        width: 100%;
        max-width: 400px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .checkout-page {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

    /* Tablet Banner carousel style */
    .banner-carousel {
        height: 75vh;
        height: 75svh;
        min-height: 480px;
    }

    .banner-content {
        padding: 80px 40px 80px;
        max-width: 600px;
    }

    .banner-dots {
        right: 40px;
        bottom: 30px;
    }
}

@media (max-width: 768px) {

    /* Tablet/Mobile banner */
    .banner-carousel {
        height: 80vh;
        height: 80svh;
        min-height: 460px;
    }

    .banner-overlay {
        background: linear-gradient(to bottom,
                rgba(4, 10, 5, 0.85) 0%,
                rgba(4, 10, 5, 0.9) 60%,
                rgba(4, 10, 5, 0.98) 100%);
    }

    .banner-content {
        padding: 80px 32px 60px;
        max-width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .banner-content h1 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .banner-content p {
        font-size: 0.92rem;
        margin: 0 auto 24px;
        max-width: 480px;
    }

    .banner-content .banner-btn {
        padding: 14px 28px;
        font-size: 0.88rem;
    }

    .banner-tag {
        font-size: 0.68rem;
        padding: 5px 12px;
        margin-bottom: 16px;
    }

    .banner-dots {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 24px;
    }

    .banner-scroll-hint {
        display: none;
    }

    .trust-bar {
        padding: 10px 0;
    }

    .trust-bar-item {
        font-size: 0.78rem;
        padding: 0 14px;
        gap: 6px;
    }

    .trust-bar-item i {
        font-size: 0.95rem;
    }

    .trust-bar-divider {
        height: 14px;
    }

    .section-categories {
        padding: 40px 0;
    }

    .category-card {
        min-height: 240px;
    }

    .category-card-content {
        padding: 24px;
    }

    .category-card-num {
        font-size: 2rem;
    }

    .section-products {
        padding: 40px 0;
    }

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

    .section-story {
        padding: 40px 0;
    }

    .story-img-main img {
        height: 240px;
    }

    .story-img-float {
        display: none;
    }

    .story-stats {
        gap: 16px;
    }

    .story-stat strong {
        font-size: 1.3rem;
    }

    .section-how {
        padding: 40px 0;
    }

    .how-arrow {
        display: none;
    }

    .how-step {
        padding: 24px 16px;
    }

    .section-values {
        padding: 0 0 40px;
    }

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

    .value-item {
        padding: 20px 14px;
    }

    .value-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

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

    .review-card {
        padding: 20px;
    }

    .section-reviews {
        padding: 40px 0;
    }

    .section-cta {
        padding: 0 0 40px;
    }

    .cta-card {
        padding: 32px 24px;
        gap: 24px;
    }

    .cta-visual img {
        height: 180px;
    }

    .section-contact-home {
        padding: 0 0 40px;
    }

    .contact-home-card {
        padding: 32px 24px;
        gap: 24px;
    }

    .contact-home-left h2 {
        font-size: 1.4rem;
    }

    .contact-home-btn {
        padding: 10px 16px;
        font-size: 0.82rem;
    }

    .section-faq {
        padding: 40px 0;
    }

    .cart-page {
        padding: 20px;
    }

    .cart-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cart-table {
        min-width: 580px;
    }

    .cart-actions {
        flex-wrap: wrap;
    }

    .checkout-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .about-hero {
        min-height: 260px;
    }

    .about-store-banner {
        min-height: 240px;
    }

    .about-store-content {
        padding: 40px 24px;
    }

    .product-hover-cart {
        opacity: 1;
        transform: translateY(0);
    }

    .story-stats {
        gap: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

    .about-story-image img {
        height: 240px;
    }

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

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    /* Mobile small screen banner */
    .banner-carousel {
        height: 80vh;
        height: 80svh;
        min-height: 420px;
        border-radius: 0;
    }

    .banner-content {
        padding: 60px 20px 50px;
    }

    .banner-content h1 {
        font-size: 1.85rem;
        letter-spacing: -0.5px;
        line-height: 1.15;
    }

    .banner-content p {
        font-size: 0.86rem;
        max-width: 100%;
        line-height: 1.6;
    }

    .banner-content .banner-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .banner-dots {
        bottom: 16px;
    }

    .banner-dot {
        width: 7px;
        height: 7px;
    }

    .banner-dot.active {
        width: 28px;
    }

    .banner-tag {
        margin-bottom: 12px;
    }

    .trust-bar-item {
        font-size: 0.7rem;
        padding: 0 10px;
        gap: 4px;
    }

    .trust-bar-item i {
        font-size: 0.85rem;
    }

    .trust-bar-divider {
        display: none;
    }

    .section-categories {
        padding: 28px 0;
    }

    .category-card {
        min-height: 200px;
    }

    .category-card-content {
        padding: 20px;
    }

    .category-card-num {
        font-size: 1.6rem;
    }

    .category-card-content h3 {
        font-size: 1.1rem;
    }

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

    .product-card-body {
        padding: 10px;
    }

    .product-name {
        font-size: 0.78rem;
    }

    .product-price {
        font-size: 0.88rem;
    }

    .product-cat {
        font-size: 0.65rem;
    }

    .product-hover-cart {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        bottom: 8px;
        right: 8px;
    }

    .section-story {
        padding: 28px 0;
    }

    .story-content h2 {
        font-size: 1.3rem;
    }

    .story-content p {
        font-size: 0.88rem;
    }

    .story-stats {
        gap: 12px;
    }

    .story-stat strong {
        font-size: 1.1rem;
    }

    .story-stat span {
        font-size: 0.72rem;
    }

    .section-how {
        padding: 28px 0;
    }

    .how-step h3 {
        font-size: 0.92rem;
    }

    .how-step p {
        font-size: 0.78rem;
    }

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

    .value-item {
        padding: 18px 14px;
    }

    .value-item h4 {
        font-size: 0.88rem;
    }

    .value-item p {
        font-size: 0.78rem;
    }

    .section-reviews {
        padding: 28px 0;
    }

    .review-card {
        padding: 16px;
    }

    .review-card p {
        font-size: 0.82rem;
    }

    .cta-card {
        padding: 24px 18px;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }

    .cta-content p {
        font-size: 0.85rem;
    }

    .cta-visual img {
        height: 150px;
        border-radius: 10px;
    }

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

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

    .section-contact-home {
        padding: 0 0 28px;
    }

    .contact-home-card {
        padding: 24px 18px;
    }

    .contact-home-left h2 {
        font-size: 1.2rem;
    }

    .contact-home-left p {
        font-size: 0.85rem;
    }

    .contact-home-right {
        flex-direction: column;
    }

    .contact-home-btn {
        width: 100%;
        justify-content: center;
    }

    .section-faq {
        padding: 28px 0;
    }

    .contact-hero {
        padding: 50px 0 36px;
    }

    .contact-hero h1 {
        font-size: 1.5rem;
    }

    .contact-hero p {
        font-size: 0.88rem;
    }

    .contact-quick {
        padding: 28px 0 0;
        margin-top: -28px;
    }

    .quick-card {
        padding: 18px;
        gap: 12px;
    }

    .quick-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .quick-card h3 {
        font-size: 0.88rem;
    }

    .quick-card p {
        font-size: 0.78rem;
    }

    .contact-main {
        padding: 28px 0;
    }

    .contact-form-card {
        padding: 20px;
    }

    .contact-info-card {
        padding: 18px;
    }

    .contact-social-card {
        padding: 18px;
    }

    .contact-faq-section {
        padding: 0 0 28px;
    }

    .cart-page {
        padding: 16px;
    }

    .cart-empty {
        padding: 40px 16px;
    }

    .checkout-form {
        padding: 18px;
    }

    .checkout-summary {
        padding: 18px;
    }

    .footer {
        padding: 32px 0 16px;
    }

    .footer-col h4 {
        font-size: 0.88rem;
    }

    .footer-col p,
    .footer-col li a {
        font-size: 0.82rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .section-header-center h2 {
        font-size: 1.3rem;
    }

    .section-tag {
        font-size: 0.68rem;
    }

    .about-hero {
        min-height: 220px;
    }

    .about-store-banner {
        min-height: 200px;
    }

    .about-store-content {
        padding: 32px 18px;
    }

    .about-store-content h2 {
        font-size: 1.3rem;
    }

    .pd-tab-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pd-tab-nav::-webkit-scrollbar {
        display: none;
    }
}