/* ==========================================================================
   Limited Charm - LOSSLESS Šampon Landing Page CSS (Purple Luxury Theme)
   Color Palette:
   - Primary Royal Violet: #7C3AED / #6D28D9 / #5B21B6
   - Backgrounds: #FAF5FF (Soft lavender cream), #F3E8FF, #1E1B4B (Footer dark)
   - Accent Gold: #D97706 / #F59E0B
   - Text Colors: #1E1B4B (Headings), #4C1D95 (Muted), #374151 (Body)
   ========================================================================== */

:root {
    --bg-hero: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 45%, #E9D5FF 100%);
    --bg-body-1: #FAF5FF;
    --bg-body-2: #F5F3FF;
    --bg-card: #FFFFFF;
    
    --primary-violet: #7C3AED;
    --primary-violet-hover: #6D28D9;
    --violet-glow: rgba(124, 58, 237, 0.35);
    
    --accent-gold: #D97706;
    --accent-gold-light: #FEF3C7;
    
    --text-heading: #1E1B4B;
    --text-body: #374151;
    --text-muted: #6B7280;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 4px 6px -1px rgba(124, 58, 237, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(124, 58, 237, 0.1);
    --shadow-lg: 0 20px 35px -10px rgba(124, 58, 237, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-heading);
    font-family: var(--font-heading);
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Promo Strip */
.promo-strip {
    background: linear-gradient(90deg, #5B21B6 0%, #7C3AED 50%, #6D28D9 100%);
    color: #FFFFFF;
    padding: 10px 0;
    font-size: 0.875rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
    margin-top: 76px;
}

.promo-strip-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}

.promo-badge {
    background: #F59E0B;
    color: #1E1B4B;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
}

.promo-strip-link {
    color: #FDE047;
    text-decoration: underline;
    font-weight: 700;
}

/* Buttons (PURPLE / VIOLET LUXURY) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    color: #FFFFFF;
    box-shadow: 0 10px 20px -5px var(--violet-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6D28D9 0%, #4C1D95 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 25px -4px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-heading);
    border-color: rgba(124, 58, 237, 0.2);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    border-color: var(--primary-violet);
    color: var(--primary-violet);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    color: #FFFFFF;
    box-shadow: 0 12px 24px -6px var(--violet-glow);
    margin-top: 12px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -4px rgba(124, 58, 237, 0.6);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 245, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.12);
    padding: 14px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--primary-violet);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-heading);
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-violet);
}

.nav-btn {
    background: var(--primary-violet);
    color: #FFFFFF !important;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.nav-btn:hover {
    background: var(--primary-violet-hover);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-heading);
    transition: 0.3s;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 70px 0 90px 0;
    background: var(--bg-hero);
    overflow: hidden;
}

.hero-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: -50px;
    right: 5%;
    background: rgba(192, 132, 252, 0.35);
}

.orb-2 {
    width: 450px;
    height: 450px;
    bottom: -100px;
    left: -50px;
    background: rgba(124, 58, 237, 0.2);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-violet);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-heading);
}

.hero-description {
    font-size: 1.125rem;
    color: #4C1D95;
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.7;
}

.product-highlights {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.15);
    margin-bottom: 36px;
    width: fit-content;
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.hl-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-violet);
}

.hl-price-old {
    font-size: 0.875rem;
    text-decoration: line-through;
    color: #9CA3AF;
}

.hl-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.highlight-divider {
    width: 1px;
    height: 36px;
    background: rgba(124, 58, 237, 0.15);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* HERO BOTTLE COMPOSITE ON SMOOTH SHINY HAIR BACKGROUND */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.product-card-hero {
    position: relative;
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hero-full-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--radius-lg) - 3px);
    transition: transform 0.4s ease;
}

.product-card-hero:hover .hero-full-photo {
    transform: scale(1.03);
}

/* Smooth Hair Backdrop */
.hair-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hair-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
}

.hair-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.25) 0%, rgba(30, 27, 75, 0.6) 100%);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F59E0B;
    color: #1E1B4B;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 800;
    z-index: 2;
}

.hero-bottle-img {
    position: relative;
    z-index: 2;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-hero:hover .hero-bottle-img {
    transform: translateY(-8px) scale(1.03);
}

.visual-tag {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    color: var(--text-heading);
}

.tag-top {
    top: 12%;
    left: -15px;
}

.tag-bottom {
    bottom: 10%;
    right: -15px;
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-body-2);
}

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

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-violet);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(124, 58, 237, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.3);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: #F3E8FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-body);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* CERTIFICATES SECTION */
.certificates-section {
    padding: 80px 0;
    background: #FFFFFF;
}

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

.cert-card {
    background: var(--bg-body-1);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    border: 1px dashed var(--primary-violet);
}

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.cert-card h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.cert-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* INGREDIENTS & RITUAL */
.ingredients-section {
    padding: 100px 0;
    background: var(--bg-body-1);
}

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

.ingredients-image-wrapper {
    position: relative;
}

.showcase-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.img-main {
    width: 85%;
}

.img-sub {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    border: 4px solid #FFFFFF;
}

.ingredients-lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.ingredient-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ing-bullet {
    width: 40px;
    height: 40px;
    background: #F3E8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ingredient-item h4 {
    font-size: 1.0625rem;
    margin-bottom: 4px;
}

.ingredient-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.natural-guarantee-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #F3E8FF;
    border: 1px solid #DDD6FE;
    border-radius: var(--radius-md);
}

.guarantee-icon {
    font-size: 2rem;
}

.natural-guarantee-box strong {
    color: var(--primary-violet);
    display: block;
}

.natural-guarantee-box p {
    font-size: 0.875rem;
    color: #4C1D95;
    margin-top: 2px;
}

/* ORDER SECTION (SIMPLIFIED FORM: NAME & PHONE ONLY) */
.order-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F5F3FF 0%, #EDE9FE 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.15);
}

.order-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.order-product-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
}

.order-img-frame {
    width: 110px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAF5FF;
    border-radius: var(--radius-sm);
    padding: 8px;
}

.order-bottle-img {
    max-height: 100%;
    object-fit: contain;
}

.order-product-details h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.prod-subtitle {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-violet);
    margin-bottom: 12px;
}

.order-specs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.875rem;
    text-decoration: line-through;
    color: #9CA3AF;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-violet);
}

.price-note {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.delivery-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.perk-item {
    display: flex;
    gap: 14px;
    background: rgba(255, 255, 255, 0.8);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.perk-icon {
    font-size: 1.5rem;
}

.perk-item strong {
    font-size: 0.9375rem;
    color: var(--text-heading);
}

.perk-item p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Order Form Card */
.form-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(124, 58, 237, 0.2);
    position: relative;
}

.form-promo-badge {
    position: absolute;
    top: -16px;
    right: 30px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.8125rem;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.purchase-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-heading);
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-sm);
    background-color: #FAFAFA;
    transition: all 0.2s ease;
}

.form-group input.invalid {
    border-color: #EF4444 !important;
    background-color: #FEF2F2 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
    animation: shake 0.4s ease-in-out;
}

.error-msg {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #DC2626;
    margin-top: 4px;
    display: none;
}

.error-msg.visible {
    display: block;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.fixed-spec-box {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    background: #F3E8FF;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    color: var(--text-heading);
}

.fixed-spec-box strong {
    color: var(--primary-violet);
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.inline-link-btn {
    background: none;
    border: none;
    color: var(--primary-violet);
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
}

/* ==========================================================================
   FOOTER (MATCHING USER SCREENSHOT EXACTLY)
   ========================================================================== */
.footer {
    background: #0F172A; /* Dark navy-black as in screenshot */
    color: #94A3B8;
    padding: 60px 0 40px 0;
    font-size: 0.875rem;
}

/* Yellow border disclaimer box */
.disclaimer-box {
    background: #1E293B;
    border-left: 4px solid #F59E0B; /* Yellow border highlight */
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-bottom: 48px;
}

.disclaimer-box p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #CBD5E1;
    margin: 0;
}

.disclaimer-box strong {
    color: #FFFFFF;
}

/* Footer Columns */
.footer-columns {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.125rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 20px;
}

.company-name {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
}

.company-meta {
    font-size: 0.8125rem;
    color: #94A3B8;
    margin-bottom: 6px;
}

.company-address {
    font-size: 0.8125rem;
    color: #94A3B8;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a {
    color: #94A3B8;
    transition: color 0.2s ease;
}

.footer-nav-list a:hover {
    color: #FFFFFF;
}

.contact-line {
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.contact-line strong {
    color: #FFFFFF;
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    color: #64748B;
    font-size: 0.8125rem;
    margin: 0;
}

.policy-pill-btn {
    background: #1E293B;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.policy-pill-btn:hover {
    background: #334155;
    border-color: #FFFFFF;
}

/* THANK YOU PAGE STYLING */
.thankyou-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-hero);
    padding: 40px 20px;
}

.thankyou-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    max-width: 560px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(124, 58, 237, 0.2);
}

.thankyou-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.thankyou-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.thankyou-desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.thankyou-info-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    background: #FAF5FF;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 36px;
}

.info-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--primary-violet);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.info-step p {
    font-size: 0.9375rem;
    margin: 0;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 650px;
    padding: 36px;
    position: relative;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.modal-body-scroll {
    overflow-y: auto;
    padding-right: 12px;
    margin-bottom: 24px;
}

.modal-body-scroll h4 {
    font-size: 1.0625rem;
    color: var(--primary-violet);
    margin: 16px 0 8px 0;
}

.modal-body-scroll h4:first-child {
    margin-top: 0;
}

.modal-body-scroll p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-grid, .ingredients-grid, .order-wrapper, .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-grid {
        text-align: center;
    }
    
    .hero-description, .product-highlights, .hero-actions {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .nav-menu.active {
        clip-path: circle(150% at 100% 0);
    }
    
    .tag-top, .tag-bottom {
        display: none;
    }

    .form-card {
        padding: 24px;
    }
    
    .order-product-card {
        flex-direction: column;
        text-align: center;
    }
}
