/* =========================================
   AURAWELL - PREMIUM WELLNESS LANDING PAGE
   DARK FANTASY CINEMATIC AESTHETIC
   ========================================= */

:root {
    /* Color Palette */
    --color-bg: #0a0b0e;
    /* Deep charcoal/black */
    --color-bg-alt: #12141a;
    /* Misty slate / midnight blue */
    --color-text-main: #e0e2e8;
    /* Soft pale grey */
    --color-text-muted: #a3a8b5;
    /* Muted silver */
    --color-accent: #cfae70;
    /* Desaturated gold */
    --color-accent-glow: rgba(207, 174, 112, 0.4);
    --color-emerald-glow: rgba(43, 117, 85, 0.15);
    /* Faint emerald highlights */
    --color-red-glow: rgba(186, 44, 44, 0.3);

    /* Glassmorphism */
    --glass-bg: rgba(22, 25, 33, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   BASE RESET & TYPOGRAPHY
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px var(--color-accent-glow);
}

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

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* =========================================
   UTILITIES & CONTAINERS
   ========================================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.container.narrow {
    max-width: 800px;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.panel-gloss {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-micro {
    display: inline-block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), #a3844f);
    color: #000 !important;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 15px var(--color-accent-glow);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(207, 174, 112, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    padding: 1rem 2.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 1px solid var(--color-accent);
}

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

.btn-micro {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--color-text-muted);
}

.btn-micro:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* =========================================
   NAVIGATION
   ========================================= */
.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 3px;
    color: #fff;
}

.emblem {
    color: var(--color-accent);
    font-size: 1.5rem;
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 6rem 1.5rem 4rem;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(18, 20, 26, 0.2) 0%, var(--color-bg) 100%),
        url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100%25" height="100%25"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.05"/%3E%3C/svg%3E');
    z-index: 0;
}

.hero-bg-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--color-emerald-glow) 0%, transparent 60%);
    opacity: 0.5;
    animation: drift 20s infinite linear;
    z-index: 1;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(5%, 5%) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.decorative-frame {
    padding: 4rem 2rem;
    position: relative;
}

.ornament {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: 0 auto 2rem;
}

.ornament.bottom {
    margin: 3rem auto 0;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-ctas .micro-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================
   2. INTRO / DISCOVERY SECTION
   ========================================= */
.intro-section {
    padding: 8rem 0;
    position: relative;
    background: var(--color-bg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-accent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.editorial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    text-align: center;
}

.editorial-text p {
    margin-bottom: 1.5rem;
}

/* =========================================
   3. FEATURED PRODUCT SECTION
   ========================================= */
.featured-product-section {
    padding: 6rem 0;
    position: relative;
}

.product-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.glowing-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.packshot-placeholder {
    width: 250px;
    height: 400px;
    background: linear-gradient(to bottom, #1a1d26, #0e1015);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    flex: 1;
    min-width: 320px;
}

.product-info .summary {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 300;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-muted);
}

.feature-list .bullet {
    color: var(--color-accent);
    font-size: 1.2rem;
}

/* =========================================
   4. INGREDIENTS SECTION
   ========================================= */
.formula-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-alt));
    position: relative;
}

.lore-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.lore-card:hover {
    transform: translateY(-10px);
    border-color: rgba(207, 174, 112, 0.3);
}

.lore-card:hover .card-glow {
    opacity: 1;
}

.lore-card .chapter-num {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.lore-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.lore-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.ingredient-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.lore-card:hover .ingredient-img {
    border-color: rgba(207, 174, 112, 0.4);
    transform: scale(1.02);
}

.study-link {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
}

.study-link:hover {
    border-bottom: 1px solid var(--color-accent);
}

/* =========================================
   5. HIGHLIGHTS SECTION
   ========================================= */
.highlights-section {
    padding: 6rem 0;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100%25" height="100%25"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.03"/%3E%3C/svg%3E');
}

.highlight-item {
    text-align: center;
    padding: 2rem;
}

.icon-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--color-accent);
    background: rgba(207, 174, 112, 0.05);
    transition: var(--transition-smooth);
}

.highlight-item:hover .icon-ring {
    border-color: var(--color-accent);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.highlight-item h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
}

/* =========================================
   NEW SECTIONS: PURITY & EXPERIENCES
   ========================================= */
.purity-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #151821 50%, var(--color-bg) 100%);
    position: relative;
    padding: 6rem 0;
}

.purity-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.purity-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(207, 174, 112, 0.4));
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(207, 174, 112, 0.3);
}

.quote-mark {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: serif;
    color: rgba(207, 174, 112, 0.1);
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text-main);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

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

.stars {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.about-us-wrapper {
    background: radial-gradient(circle at center, rgba(16, 20, 31, 0.9) 0%, #0a0b10 100%);
    border-radius: 12px;
    padding: 3rem;
    margin-top: 5rem;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.about-us-wrapper h3 {
    font-family: 'Cinzel', serif;
    color: var(--color-accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-us-wrapper p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.references-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #050608;
}

.references-section h3 {
    font-family: 'Cinzel', serif;
    color: var(--color-text-main);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.references-list {
    list-style: decimal inside;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.references-list li {
    margin-bottom: 0.5rem;
}

.references-list a {
    color: var(--color-accent);
    text-decoration: underline;
    opacity: 0.8;
}

.references-list a:hover {
    opacity: 1;
}

/* =========================================
   6. PRACTICAL USE SECTION
   ========================================= */
.practical-use-section {
    padding: 6rem 0;
    background-image: url('assets/bg_energy_flow.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: multiply;
    background-color: rgba(10, 11, 16, 0.85);
    position: relative;
}

.practical-use-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg) 0%, transparent 20%, transparent 80%, var(--color-bg) 100%);
    pointer-events: none;
}

.ornate-box {
    position: relative;
}

.ornate-box::before,
.ornate-box::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-accent);
}

.ornate-box::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.ornate-box::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.instruction-group {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.instruction-group:last-of-type {
    border-bottom: none;
}

.instruction-group h4 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.instruction-group p {
    color: var(--color-text-muted);
}

.focused-note {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    border-left: 2px solid var(--color-accent);
}

/* =========================================
   7. AVAILABILITY SECTION
   ========================================= */
.availability-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--color-bg), #13161c, var(--color-bg));
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.availability-text {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

/* =========================================
   8. FAQ SECTION
   ========================================= */
.faq-section {
    padding: 6rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 8px;
}

.faq-question {
    font-family: var(--font-body);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 500;
}

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

/* =========================================
   9. DISCLAIMER SECTION
   ========================================= */
.disclaimer-section {
    padding: 4rem 0 8rem;
}

.disclaimer-panel {
    border-color: rgba(255, 60, 60, 0.2);
    background: rgba(20, 10, 10, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.stroke-red {
    box-shadow: 0 0 30px var(--color-red-glow) !important;
}

.disclaimer-title {
    color: #ff6b6b;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.disclaimer-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

/* =========================================
   10. FINAL CTA SECTION
   ========================================= */
.final-cta-section {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.bg-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
    animation: pulse 4s alternate infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-ctas.justify-center {
    flex-direction: row;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .hero-ctas.justify-center {
        flex-direction: column;
    }
}

/* =========================================
   11. FOOTER
   ========================================= */
.site-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #050508;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-note {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.copyright {
    margin-top: 1rem;
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal-up,
.reveal-down {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-down {
    transform: translateY(-40px);
}

.reveal-up.active,
.reveal-down.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 5%;
    right: 5%;
    background: rgba(16, 20, 31, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    color: #ccc;
    font-size: 0.85rem;
    flex: 1;
    margin-right: 2rem;
}

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

.cookie-close {
    background: var(--color-accent);
    color: #000;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }

    .cookie-text {
        margin-right: 0;
    }
}

/* =========================================
   IMAGES & ORDER FORM
   ========================================= */
.product-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.order-text {
    flex: 1;
    min-width: 320px;
}

.order-side-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.order-form-container {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
}

.form-title {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
    font-size: 0.95rem;
    font-weight: 500;
}

.order-form input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.order-form input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 15px var(--color-accent-glow);
    background: rgba(0, 0, 0, 0.6);
}

.full-width {
    width: 100%;
}

.form-secure-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .product-visual {
        height: 350px;
    }

    .packshot-placeholder {
        width: 200px;
        height: 320px;
    }

    .hero-headline {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .panel-gloss {
        padding: 2rem 1.5rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}