/* =========================================
   TENSANORM - PREMIUM LIGHT THEME
   ELEVATED BOTANICAL WELLNESS AESTHETIC
   ========================================= */

:root {
    /* Color Palette */
    --color-bg: #f8fafc; /* Soft pure light background */
    --color-bg-alt: #ffffff; /* Crisp white */
    --color-text-main: #1e293b; /* Deep refined navy/charcoal */
    --color-text-muted: #64748b; /* Soft slate string */
    --color-accent: #0f766e; /* Deep therapeutic teal/emerald */
    --color-accent-glow: rgba(15, 118, 110, 0.15);
    --color-accent-light: #14b8a6;
    --color-emerald-glow: rgba(20, 184, 166, 0.1);
    --color-gold: #b48600; /* Sophisticated subtle gold for highlights */
    --color-red-glow: rgba(220, 38, 38, 0.1);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 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.7;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-main);
}

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

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

.text-center { text-align: center; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-2 { margin-top: 0.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(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}
.panel-gloss:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* BUTTONS */
.btn-primary, .btn-secondary, .btn-micro {
    display: inline-block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: #ffffff !important;
    padding: 1.2rem 3rem;
    border: none;
    box-shadow: 0 8px 20px var(--color-accent-glow);
}

.btn-primary:hover {
    box-shadow: 0 12px 25px rgba(15, 118, 110, 0.3);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    padding: 1.2rem 3rem;
    border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-bg);
    color: var(--color-accent-light);
    border-color: var(--color-accent-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-micro {
    font-size: 0.75rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--color-text-main);
    background: rgba(255,255,255,0.8);
}

.btn-micro:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ADVERTORIAL BAR */
.advertorial-bar {
    background: #f1f5f9;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* =========================================
   NAVIGATION
   ========================================= */
.top-nav {
    position: absolute;
    top: 35px;
    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.4rem;
    letter-spacing: 3px;
    color: var(--color-text-main);
}

.emblem {
    color: var(--color-gold);
    font-size: 1.6rem;
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 8rem 1.5rem 5rem;
    background: var(--color-bg-alt);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(20, 184, 166, 0.05) 0%, transparent 70%),
                radial-gradient(circle at bottom right, rgba(180, 134, 0, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.hero-bg-overlay::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--color-emerald-glow) 0%, transparent 50%);
    animation: floating-light 25s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes floating-light {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.2); }
}

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

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

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

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

.discount-badge {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--color-accent);
    background: rgba(15, 118, 110, 0.1);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin-bottom: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-text-main);
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
}

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

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

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

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

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

/* =========================================
   3. FEATURED PRODUCT SECTION
   ========================================= */
.featured-product-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-alt));
}

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

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

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

.product-info .summary {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

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

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

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

/* =========================================
   4. PURITY SECTION
   ========================================= */
.purity-section {
    background: var(--color-bg-alt);
    position: relative;
    padding: 8rem 0;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

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

.purity-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.cards-grid .panel-gloss {
    padding: 2.5rem 1.5rem;
    text-align: center;
}
.cards-grid .panel-gloss h4 {
    margin-top: 1rem;
    color: var(--color-text-main);
    font-weight: 600;
    font-family: var(--font-body);
}

.about-us-wrapper {
    background: var(--color-bg);
    border-radius: 16px;
    padding: 4rem;
    margin-top: 5rem;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--glass-shadow);
    text-align: center;
}

.about-us-wrapper h3 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

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

/* =========================================
   5. INGREDIENTS SECTION (CHAPTERS)
   ========================================= */
.formula-section {
    padding: 8rem 0;
    background: var(--color-bg);
    position: relative;
}

.lore-card {
    position: relative;
    background: var(--color-bg-alt);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.lore-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.lore-card .chapter-num {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

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

.ingredient-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.lore-card:hover .ingredient-img {
    transform: scale(1.03);
}

.study-link {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* =========================================
   6. HIGHLIGHTS SECTION
   ========================================= */
.highlights-section {
    padding: 8rem 0;
    background: var(--color-bg-alt);
}

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

.icon-ring {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(15, 118, 110, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: var(--color-accent);
    background: rgba(15, 118, 110, 0.03);
    transition: var(--transition-smooth);
}

.highlight-item:hover .icon-ring {
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 20px var(--color-accent-glow);
}

.highlight-item h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-main);
    letter-spacing: 0.5px;
}

/* =========================================
   7. PRACTICAL USE SECTION
   ========================================= */
.practical-use-section {
    padding: 8rem 0;
    position: relative;
    background: var(--color-bg);
}

.ornate-box {
    position: relative;
    padding: 4rem;
}

.ornate-box::before, .ornate-box::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    opacity: 0.3;
}

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

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

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

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

.instruction-group h4 {
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

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

.focused-note {
    background: rgba(15, 118, 110, 0.04);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--color-accent);
    color: var(--color-text-main);
}

/* =========================================
   8. TESTIMONIALS SECTION
   ========================================= */
.experiences-section {
    position: relative;
}
.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: 12px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.quote-mark {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    font-family: serif;
    color: rgba(0,0,0,0.03);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    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: var(--color-text-main);
    font-size: 1rem;
    font-weight: 600;
}

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

.stars {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

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

/* =========================================
   10. FAQ SECTION
   ========================================= */
.faq-section {
    padding: 8rem 0;
    background: var(--color-bg);
}

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

.faq-item {
    background: var(--color-bg-alt);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.faq-question {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
    font-weight: 600;
}

.faq-answer {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =========================================
   SCIENTIFIC REFERENCES
   ========================================= */
.references-section {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.references-section h3 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.references-list a {
    color: var(--color-accent);
    font-weight: 500;
    margin-left: 0.5rem;
}

/* =========================================
   11. DISCLAIMER SECTION
   ========================================= */
.disclaimer-section {
    padding: 4rem 0 8rem;
    background: var(--color-bg);
}

.disclaimer-panel {
    border-color: rgba(220, 38, 38, 0.2);
    background: rgba(220, 38, 38, 0.02);
    border: 1px solid rgba(220, 38, 38, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.stroke-red {
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.05);
}

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

.disclaimer-text p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* =========================================
   12. FINAL CTA SECTION
   ========================================= */
.final-cta-section {
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-alt);
}

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

@keyframes pulse {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.section-title.massive {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

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

/* =========================================
   13. FOOTER
   ========================================= */
.site-footer {
    padding: 5rem 0 3rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #f1f5f9;
    text-align: center;
}

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

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

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

.footer-note {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.copyright {
    margin-top: 1rem;
}

/* =========================================
   PAGES SPECIFIC (CHECKOUT)
   ========================================= */
.product-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

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

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

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

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

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

.order-form input {
    width: 100%;
    padding: 1.2rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    color: var(--color-text-main);
    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 0 4px rgba(15, 118, 110, 0.1);
}

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

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

.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; }

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

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

.cookie-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    flex: 1;
    margin-right: 2rem;
}

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

.cookie-close {
    background: var(--color-text-main);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.cookie-close:hover {
    background: var(--color-accent);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column;
        text-align: center;
    }
    .product-visual { height: 400px; }
    .hero-headline { font-size: 3rem; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .hero-ctas.justify-center { flex-direction: column; }
}
@media (max-width: 600px) {
    .panel-gloss { padding: 2rem 1.5rem; }
    .hero-headline { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    .cookie-text { margin-right: 0; }
}