/*
Theme Name: 2Sleek Custom
Theme URI: https://2sleekcarcare.com
Author: 2Sleek Car Care Products LLC
Author URI: https://2sleekcarcare.com
Description: A premium luxury WordPress theme for 2Sleek Car Care Products LLC. Features a black and gold color scheme with high-end automotive aesthetic.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 2sleek-custom
Tags: black, gold, luxury, automotive, car-care, e-commerce, custom-menu, featured-images
*/

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

:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #141414;
    --black-border: #1a1a1a;
    --gold: #C8A961;
    --gold-light: #d4bc7c;
    --gold-dark: #a88b3d;
    --gold-gradient: linear-gradient(135deg, #C8A961 0%, #e0c97a 50%, #C8A961 100%);
    --gold-glow: 0 0 20px rgba(200, 169, 97, 0.3);
    --gold-glow-strong: 0 0 40px rgba(200, 169, 97, 0.5);
    --white: #ffffff;
    --white-muted: #cccccc;
    --white-dim: #999999;
    --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

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

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

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

a:hover {
    color: var(--gold-light);
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: 2px;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: 3px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: 2px; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: 1px; }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    color: var(--white-muted);
    font-size: 1rem;
    line-height: 1.85;
    font-weight: 300;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* ============================================================
   ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 5px rgba(200, 169, 97, 0.2); }
    50% { box-shadow: 0 0 25px rgba(200, 169, 97, 0.4); }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(200, 169, 97, 0.3);
    }
    50% {
        border-color: rgba(200, 169, 97, 0.8);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Scroll-triggered animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   HEADER & NAVIGATION - CENTERED LOGO DESIGN
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    padding: 8px 0;
    background: rgba(10, 10, 10, 0.9);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(200, 169, 97, 0.15);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- Left & Right Nav ---- */
.nav-left,
.nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-end;
    padding-right: 40px;
}

.nav-right {
    justify-content: flex-start;
    padding-left: 40px;
}

.nav-left .nav-menu,
.nav-right .nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-left .nav-menu li a,
.nav-right .nav-menu li a {
    display: inline-block;
    padding: 10px 20px;
    color: var(--white-muted);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    position: relative;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-left .nav-menu li a::after,
.nav-right .nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.nav-left .nav-menu li a:hover::after,
.nav-right .nav-menu li a:hover::after,
.nav-left .nav-menu li.current-menu-item a::after,
.nav-right .nav-menu li.current-menu-item a::after,
.nav-left .nav-menu li.current_page_item a::after,
.nav-right .nav-menu li.current_page_item a::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-left .nav-menu li a:hover,
.nav-right .nav-menu li a:hover {
    color: var(--white);
}

.nav-left .nav-menu li.current-menu-item a,
.nav-right .nav-menu li.current-menu-item a,
.nav-left .nav-menu li.current_page_item a,
.nav-right .nav-menu li.current_page_item a {
    color: var(--gold);
}

/* ---- Centered Logo ---- */
.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    position: relative;
    grid-column: 2;
}

.site-logo .logo-glow {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 97, 0.15) 0%, transparent 70%);
    filter: blur(10px);
    transition: var(--transition);
    pointer-events: none;
    animation: pulse-gold 4s ease-in-out infinite;
}

.site-header.scrolled .site-logo .logo-glow {
    width: 60px;
    height: 60px;
    opacity: 0.5;
}

.site-logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 15px rgba(200, 169, 97, 0.25));
    position: relative;
    z-index: 2;
    mix-blend-mode: lighten;
    border-radius: 50%;
}

.site-logo:hover img {
    filter: drop-shadow(0 0 25px rgba(200, 169, 97, 0.45));
    transform: scale(1.05);
}

.site-header.scrolled .site-logo img {
    height: 50px;
}

/* ---- Buy Now CTA Button in Nav ---- */
.nav-menu li.nav-cta a {
    background: var(--gold-gradient);
    background-size: 200% 200%;
    color: var(--black) !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 28px;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.nav-menu li.nav-cta a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.nav-menu li.nav-cta a:hover::before {
    left: 100%;
}

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

.nav-menu li.nav-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(200, 169, 97, 0.4);
    color: var(--black) !important;
}

/* ---- Gold Line Separator Under Header ---- */
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-header.scrolled::after {
    width: 100%;
}

/* ---- Mobile Hamburger ---- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background: rgba(200, 169, 97, 0.05);
    border: 1px solid rgba(200, 169, 97, 0.3);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 10001;
    position: relative;
    transition: var(--transition);
    grid-column: 3;
    justify-self: end;
}

.menu-toggle:hover {
    border-color: var(--gold);
    background: rgba(200, 169, 97, 0.1);
}

.menu-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
    position: absolute;
}

.menu-toggle .bar:nth-child(1) { transform: translateY(-7px); }
.menu-toggle .bar:nth-child(2) { transform: translateY(0); }
.menu-toggle .bar:nth-child(3) { transform: translateY(7px); }

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

/* ---- Mobile Navigation Overlay ---- */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.97);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s ease;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mobile-nav-overlay.open {
    display: flex;
    opacity: 1;
}

/* ---- Mobile Nav Close Button ---- */
.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid rgba(200, 169, 97, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gold);
    padding: 0;
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.mobile-nav-close span {
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: -4px;
}

.mobile-nav-close:hover {
    border-color: var(--gold);
    background: rgba(200, 169, 97, 0.1);
    transform: rotate(90deg);
}

.mobile-nav-close:hover svg {
    stroke: var(--white);
}

.mobile-nav-overlay .mobile-menu {
    text-align: center;
}

.mobile-nav-overlay .mobile-menu li {
    margin: 16px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.mobile-nav-overlay.open .mobile-menu li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-overlay.open .mobile-menu li:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-overlay.open .mobile-menu li:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-overlay.open .mobile-menu li:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-overlay.open .mobile-menu li:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav-overlay.open .mobile-menu li:nth-child(6) { animation-delay: 0.35s; }

.mobile-nav-overlay .mobile-menu li a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white-muted);
    letter-spacing: 6px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    padding: 10px 0;
    font-weight: 400;
}

.mobile-nav-overlay .mobile-menu li a:hover,
.mobile-nav-overlay .mobile-menu li.current-menu-item a,
.mobile-nav-overlay .mobile-menu li.current_page_item a {
    color: var(--gold);
    letter-spacing: 6px;
}

.mobile-nav-overlay .mobile-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 1px;
    background: var(--gold);
    transition: transform 0.4s ease;
}

.mobile-nav-overlay .mobile-menu li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile CTA Button */
.mobile-nav-overlay .mobile-menu li.mobile-cta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(200, 169, 97, 0.15);
}

.mobile-nav-overlay .mobile-menu li.mobile-cta a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 16px 50px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold-gradient);
    background-size: 200% 200%;
    color: var(--black);
    box-shadow: 0 4px 20px rgba(200, 169, 97, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(200, 169, 97, 0.5);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: var(--black);
}

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

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

.btn-lg {
    padding: 20px 56px;
    font-size: 1rem;
    letter-spacing: 3px;
}

/* Button shimmer effect */
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.6s;
}

.btn-gold:hover::before {
    left: 100%;
}

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

.section-header .section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding: 10px 28px;
    border: 1px solid rgba(200, 169, 97, 0.3);
    border-radius: 50px;
    background: rgba(200, 169, 97, 0.05);
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header h2 span {
    color: var(--gold);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 20px auto;
    border-radius: 3px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 169, 97, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 169, 97, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(200, 169, 97, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 2;
}

/* Particle canvas */
#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 100px 24px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    padding: 10px 28px;
    border: 1px solid rgba(200, 169, 97, 0.4);
    border-radius: 50px;
    background: rgba(200, 169, 97, 0.08);
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.4s both;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-content h1 .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--white-muted);
    max-width: 650px;
    margin: 0 auto 45px;
    animation: fadeInUp 1s ease 0.6s both;
    line-height: 1.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s ease 1.5s both;
}

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

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: float 2s ease-in-out infinite;
}

/* ============================================================
   FEATURES / ABOUT SECTION
   ============================================================ */
.features-section {
    background: var(--black);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 97, 0.3), transparent);
}

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

.feature-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 169, 97, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(200, 169, 97, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--gold-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(200, 169, 97, 0.08);
    border: 1px solid rgba(200, 169, 97, 0.2);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(200, 169, 97, 0.15);
    border-color: rgba(200, 169, 97, 0.5);
    box-shadow: 0 0 30px rgba(200, 169, 97, 0.2);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--white-dim);
    line-height: 1.7;
}

/* ============================================================
   FEATURED PRODUCTS SECTION
   ============================================================ */
.products-section {
    background: var(--black-light);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 97, 0.2), transparent);
}

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

.product-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.product-card:hover::after {
    border-color: rgba(200, 169, 97, 0.5);
    box-shadow: inset 0 0 30px rgba(200, 169, 97, 0.05), var(--gold-glow);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #080808;
}

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

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

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 2;
}

.product-info {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.product-card:hover .product-info h3 {
    color: var(--gold-light);
}

.product-info .product-desc {
    font-size: 0.9rem;
    color: var(--white-dim);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--black-border);
    margin-top: auto;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.product-bottom .btn {
    padding: 10px 24px;
    font-size: 0.75rem;
}

/* Star ratings */
.star-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.star-rating svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 97, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.testimonial-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(200, 169, 97, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-card .testimonial-text {
    font-size: 1rem;
    color: var(--white-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(200, 169, 97, 0.15);
    border: 2px solid rgba(200, 169, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.author-info h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--white-dim);
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--black-light);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(200, 169, 97, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(200, 169, 97, 0.06) 0%, transparent 50%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    padding: 80px 40px;
    border: 1px solid rgba(200, 169, 97, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(20, 20, 20, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.cta-inner h2 {
    margin-bottom: 20px;
}

.cta-inner h2 span {
    color: var(--gold);
}

.cta-inner p {
    font-size: 1.1rem;
    margin-bottom: 36px;
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.shop-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(200, 169, 97, 0.08) 0%, transparent 60%);
}

.shop-header h1 {
    animation: fadeInUp 0.8s ease both;
}

.shop-header h1 span {
    color: var(--gold);
}

.shop-header p {
    max-width: 600px;
    margin: 16px auto 0;
    font-size: 1.1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Filter Bar */
.filter-bar {
    background: var(--black-card);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.filter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 20px;
    border: 1px solid var(--black-border);
    border-radius: 50px;
    background: transparent;
    color: var(--white-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 169, 97, 0.08);
}

.filter-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-sort label {
    font-size: 0.8rem;
    color: var(--white-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-sort select {
    background: var(--black);
    border: 1px solid var(--black-border);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.filter-sort select:hover,
.filter-sort select:focus {
    border-color: var(--gold);
    outline: none;
}

.product-count {
    font-size: 0.85rem;
    color: var(--white-dim);
}

.product-count strong {
    color: var(--gold);
}

/* Shop Products Grid */
.shop-products {
    padding: 80px 0 120px;
    background: var(--black);
}

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

.shop-product-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.shop-product-card:hover {
    border-color: rgba(200, 169, 97, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), var(--gold-glow);
}

/* Shop Product Image Gallery */
.shop-product-gallery {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #080808;
}

.shop-product-gallery .gallery-main {
    width: 100%;
    height: 100%;
}

.shop-product-gallery .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.shop-product-card:hover .gallery-main img {
    transform: scale(1.05);
}

.gallery-thumbnails {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
    opacity: 0;
    transition: var(--transition);
}

.shop-product-card:hover .gallery-thumbnails {
    opacity: 1;
}

.gallery-thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    background: var(--black);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--gold);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Quick View Overlay */
.quick-view-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 4;
}

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

.quick-view-btn {
    padding: 12px 28px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transform: translateY(20px);
    transition: var(--transition);
}

.shop-product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: var(--gold-light);
    box-shadow: var(--gold-glow);
}

/* Shop Product Info */
.shop-product-info {
    padding: 32px 28px;
}

.shop-product-info .product-category {
    margin-bottom: 10px;
}

.shop-product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.shop-product-card:hover .shop-product-info h3 {
    color: var(--gold);
}

.shop-product-info .product-short-desc {
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.7;
    margin-bottom: 20px;
}

.shop-product-features {
    margin-bottom: 24px;
}

.shop-product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--white-muted);
}

.shop-product-features li svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    flex-shrink: 0;
}

.shop-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--black-border);
}

.shop-price-block {
    display: flex;
    flex-direction: column;
}

.shop-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.shop-price-note {
    font-size: 0.75rem;
    color: var(--white-dim);
    margin-top: 2px;
}

.shop-product-bottom .btn {
    padding: 12px 28px;
    font-size: 0.8rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--black);
    border-top: 1px solid rgba(200, 169, 97, 0.15);
    position: relative;
}

.footer-main {
    padding: 80px 0 40px;
}

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

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .footer-logo img {
    height: 45px;
    width: auto;
}

.footer-brand .footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.footer-brand .footer-logo span em {
    color: var(--gold);
    font-style: normal;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 320px;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--black-border);
    border-radius: 50%;
    color: var(--white-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 169, 97, 0.1);
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

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

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--white-dim);
    transition: var(--transition);
}

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

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--white-dim);
}

.footer-bottom p a {
    color: var(--gold);
}

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

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--white-dim);
}

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

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1200px) {
    .features-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

/* ============================================================
   RESPONSIVE - TABLET (max 1200px)
   ============================================================ */
@media (max-width: 1200px) {
    .nav-left .nav-menu li a,
    .nav-right .nav-menu li a {
        padding: 10px 14px;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .nav-left {
        padding-right: 24px;
    }

    .nav-right {
        padding-left: 24px;
    }

    .header-inner {
        padding: 0 24px;
    }

    .site-logo img {
        height: 60px;
    }

    .site-header.scrolled .site-logo img {
        height: 45px;
    }
}

/* ============================================================
   RESPONSIVE - TABLET SMALL (max 992px)
   ============================================================ */
@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
        padding: 0 20px;
    }

    .site-logo {
        grid-column: auto;
        justify-self: start;
    }

    .menu-toggle {
        display: flex;
        grid-column: auto;
        justify-self: end;
    }

    .site-logo img {
        height: 50px;
    }

    .site-header.scrolled .site-logo img {
        height: 40px;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

    .hero-content .hero-subtitle {
        font-size: 1rem;
    }

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

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

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

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

    .filter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

/* ============================================================
   RESPONSIVE - MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* Header */
    .site-header {
        padding: 12px 0;
    }

    .site-header.scrolled {
        padding: 8px 0;
    }

    .site-logo img {
        height: 56px;
    }

    .site-header.scrolled .site-logo img {
        height: 44px;
    }

    .site-logo .logo-glow {
        width: 65px;
        height: 65px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .menu-toggle .bar {
        width: 20px;
    }

    /* Mobile nav close */
    .mobile-nav-close {
        top: 20px;
        right: 18px;
        width: 54px;
        height: 54px;
    }

    /* Mobile nav */
    .mobile-nav-overlay .mobile-menu li a {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }

    .mobile-nav-overlay .mobile-menu li {
        margin: 12px 0;
    }

    .mobile-nav-overlay .mobile-menu li.mobile-cta a {
        font-size: 0.8rem;
        padding: 14px 40px;
    }

    /* Hero */
    .hero-section {
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
        letter-spacing: 2px;
        line-height: 1.2;
    }

    .hero-content .hero-subtitle {
        font-size: 0.92rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 2px;
        padding: 8px 16px;
        margin-bottom: 24px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 14px 32px;
        font-size: 0.8rem;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-header .section-tag {
        font-size: 0.65rem;
        letter-spacing: 3px;
        padding: 6px 18px;
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .section-divider {
        width: 50px;
        margin: 14px auto;
    }

    /* Grids - single column on mobile */
    .features-grid,
    .products-grid,
    .testimonials-grid,
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Feature cards */
    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    /* Product cards */
    .product-image {
        height: 220px;
    }

    .product-info {
        padding: 20px 16px;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

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

    /* Testimonial cards */
    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* CTA section */
    .cta-inner {
        padding: 40px 20px;
        border-radius: var(--radius);
    }

    .cta-inner h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .cta-inner p {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer {
        padding: 50px 0 20px;
    }

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

    .footer-bottom-links {
        justify-content: center;
    }

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

    /* Shop page */
    .shop-header {
        padding: 120px 0 50px;
    }

    .shop-header h1 {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .filter-bar {
        margin-bottom: 30px;
    }

    .filter-tabs {
        overflow-x: auto;
        padding-bottom: 8px;
        width: 100%;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .filter-tab {
        white-space: nowrap;
        font-size: 0.7rem;
        padding: 8px 14px;
    }

    .shop-product-gallery {
        height: 250px;
    }

    .shop-product-info {
        padding: 20px 16px;
    }

    .shop-product-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .shop-product-bottom .btn {
        width: 100%;
        text-align: center;
    }

    /* Buttons */
    .btn {
        padding: 14px 32px;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .btn-lg {
        padding: 14px 36px;
        font-size: 0.85rem;
    }

    .btn-sm {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    section {
        padding: 40px 0;
    }

    /* Header */
    .site-logo img {
        height: 48px;
    }

    .site-header.scrolled .site-logo img {
        height: 38px;
    }

    .site-logo .logo-glow {
        width: 56px;
        height: 56px;
    }

    .mobile-nav-close {
        top: 16px;
        right: 14px;
        width: 48px;
        height: 48px;
    }

    .mobile-nav-close svg {
        width: 20px;
        height: 20px;
    }

    /* Hero */
    .hero-content h1 {
        font-size: clamp(2rem, 9.5vw, 3rem);
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .hero-content .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 0.55rem;
        padding: 6px 14px;
        letter-spacing: 1.5px;
    }

    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.75rem;
    }

    /* Cards */
    .feature-card {
        padding: 24px 16px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 16px 14px;
    }

    .testimonial-card {
        padding: 20px 16px;
    }

    /* CTA */
    .cta-inner {
        padding: 30px 16px;
    }

    /* Shop */
    .shop-header {
        padding: 110px 0 40px;
    }

    .shop-product-gallery {
        height: 220px;
    }

    .shop-product-info {
        padding: 16px 14px;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }

    /* Mobile nav smaller text */
    .mobile-nav-overlay .mobile-menu li a {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .mobile-nav-overlay .mobile-menu li {
        margin: 10px 0;
    }
}

/* ============================================================
   RESPONSIVE - VERY SMALL (max 360px)
   ============================================================ */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .hero-content .hero-subtitle {
        font-size: 0.8rem;
    }

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

    .site-header.scrolled .site-logo img {
        height: 34px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.7rem;
    }

    .product-info h3 {
        font-size: 1rem;
    }

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

    .mobile-nav-overlay .mobile-menu li a {
        font-size: 1rem;
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
