/* ============================================
   NIJEET PERFUMES — Global Styles
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
    --color-bg: #050508;
    --color-bg-alt: #0a0a12;
    --color-surface: #0f0f18;
    --color-surface-hover: #16162a;
    --color-gold: #c9a84c;
    --color-gold-light: #f4e4a6;
    --color-gold-dark: #8b6914;
    --color-text: #e8e6e3;
    --color-text-muted: #8a8a9a;
    --color-accent: #c9a84c;
    --color-white: #ffffff;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-glow: 0 0 60px rgba(201, 168, 76, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);

    --transition-base: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold-dark) var(--color-bg);
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Particles Background --- */
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.1; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 6px;
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.55rem;
    letter-spacing: 6px;
    color: var(--color-gold);
    opacity: 0.6;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-bg) !important;
    padding: 10px 24px !important;
    border-radius: 30px;
    font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    color: var(--color-bg) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--color-gold);
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
    100% { transform: scale(1.2) translate(-30px, 20px); opacity: 1; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 6px;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 28px;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 400;
    color: var(--color-text);
}

.title-accent {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.btn-secondary:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-bottle-wrapper {
    position: relative;
    width: 320px;
    height: 520px;
    perspective: 1000px;
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-bottle-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(201, 168, 76, 0.2));
    transition: transform var(--transition-smooth);
}

.bottle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.fp {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 5s ease-in-out infinite;
}

.fp1 { top: 20%; left: 10%; animation-delay: 0s; }
.fp2 { top: 60%; left: 85%; animation-delay: 1s; }
.fp3 { top: 80%; left: 20%; animation-delay: 2s; }
.fp4 { top: 30%; left: 90%; animation-delay: 3s; }
.fp5 { top: 50%; left: 50%; animation-delay: 4s; }

@keyframes floatParticle {
    0%, 100% { opacity: 0; transform: translate(0, 0) scale(0); }
    20% { opacity: 0.8; transform: translate(-10px, -20px) scale(1); }
    80% { opacity: 0.2; transform: translate(20px, -40px) scale(0.5); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 30px; }
    50% { opacity: 1; height: 50px; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: var(--color-gold);
    margin-bottom: 16px;
    font-weight: 400;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.2;
}

.section-title .accent {
    font-weight: 700;
    font-style: italic;
    color: var(--color-gold);
}

.section-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.8;
}

/* ============================================
   COLLECTION SECTION
   ============================================ */
.collection {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 15, 24, 0.9), rgba(10, 10, 18, 0.95));
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 24px 28px;
    transition: all var(--transition-smooth);
    transform-style: preserve-3d;
    overflow: hidden;
}

.card-inner:hover {
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: var(--shadow-glow);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.card-inner:hover .card-glow {
    opacity: 1;
}

.product-image {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    transform: translateZ(30px);
}

.product-image svg {
    width: 140px;
    height: auto;
    transition: all var(--transition-smooth);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.card-inner:hover .product-image svg {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(201, 168, 76, 0.2));
}

.product-info {
    text-align: center;
    transform: translateZ(20px);
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.product-notes {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-gold);
}

.btn-add-cart {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.3);
    background: transparent;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-add-cart:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: scale(1.1);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.about-svg {
    width: 100%;
    height: auto;
}

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-gold);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 6px;
    letter-spacing: 1px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 76, 0.02) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(15, 15, 24, 0.7), rgba(10, 10, 18, 0.9));
    border: 1px solid rgba(201, 168, 76, 0.07);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition-smooth);
    transform-style: preserve-3d;
    perspective: 800px;
}

.feature-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.3);
    transform: scale(1.1);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(15, 15, 24, 0.6), rgba(10, 10, 18, 0.8));
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-bg);
}

.author-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--color-text);
}

.author-title {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.contact {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    background: linear-gradient(145deg, rgba(15, 15, 24, 0.8), rgba(10, 10, 18, 0.95));
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-content .section-tag {
    text-align: left;
}

.contact-content .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all var(--transition-base);
}

.newsletter-form input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.newsletter-form input::placeholder {
    color: var(--color-text-muted);
}

.contact-visual {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-bottle {
    animation: heroFloat 4s ease-in-out infinite;
    animation-delay: 1s;
}

.contact-bottle svg {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(201, 168, 76, 0.15));
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .nav-logo {
    align-items: flex-start;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all var(--transition-base);
}

.social-links a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li,
.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.06);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-bottle-wrapper {
        width: 240px;
        height: 400px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 50px 40px;
    }

    .contact-content .section-tag,
    .contact-content .section-title {
        text-align: center;
    }

    .contact-desc {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right var(--transition-smooth);
        border-left: 1px solid rgba(201, 168, 76, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-bottle-wrapper {
        width: 200px;
        height: 340px;
    }

    .title-line {
        font-size: 2.2rem;
    }

    .title-accent {
        font-size: 2.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .card-inner {
        padding: 24px 16px 20px;
    }

    .product-image svg {
        width: 110px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .newsletter-form .btn {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand .nav-logo {
        align-items: center;
    }

    .footer-tagline {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-bottle-wrapper {
        width: 180px;
        height: 300px;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .contact-wrapper {
        padding: 40px 24px;
    }
}
