/* ===================================
   Linda Hemmerich - Scentsy Beraterin
   Warm, neutral, elegantes Design
   =================================== */

:root {
    --primary: #3D5A40;
    --primary-dark: #2C4230;
    --primary-light: #5A7D5E;
    --secondary: #C4A35A;
    --secondary-light: #E8D5A0;
    --accent: #8B7355;
    --accent-light: #D4C4A8;
    --text-dark: #2A2A2A;
    --text-medium: #5A5A5A;
    --text-light: #8A8A8A;
    --bg-white: #FFFFFF;
    --bg-light: #F8F6F1;
    --bg-warm: #F3EDE3;
    --bg-accent: #EEF2EC;
    --border-light: #E0DBD2;
    --shadow-sm: 0 2px 8px rgba(42, 42, 42, 0.06);
    --shadow-md: 0 4px 20px rgba(42, 42, 42, 0.10);
    --shadow-lg: 0 8px 40px rgba(42, 42, 42, 0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: 0.3s ease;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
}

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

a { text-decoration: none; color: var(--primary); transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.3; color: var(--text-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; margin-bottom: 15px; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }

.section-badge {
    display: inline-block;
    background: var(--bg-accent);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.section-desc { color: var(--text-medium); font-size: 1.05rem; margin-top: 10px; }
.highlight { color: var(--secondary); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}
.btn-accent:hover {
    background: #B3923F;
    border-color: #B3923F;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary);
    border-color: white;
}
.btn-white:hover {
    background: var(--bg-accent);
    border-color: var(--bg-accent);
    transform: translateY(-2px);
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 15px 35px; font-size: 1.05rem; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all var(--transition); }

.header-top {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
}
.header-tagline { font-weight: 400; letter-spacing: 0.3px; }

.header-main {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.header-flex { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 12px; color: var(--text-dark); }
.logo:hover { color: var(--primary); }

.logo-img-wrap {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    overflow: hidden;
}
.logo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-img-wrap-sm { width: 40px; height: 40px; font-size: 1rem; }

.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; line-height: 1.2; }
.logo-subtitle { font-size: 0.75rem; color: var(--text-light); font-weight: 400; }

.nav-list { display: flex; gap: 30px; }
.nav-list a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding: 5px 0;
}
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }
.nav-list a:hover { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 15px; }
.header.scrolled .header-top { display: none; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-toggle span { display: block; width: 25px; height: 2px; background: var(--text-dark); transition: all var(--transition); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a2e1c 0%, #2C4230 25%, #3D5A40 50%, #5A7D5E 80%, #8B7355 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 20% 50%, rgba(196, 163, 90, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(139, 115, 85, 0.15) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: var(--radius-xl);
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    font-family: var(--font-body);
}

.hero h1 { color: white; margin-bottom: 20px; }
.hero h1 .highlight { color: var(--secondary-light); }

.hero-text {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto 35px;
}

.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Trust Bar */
.trust-bar {
    background: var(--bg-warm);
    padding: 25px 0;
    border-bottom: 1px solid var(--border-light);
}
.trust-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
}
.trust-item i { color: var(--primary); font-size: 1.1rem; }

/* About */
.about { background: var(--bg-white); }

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

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 380px;
    background: linear-gradient(135deg, var(--bg-accent), var(--accent-light));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--accent);
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image-placeholder.has-image {
    background: none;
}
.about-image-placeholder i { font-size: 3rem; opacity: 0.4; }
.about-image-placeholder span { font-weight: 500; opacity: 0.6; }

.about-content .section-badge { margin-bottom: 15px; }
.about-content h2 { font-size: 2.4rem; margin-bottom: 20px; }
.about-intro { font-size: 1.15rem; color: var(--primary); font-weight: 500; margin-bottom: 15px; }
.about-content p { margin-bottom: 15px; color: var(--text-medium); }

.about-stats { display: flex; gap: 25px; margin: 25px 0; flex-wrap: wrap; }
.stat { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; color: var(--text-medium); }
.stat i { color: var(--primary); }

/* Order Notice */
.order-notice { background: var(--bg-accent); padding: 20px 0; }
.notice-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: white;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary);
    box-shadow: var(--shadow-sm);
}
.notice-box > i { font-size: 1.5rem; color: var(--secondary); flex-shrink: 0; }
.notice-box p { font-size: 0.95rem; color: var(--text-medium); }
.notice-box strong { color: var(--text-dark); }

/* Categories */
.categories { background: var(--bg-light); }

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.category-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 30px 25px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.category-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--bg-accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all var(--transition);
}
.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.category-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.category-card p { font-size: 0.88rem; color: var(--text-medium); margin-bottom: 15px; line-height: 1.6; }

.category-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.category-link:hover { gap: 8px; }
.category-link i { font-size: 0.7rem; }

/* Products CTA */
.products-cta { margin-top: 20px; }
.cta-box {
    background: white;
    border-radius: var(--radius-md);
    padding: 30px 35px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--accent-light);
}
.cta-box > i { font-size: 2.5rem; color: var(--primary); flex-shrink: 0; }
.cta-box h3 { margin-bottom: 5px; }
.cta-box p { font-size: 0.9rem; color: var(--text-medium); }
.cta-box .btn { flex-shrink: 0; white-space: nowrap; }

/* Product Showcase */
.showcase { background: var(--bg-white); }

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

.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

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

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--accent-light) 50%, var(--bg-warm) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info { padding: 18px; }
.product-info h4 { margin-bottom: 8px; }
.product-info p { font-size: 0.85rem; color: var(--text-medium); margin-bottom: 12px; line-height: 1.5; }

.product-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.product-link:hover { gap: 8px; }
.product-link i { font-size: 0.75rem; transition: transform var(--transition); }
.product-link:hover i { transform: translateX(3px); }

.showcase-hint {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.9rem;
    background: var(--bg-accent);
    padding: 15px 25px;
    border-radius: var(--radius-md);
}
.showcase-hint i { color: var(--primary); margin-right: 5px; }

/* How It Works */
.how-it-works { background: var(--bg-light); }

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

.step-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.step-number {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 32px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    width: 70px; height: 70px;
    background: var(--bg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.step-card h3 { margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.6; }
.step-card a { color: var(--primary); font-weight: 600; }

/* Party CTA */
.party-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.party-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(196,163,90,0.1) 0%, transparent 40%);
}

.party-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
    color: white;
}
.party-icon { font-size: 3rem; margin-bottom: 20px; opacity: 0.9; }
.party-content h2 { color: white; margin-bottom: 15px; }
.party-content p { font-size: 1.05rem; opacity: 0.92; margin-bottom: 30px; line-height: 1.7; }

/* Contact */
.contact { background: var(--bg-light); }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card.highlight-card { border: 2px solid var(--primary); background: var(--bg-accent); }

.contact-icon {
    width: 55px; height: 55px;
    background: var(--bg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: var(--primary);
}
.highlight-card .contact-icon { background: var(--primary); color: white; }

.contact-card h3 { margin-bottom: 8px; }
.contact-card p { font-size: 0.85rem; color: var(--text-medium); margin-bottom: 12px; line-height: 1.5; }
.contact-link { font-weight: 600; font-size: 0.9rem; color: var(--primary); }

/* Contact Form */
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.contact-form-wrapper h3 { text-align: center; font-size: 1.5rem; margin-bottom: 30px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

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

/* Footer */
.footer {
    background: #1C2118;
    color: rgba(255,255,255,0.75);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.footer-logo .logo-name { color: white; font-size: 1.1rem; }
.footer-logo .logo-subtitle { color: rgba(255,255,255,0.5); }
.footer-about p { font-size: 0.88rem; line-height: 1.7; }

.footer-links h4, .footer-contact h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 18px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.footer-links a:hover { color: var(--secondary-light); }

.footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.88rem; }
.footer-contact i { color: var(--secondary-light); width: 16px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--secondary-light); }

.footer-bottom { padding-top: 25px; text-align: center; }
.footer-bottom p { font-size: 0.82rem; margin-bottom: 8px; }
.footer-disclaimer { font-size: 0.75rem !important; opacity: 0.6; max-width: 600px; margin: 0 auto; }

.admin-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    transition: color var(--transition);
}
.admin-link:hover { color: rgba(255,255,255,0.5); }

/* Footer Legal Links */
.footer-legal-links {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-legal-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 600;
    transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--secondary-light); }
.footer-sep { color: rgba(255,255,255,0.3); margin: 0 12px; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(28, 33, 24, 0.97);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.9);
    padding: 18px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(100%); pointer-events: none; }
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cookie-inner p { font-size: 0.85rem; line-height: 1.6; flex: 1; margin: 0; }
.cookie-inner p a { color: var(--secondary-light); text-decoration: underline; }
.cookie-inner .btn { flex-shrink: 0; }

@media (max-width: 640px) {
    .cookie-inner { flex-direction: column; text-align: center; }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 45px; height: 45px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }

/* Responsive */
@media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: white;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right var(--transition);
        z-index: 1001;
        padding: 80px 30px 30px;
    }
    .nav.active { right: 0; }
    .nav-list { flex-direction: column; gap: 0; }
    .nav-list li { border-bottom: 1px solid var(--border-light); }
    .nav-list a { display: block; padding: 15px 0; font-size: 1rem; }
    .mobile-toggle { display: flex; }
    .header-actions .btn { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-image-placeholder { max-width: 250px; margin: 0 auto; aspect-ratio: 1; }
    .about-content h2 { font-size: 1.8rem; }
    .category-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .cta-box { flex-direction: column; text-align: center; }
    .notice-box { flex-direction: column; text-align: center; }
    .steps-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 25px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .trust-items { gap: 20px; }
    .trust-item span { font-size: 0.8rem; }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    .container { padding: 0 15px; }
    .category-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 100px; }
    .about-stats { flex-direction: column; gap: 12px; }
    .trust-items { flex-direction: column; align-items: center; gap: 15px; }
}