/* ============================================================
   Royal Organique - Award-Winning Design System
   Color Palette derived from logo: Dark Brown, Golden Amber, Cream
   ============================================================ */

/* ========== CSS Variables ========== */
:root {
    /* Primary Palette - From Logo */
    --brown-900: #2A1810;
    --brown-800: #3D2414;
    --brown-700: #4A2C0F;
    --brown-600: #5D3A1A;
    --brown-500: #7A4F2B;
    --brown-400: #8B6340;
    --brown-300: #A6845C;
    --brown-200: #C4A77D;
    --brown-100: #DCC8A6;

    /* Gold Palette - From Logo Honeycomb */
    --gold-600: #8B6914;
    --gold-500: #B8891A;
    --gold-400: #C8961E;
    --gold-300: #D4A63C;
    --gold-200: #E2BF6A;
    --gold-100: #F0D88F;

    /* Neutral Palette */
    --cream-100: #FAF7F2;
    --cream-200: #F5EDE0;
    --cream-300: #EDE3D1;
    --cream-400: #DDD0BB;

    --white: #FFFFFF;
    --black: #1A1209;

    /* Semantic Colors */
    --primary: var(--brown-600);
    --primary-dark: var(--brown-800);
    --primary-light: var(--brown-300);
    --accent: var(--gold-400);
    --accent-dark: var(--gold-600);
    --accent-light: var(--gold-200);

    --text-primary: var(--brown-800);
    --text-secondary: var(--brown-400);
    --text-muted: var(--brown-300);

    --bg-primary: var(--cream-100);
    --bg-secondary: var(--cream-200);
    --bg-tertiary: var(--cream-300);

    /* Compatibility variables for product detail pages */
    --soft-gray: #F0EBE3;
    --warm-white: #FAF7F2;
    --dark-green: #3D2414;
    --text-light: #8B6340;
    --primary-green: #5D3A1A;
    --cream: #F5EDE0;
    --light-gray: #EDE3D1;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(42, 24, 16, 0.04);
    --shadow-sm: 0 4px 12px rgba(42, 24, 16, 0.06);
    --shadow-md: 0 8px 30px rgba(42, 24, 16, 0.08);
    --shadow-lg: 0 16px 50px rgba(42, 24, 16, 0.12);
    --shadow-xl: 0 24px 70px rgba(42, 24, 16, 0.16);
    --shadow-glow: 0 0 40px rgba(200, 150, 30, 0.15);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default;
    opacity: 1;
    transition: opacity 0.4s ease;
}

body.loading {
    overflow: hidden;
}

body.page-transitioning {
    opacity: 0;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Preloader ========== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--cream-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    animation: preloaderFadeIn 0.6s ease forwards;
}

.preloader-logo {
    margin-bottom: 32px;
}

.preloader-logo img {
    height: 56px;
    width: auto;
    margin: 0 auto;
}

.preloader-line {
    width: 60px;
    height: 1.5px;
    background: var(--cream-300);
    border-radius: var(--radius-full);
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    animation: preloaderShimmer 1.2s ease-in-out infinite;
}

.preloader-text {
    color: var(--brown-300);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 400;
    font-style: italic;
}

@keyframes preloaderFadeIn {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}


/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

h2 em, h1 em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* ========== Section Headers ========== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(200, 150, 30, 0.1), rgba(200, 150, 30, 0.05));
    border: 1px solid rgba(200, 150, 30, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 20px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--gold-200);
}

.section-title-text {
    margin-bottom: 20px;
}

.section-subtitle {
    max-width: 550px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn svg {
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brown-700), var(--brown-600));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(74, 44, 15, 0.25);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='50' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23C8961E' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brown-600), var(--accent-dark));
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
    border-radius: inherit;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(74, 44, 15, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(74, 44, 15, 0.3);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200, 150, 30, 0.25);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
    border-radius: inherit;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(200, 150, 30, 0.35);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary span,
.btn-secondary svg {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--brown-600);
    color: var(--brown-600);
}

.btn-outline:hover {
    background: var(--brown-600);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(74, 44, 15, 0.2);
}

.btn-outline:active {
    transform: translateY(-1px);
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all var(--duration-normal) var(--ease-out-expo);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(42, 24, 16, 0.06);
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding var(--duration-normal) ease;
}

.navbar.scrolled .navbar-container {
    padding: 14px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo img {
    height: 50px;
    width: auto;
    transition: height var(--duration-normal) ease;
    object-fit: contain;
}

.navbar.scrolled .logo img {
    height: 44px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 5px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color var(--duration-fast) ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--gold-200));
    border-radius: var(--radius-full);
    transition: width var(--duration-normal) var(--ease-out-expo);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

.dropdown-toggle svg {
    transition: transform var(--duration-fast) ease;
}

.dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
    margin-top: 15px;
    border: 1px solid rgba(42, 24, 16, 0.06);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all var(--duration-fast) ease;
}

.dropdown-item:hover {
    background: var(--cream-200);
    color: var(--primary);
    padding-left: 28px;
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--cream-200);
    border-radius: 50%;
    transition: all var(--duration-fast) var(--ease-out-expo);
    color: var(--text-primary);
}

.cart-icon:hover {
    background: var(--brown-600);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(93, 58, 26, 0.25);
}

.cart-icon svg {
    width: 20px;
    height: 20px;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-primary);
    transition: transform 0.3s var(--ease-spring);
}

.cart-count.bump {
    animation: cartBump 0.4s var(--ease-spring);
}

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

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out-expo);
    transform-origin: center;
}

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

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--cream-100);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 150, 30, 0.12) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: shapeFloat1 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(93, 58, 26, 0.08) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
    animation: shapeFloat2 25s ease-in-out infinite;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 150, 30, 0.08) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: shapeFloat3 18s ease-in-out infinite;
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 40px) scale(1.1); }
    66% { transform: translate(20px, -30px) scale(0.95); }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.98); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: linear-gradient(135deg, rgba(200, 150, 30, 0.12), rgba(200, 150, 30, 0.04));
    border: 1px solid rgba(200, 150, 30, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 30px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    margin-bottom: 30px;
    line-height: 1.05;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-accent {
    color: var(--accent);
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    font-size: 1.15em;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--cream-400);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    will-change: transform;
}

.hero-image-frame img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-image-frame:hover img {
    transform: scale(1.05);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(42, 24, 16, 0.15));
    pointer-events: none;
}

.hero-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 2px solid var(--gold-200);
    border-radius: var(--radius-xl);
    opacity: 0.4;
    z-index: -1;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.floating-card-1 {
    top: 15%;
    left: -15%;
    animation: floatCard1 6s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 20%;
    right: -10%;
    animation: floatCard2 6s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

.floating-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.floating-card-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

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

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--cream-400);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 20px;
    background: var(--accent);
    border-radius: var(--radius-full);
    position: absolute;
    top: -20px;
    left: -1px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -20px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 60px; opacity: 0; }
}

/* ========== Marquee Section ========== */
.marquee-section {
    padding: 0;
    background:
        linear-gradient(135deg, var(--brown-900) 0%, var(--brown-800) 40%, var(--brown-700) 100%);
    overflow: hidden;
    position: relative;
    box-shadow:
        inset 0 2px 20px rgba(0, 0, 0, 0.3),
        inset 0 -2px 20px rgba(0, 0, 0, 0.3);
}

/* Honeycomb pattern fill */
.marquee-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23C8961E' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Glass overlay + shine sweep */
.marquee-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            105deg,
            rgba(200, 150, 30, 0) 0%,
            rgba(200, 150, 30, 0.06) 40%,
            rgba(200, 150, 30, 0.12) 50%,
            rgba(200, 150, 30, 0.06) 60%,
            rgba(200, 150, 30, 0) 100%
        );
    background-size: 200% 100%;
    animation: marqueeShine 6s ease-in-out infinite;
    border-top: 1px solid rgba(200, 150, 30, 0.25);
    border-bottom: 1px solid rgba(200, 150, 30, 0.25);
    pointer-events: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    position: relative;
    z-index: 1;
    padding: 26px 0;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 56px;
    animation: marqueeScroll 28s linear infinite;
    padding-right: 56px;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--cream-100);
    white-space: nowrap;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(200, 150, 30, 0.25), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--gold-300);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(200, 150, 30, 0.6), 0 0 14px rgba(200, 150, 30, 0.3);
}

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

@keyframes marqueeShine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ========== Features Banner ========== */
.features-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-200), var(--cream-300));
    position: relative;
}

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

.feature-item {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.95);
}

.feature-item-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--brown-700), var(--brown-500));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.feature-item:hover .feature-item-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    box-shadow: 0 8px 25px rgba(200, 150, 30, 0.3);
}

.feature-item h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== Products Section ========== */
.products-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-normal) var(--ease-out-expo),
                box-shadow var(--duration-normal) var(--ease-out-expo);
    position: relative;
    border: 1px solid rgba(42, 24, 16, 0.04);
    will-change: transform;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(200, 150, 30, 0.3);
}

.badge-new {
    background: linear-gradient(135deg, var(--brown-600), var(--brown-500));
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(42, 24, 16, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out-expo);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 12px;
    transform: translateY(20px);
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.product-card:hover .product-actions {
    transform: translateY(0);
}

.action-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all var(--duration-fast) var(--ease-spring);
}

.action-btn:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(200, 150, 30, 0.4);
}

.product-info {
    padding: 24px;
}

.product-category {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    transition: color var(--duration-fast) ease;
}

.product-card:hover .product-name {
    color: var(--primary);
}

.product-description {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--cream-300);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-dark);
    transition: all var(--duration-fast) ease;
}

.product-link:hover {
    color: var(--primary);
    gap: 10px;
}

.product-link svg {
    transition: transform var(--duration-fast) ease;
}

.product-link:hover svg {
    transform: translateX(3px);
}

.view-all-container {
    text-align: center;
    margin-top: 60px;
}

/* ========== About Section ========== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--cream-200);
    position: relative;
    overflow: hidden;
}

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

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

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

.about-image-small {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 50px;
}

.about-image-small img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

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

.about-experience {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 28px 38px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 2;
    border: 1px solid rgba(42, 24, 16, 0.04);
}

.about-experience .years {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.about-experience .text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.4;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content > p {
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: all var(--duration-normal) ease;
}

.about-feature:hover {
    background: var(--cream-100);
    transform: translateX(4px);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.about-feature:hover .about-feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.about-feature h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--duration-normal) var(--ease-out-expo);
    border: 1px solid rgba(42, 24, 16, 0.04);
}

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

.testimonial-quote {
    color: var(--accent);
    margin-bottom: 16px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--gold-400);
}

.testimonial-text {
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--cream-300);
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cream-200);
}

.testimonial-author-info h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-author-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ========== Footer ========== */
.footer {
    background: var(--brown-800);
    color: var(--cream-200);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-200), var(--gold-400), var(--gold-600));
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23C8961E' stroke-width='0.8'/%3E%3C/svg%3E");
    pointer-events: none;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

.footer-cta {
    padding: 80px 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23ffffff'/%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-cta-content {
    position: relative;
    z-index: 1;
}

.footer-cta h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--cream-100);
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-cta h3 em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-300);
}

.footer-cta p {
    color: var(--brown-200);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.footer-newsletter {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 5px;
    transition: border-color var(--duration-fast) ease;
}

.footer-newsletter:focus-within {
    border-color: var(--gold-400);
}

.footer-newsletter input {
    flex: 1;
    padding: 14px 22px;
    background: transparent;
    border: none;
    color: var(--cream-100);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    min-width: 0;
}

.footer-newsletter input::placeholder {
    color: var(--brown-300);
}

.footer-newsletter button {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
    white-space: nowrap;
}

.footer-newsletter button:hover {
    box-shadow: 0 4px 20px rgba(200, 150, 30, 0.35);
    transform: translateY(-1px);
}

.footer-main {
    padding: 70px 0 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 50px;
}

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

.footer-brand-text {
    color: var(--brown-200);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-200);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.social-link:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: var(--white);
    transform: translateY(-3px) rotate(-3deg);
    box-shadow: 0 6px 20px rgba(200, 150, 30, 0.3);
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gold-400);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--brown-200);
    font-size: 0.9rem;
    transition: all var(--duration-fast) ease;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--cream-100);
    transform: translateX(6px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-400);
}

.footer-contact-text {
    font-size: 0.88rem;
    color: var(--brown-200);
    line-height: 1.6;
}

.footer-contact-text strong {
    display: block;
    color: var(--cream-100);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brown-300);
    font-size: 0.82rem;
}

.footer-bottom-left svg {
    color: var(--gold-400);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom-right a {
    color: var(--brown-300);
    font-size: 0.82rem;
    transition: color var(--duration-fast) ease;
}

.footer-bottom-right a:hover {
    color: var(--gold-400);
}

.footer-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold-400);
    letter-spacing: 1px;
}

/* ========== Back to Top ========== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--brown-700);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-out-expo);
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(200, 150, 30, 0.35);
}

/* ========== Scroll Reveal Animations ========== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hero reveal items */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out-expo),
                transform 0.7s var(--ease-out-expo);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered product cards */
.products-grid .product-card:nth-child(1) { transition-delay: 0ms; }
.products-grid .product-card:nth-child(2) { transition-delay: 80ms; }
.products-grid .product-card:nth-child(3) { transition-delay: 160ms; }
.products-grid .product-card:nth-child(4) { transition-delay: 240ms; }
.products-grid .product-card:nth-child(5) { transition-delay: 320ms; }
.products-grid .product-card:nth-child(6) { transition-delay: 400ms; }
.products-grid .product-card:nth-child(7) { transition-delay: 480ms; }

/* Features stagger */
.features-grid .feature-item:nth-child(1) { transition-delay: 0ms; }
.features-grid .feature-item:nth-child(2) { transition-delay: 100ms; }
.features-grid .feature-item:nth-child(3) { transition-delay: 200ms; }
.features-grid .feature-item:nth-child(4) { transition-delay: 300ms; }

/* Testimonials stagger */
.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0ms; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 120ms; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 240ms; }

/* ========== Magnetic Button Effect ========== */
.magnetic {
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

/* ========== Cart Page ========== */
.cart-section {
    padding: 140px 0 80px;
    background: var(--bg-primary);
    min-height: 100vh;
}

.cart-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.cart-items {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(42, 24, 16, 0.04);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 2fr 1fr 1fr 50px;
    gap: 20px;
    align-items: center;
    padding: 28px 32px;
    border-bottom: 1px solid var(--cream-200);
    transition: background var(--duration-fast) ease;
}

.cart-item:hover {
    background: var(--cream-100);
}

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

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.cart-item-details h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-details p {
    font-size: 0.85rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--cream-300);
    background: var(--white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) ease;
}

.quantity-btn:hover {
    background: var(--brown-600);
    color: var(--white);
    border-color: var(--brown-600);
}

.cart-item-quantity span {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-item-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-item-remove {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #c0392b;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: #fce4ec;
    transform: scale(1.1);
}

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

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

.cart-empty h3 {
    margin-bottom: 15px;
}

.cart-empty p {
    margin-bottom: 30px;
}

.cart-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 32px;
    margin-top: 24px;
    border: 1px solid rgba(42, 24, 16, 0.04);
}

.cart-summary h3 {
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1rem;
}

.summary-row.total {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 2px solid var(--cream-200);
    padding-top: 20px;
    margin-top: 20px;
}

.cart-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

/* ========== Checkout Page ========== */
.checkout-section {
    padding: 140px 0 80px;
    background: var(--bg-primary);
    min-height: 100vh;
}

.checkout-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.checkout-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 44px;
    border: 1px solid rgba(42, 24, 16, 0.04);
}

.form-section {
    margin-bottom: 35px;
}

.form-section h3 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--cream-200);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--cream-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease, background var(--duration-fast) ease;
    background: var(--cream-100);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(200, 150, 30, 0.1);
    background: var(--white);
}

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

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid var(--cream-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.payment-method:hover,
.payment-method.active {
    border-color: var(--accent);
    background: rgba(200, 150, 30, 0.04);
}

.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
}

.payment-method-icon {
    font-size: 1.5rem;
}

.payment-method-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.payment-method-info p {
    font-size: 0.82rem;
    margin: 0;
}

.order-summary {
    background: var(--cream-200);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.order-summary h4 {
    margin-bottom: 20px;
}

.form-section h3 svg {
    vertical-align: -3px;
    margin-right: 8px;
    color: var(--accent);
}

.checkout-items-summary {
    margin: 15px 0;
}

.checkout-loading-text {
    color: var(--text-secondary);
}

.checkout-empty-text {
    color: #e74c3c;
}

.checkout-empty-text a {
    color: var(--accent);
    text-decoration: underline;
}

.checkout-items-list {
    border-top: 1px solid var(--cream-300);
    padding-top: 15px;
}

.checkout-item-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--cream-300);
}

.checkout-item-name {
    color: var(--text-primary);
}

.checkout-item-price {
    font-weight: 600;
    color: var(--text-primary);
}

.checkout-subtotal-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    margin-top: 10px;
    color: var(--text-secondary);
}

.checkout-shipping-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--text-secondary);
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 2px solid var(--brown-800);
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.checkout-submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    justify-content: center;
}

.checkout-security-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.checkout-security-note svg {
    color: var(--accent);
    flex-shrink: 0;
}

.payment-method-icon svg {
    color: var(--text-secondary);
}

.payment-method.active .payment-method-icon svg,
.payment-method:hover .payment-method-icon svg {
    color: var(--accent);
}

/* ========== Product Detail Page ========== */
.product-detail-section {
    padding: 140px 0 80px;
    background: var(--bg-primary);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-detail-images {
    position: relative;
}

.product-detail-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.product-detail-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.product-detail-main-image:hover img {
    transform: scale(1.03);
}

.product-detail-thumbnails {
    display: flex;
    gap: 12px;
}

.product-detail-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--duration-fast) ease;
}

.product-detail-thumbnail.active,
.product-detail-thumbnail:hover {
    border-color: var(--accent);
    transform: scale(1.05);
}

.product-detail-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.product-detail-category {
    color: var(--accent-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

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

.product-detail-rating .stars {
    display: flex;
    gap: 3px;
    color: var(--gold-400);
}

.product-detail-rating .stars span {
    font-size: 1.2rem;
}

.product-detail-rating .stars svg {
    width: 18px;
    height: 18px;
}

.product-detail-rating .reviews {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-detail-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.product-detail-description {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.9;
}

.product-detail-features {
    margin-bottom: 30px;
}

.product-detail-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.product-detail-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.product-detail-actions {
    display: flex;
    gap: 16px;
    margin-top: 35px;
}

.product-detail-quantity {
    display: flex;
    align-items: center;
    border: 2px solid var(--cream-300);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.product-detail-quantity button {
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
    color: var(--text-primary);
}

.product-detail-quantity button:hover {
    background: var(--cream-200);
}

.product-detail-quantity span {
    width: 50px;
    text-align: center;
    font-weight: 600;
}

/* Product Detail - Tab Section (for sub-agent pages) */
.product-info-tabs {
    padding: 80px 0;
    background: var(--warm-white);
}

.product-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--soft-gray);
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.product-tab-btn {
    padding: 14px 28px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: all var(--duration-fast) ease;
}

.product-tab-btn.active,
.product-tab-btn:hover {
    color: var(--primary);
}

.product-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
}

.product-tab-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-tab-pane {
    display: none;
}

.product-tab-pane.active {
    display: block;
    animation: fadeTabIn 0.4s ease;
}

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

/* Product Detail - Info Boxes */
.product-info-box {
    background: var(--soft-gray);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.product-info-box h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-info-box p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Product Detail - Related Products */
.related-products {
    padding: 80px 0;
    background: var(--bg-primary);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Product Detail - Breadcrumb */
.product-breadcrumb {
    padding: 120px 0 20px;
    background: var(--bg-primary);
}

.breadcrumb-nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
}

.breadcrumb-nav a {
    color: var(--text-muted);
    transition: color var(--duration-fast) ease;
}

.breadcrumb-nav a:hover {
    color: var(--accent);
}

.breadcrumb-nav span {
    color: var(--text-muted);
}

.breadcrumb-nav .current {
    color: var(--text-primary);
    font-weight: 500;
}

/* ========== Help Page ========== */
.help-section {
    padding: 140px 0 80px;
    background: var(--bg-primary);
    min-height: 100vh;
}

.help-header {
    text-align: center;
    margin-bottom: 50px;
}

.help-search {
    max-width: 600px;
    margin: 30px auto 0;
    position: relative;
}

.help-search input {
    width: 100%;
    padding: 18px 25px;
    padding-right: 60px;
    border: 2px solid var(--cream-300);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--white);
    transition: all var(--duration-fast) ease;
    color: var(--text-primary);
}

.help-search input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(200, 150, 30, 0.1);
}

.help-search button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    background: var(--brown-600);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-search button:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.05);
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.help-category {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out-expo);
    cursor: pointer;
    border: 1px solid rgba(42, 24, 16, 0.04);
}

.help-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 150, 30, 0.15);
}

.help-category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    color: var(--white);
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.help-category:hover .help-category-icon {
    transform: scale(1.1) rotate(-5deg);
}

.help-category h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.help-category p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    border: 1px solid rgba(42, 24, 16, 0.04);
    transition: box-shadow var(--duration-fast) ease, border-color var(--duration-fast) ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: rgba(200, 150, 30, 0.2);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    transition: all var(--duration-fast) ease;
}

.faq-question:hover {
    background: var(--cream-100);
}

.faq-question span {
    font-size: 1.4rem;
    transition: transform var(--duration-normal) var(--ease-out-expo);
    color: var(--accent);
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out-expo);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 24px;
    line-height: 1.8;
}

/* ========== About Page ========== */
.about-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--cream-200), var(--cream-100));
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 20px;
}

.about-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.about-story {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

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

.about-story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.about-story-image:hover img {
    transform: scale(1.03);
}

.about-values {
    padding: var(--section-padding) 0;
    background: var(--brown-800);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-values::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23C8961E' stroke-width='0.8'/%3E%3C/svg%3E");
    pointer-events: none;
}

.about-values > .container {
    position: relative;
    z-index: 1;
}

.about-values .section-header {
    margin-bottom: 60px;
}

.about-values .section-title-text {
    color: var(--cream-100);
}

.about-values .section-subtitle {
    color: var(--brown-200);
}

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

.about-value-card {
    text-align: center;
    padding: 44px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.about-value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-value-card .icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    color: var(--white);
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.about-value-card:hover .icon {
    transform: scale(1.1) rotate(-5deg);
}

.about-value-card h3 {
    color: var(--cream-100);
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.about-value-card p {
    color: var(--brown-200);
    font-size: 0.92rem;
    line-height: 1.7;
}

.team-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.team-member {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-normal) var(--ease-out-expo);
    text-align: center;
    border: 1px solid rgba(42, 24, 16, 0.04);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member-info {
    padding: 24px;
}

.team-member-info h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-member-info span {
    color: var(--accent-dark);
    font-size: 0.88rem;
    font-weight: 500;
}

/* ========== Contact Form Section ========== */
.contact-form-section {
    padding: var(--section-padding) 0;
    background: var(--cream-200);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(42, 24, 16, 0.04);
}

/* ========== Products Page Grid ========== */
.products-page {
    padding: 140px 0 80px;
    background: var(--bg-primary);
    min-height: 100vh;
}

.products-page-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--cream-300);
    background: transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--white);
}

/* ========== Notification ========== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--brown-700);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 9999;
    animation: notifSlideIn 0.4s var(--ease-out-expo);
}

.notification.removing {
    animation: notifSlideOut 0.3s var(--ease-out-expo) forwards;
}

@keyframes notifSlideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes notifSlideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-container,
    .about-container,
    .product-detail-container,
    .about-story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding-top: 100px;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .hero-visual {
        order: -1;
    }

    .hero-image-frame img {
        height: 380px;
    }

    .floating-cards {
        display: none;
    }

    .hero-image-decoration {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

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

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

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

    .about-images {
        order: 2;
    }

    .about-content {
        order: 1;
        text-align: center;
    }

    .about-content .section-tag {
        margin: 0 auto 16px;
    }

    .about-features {
        justify-items: center;
    }

    .about-feature {
        text-align: left;
    }

    .about-content .btn {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 247, 242, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform var(--duration-normal) var(--ease-out-expo);
        z-index: 5;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu .nav-link {
        font-size: 1.3rem;
        font-weight: 600;
    }

    .mobile-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        margin-top: 10px;
        display: none;
        background: transparent;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-title {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
    }

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

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

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

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

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

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .cart-item > *:not(.cart-item-image):not(.cart-item-details) {
        grid-column: 2;
    }

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

    .checkout-form {
        padding: 24px;
    }

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

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

    .footer-bottom-right {
        gap: 16px;
    }

    .footer-newsletter {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 6px;
    }

    .footer-newsletter button {
        width: 100%;
        padding: 14px;
    }

    .cta-input-wrapper {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 8px;
    }

    .cta-input-wrapper .btn-primary {
        width: 100%;
        border-radius: var(--radius-full);
    }

    .product-detail-thumbnails {
        justify-content: center;
    }

    .product-detail-actions {
        flex-direction: column;
    }

    .product-tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .product-tab-btn {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 12px 20px;
    }

    .contact-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

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

    .about-image-small {
        margin-top: 0;
    }

    .cart-actions {
        flex-direction: column;
    }

    .hero-image-frame img {
        height: 300px;
    }

    .products-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ========== Utility Classes ========== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }

/* ========== Selection Color ========== */
::selection {
    background: var(--gold-200);
    color: var(--brown-800);
}

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

/* ========== Scrollbar ========== */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--brown-300);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brown-500);
}

/* ========== Image Load Animation ========== */
img {
    opacity: 1;
    transition: opacity 0.5s ease;
}

img.lazy-loading {
    opacity: 0;
}

img.lazy-loaded {
    opacity: 1;
}
