@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Tajawal:wght@400;500;700;800&family=Cinzel:wght@700&display=swap');

:root {
    /* Luxury Botanical Turmeric Gold & Deep Sage Palette */
    --gold-primary: #D49A24;
    --gold-light: #F4D38A;
    --gold-dark: #A87514;
    --gold-glow: rgba(212, 154, 36, 0.25);
    
    --sage-deep: #162920;
    --sage-dark: #1F382C;
    --sage-medium: #2B4D3D;
    
    --bg-main: #FDFBF7;
    --bg-card: #FFFFFF;
    --bg-soft: #F6F2EB;
    --bg-amber-soft: #FFF9EE;
    
    --text-main: #1C2321;
    --text-muted: #5A6460;
    --text-light: #89948F;
    
    --border-color: #E8E2D8;
    --border-gold: rgba(212, 154, 36, 0.35);
    
    --shadow-sm: 0 4px 12px rgba(22, 41, 32, 0.05);
    --shadow-md: 0 10px 30px rgba(22, 41, 32, 0.08);
    --shadow-lg: 0 20px 50px rgba(22, 41, 32, 0.12);
    --shadow-gold: 0 12px 35px rgba(212, 154, 36, 0.28);
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
}

.brand-en {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.05em;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--sage-deep) 0%, var(--sage-medium) 50%, var(--sage-deep) 100%);
    color: #FFFFFF;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 10px 16px;
    text-align: center;
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.announcement-badge {
    background: var(--gold-primary);
    color: #FFF;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 800;
    animation: pulse 2s infinite;
}

.announcement-timer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    color: var(--gold-light);
}

/* Sticky Header */
.header {
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 90;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px var(--gold-glow);
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--sage-deep);
    letter-spacing: 0.08em;
}

.brand-logo-img {
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.logo-tag {
    font-size: 0.75rem;
    color: var(--gold-dark);
    font-weight: 700;
    display: block;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold-dark);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1rem;
    padding: 12px 26px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 38px rgba(212, 154, 36, 0.4);
}

.btn-pulse {
    animation: ctaPulse 2.5s infinite;
}

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

/* Hero Section */
.hero {
    padding: 40px 0 70px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.1fr;
    gap: 48px;
    align-items: start;
}

/* Image Showcase & Placeholders */
.gallery-wrapper {
    position: sticky;
    top: 90px;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #FFFDF8, #F3EBDD);
    color: var(--sage-deep);
    padding: 30px;
    text-align: center;
    position: relative;
}

.placeholder-icon {
    width: 72px;
    height: 72px;
    background: var(--gold-glow);
    border: 2px dashed var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.placeholder-title {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--sage-deep);
    margin-bottom: 6px;
}

.placeholder-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 310px;
    margin-bottom: 14px;
}

.placeholder-filename {
    background: var(--sage-deep);
    color: #FFF;
    font-family: monospace;
    font-size: 0.8rem;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    direction: ltr;
}

.gallery-badges {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.badge-item {
    background: rgba(22, 41, 32, 0.88);
    backdrop-filter: blur(8px);
    color: #FFF;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.thumb-card {
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.thumb-card:hover, .thumb-card.active {
    border-color: var(--gold-primary);
    box-shadow: 0 4px 12px var(--gold-glow);
    transform: translateY(-2px);
}

.thumb-img {
    width: 100%;
    height: 72%;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 4px;
}

.thumb-icon {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.thumb-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
}

#main-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

#main-gallery-img:hover {
    transform: scale(1.04);
}

/* Product Info & Order Column */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-amber-soft);
    border: 1px solid var(--border-gold);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    width: fit-content;
}

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

.rating-text {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--sage-deep);
}

.product-title {
    font-size: 2.3rem;
    color: var(--sage-deep);
    line-height: 1.3;
}

.product-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Feature Highlights Bar */
.quick-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.benefit-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-amber-soft);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--sage-deep);
    line-height: 1.3;
}

/* Pack Selection Offers */
.pack-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pack-section-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--sage-deep);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-tag {
    background: #E53E3E;
    color: #FFF;
    font-size: 0.78rem;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 800;
}

.pack-card {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    background: var(--bg-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.pack-card:hover {
    border-color: var(--gold-primary);
}

.pack-card.selected {
    border-color: var(--gold-primary);
    background: var(--bg-amber-soft);
    box-shadow: 0 6px 20px var(--gold-glow);
}

.pack-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #E53E3E, #C53030);
    color: #FFF;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 2px 14px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 6px rgba(229, 62, 62, 0.4);
}

.pack-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pack-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #C4CBD0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.pack-card.selected .pack-radio {
    border-color: var(--gold-primary);
    background: var(--gold-primary);
}

.pack-card.selected .pack-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #FFF;
    border-radius: 50%;
}

.pack-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--sage-deep);
}

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

.pack-price {
    text-align: left;
}

.price-current {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--sage-deep);
}

.price-old {
    font-size: 0.88rem;
    color: #A0AEC0;
    text-decoration: line-through;
}

.shipping-status {
    font-size: 0.8rem;
    font-weight: 800;
    color: #2F855A;
}

/* COD Express Form Card */
.order-form-card {
    background: #FFFFFF;
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.order-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
}

.form-header {
    text-align: center;
    margin-bottom: 22px;
}

.form-title {
    font-size: 1.5rem;
    color: var(--sage-deep);
    font-weight: 800;
    margin-bottom: 4px;
}

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

.form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--sage-deep);
    margin-bottom: 6px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    right: 14px;
    color: var(--text-light);
    font-size: 1.2rem;
    pointer-events: none;
}

.form-input, .form-select {
    width: 100%;
    padding: 14px 44px 14px 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    background: #FAFAFA;
    transition: var(--transition);
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px var(--gold-glow);
}

/* Order Summary Box */
.order-summary {
    background: var(--bg-amber-soft);
    border: 1px dashed var(--gold-dark);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin: 20px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.summary-row.total {
    border-top: 1px solid var(--border-gold);
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--sage-deep);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 18px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(212, 154, 36, 0.45);
}

.trust-badges-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
    text-align: center;
}

.trust-item {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-item-icon {
    font-size: 1.35rem;
}

/* Sections General */
.section {
    padding: 80px 0;
}

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

.section-tag {
    display: inline-block;
    background: var(--gold-glow);
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.3rem;
    color: var(--sage-deep);
    margin-bottom: 14px;
}

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

/* Benefits & Ingredients Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card-feature {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-primary);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--bg-amber-soft);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.3rem;
    color: var(--sage-deep);
    margin-bottom: 10px;
}

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

/* Vertical TikTok Video Showcase Section */
.video-showcase-card {
    max-width: 360px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    border: 3px solid var(--border-gold);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    background: #000;
}

.product-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 640px;
    object-fit: cover;
}

/* Clinical / Before & After Section */
.results-section {
    background: var(--sage-deep);
    color: #FFFFFF;
}

.results-section .section-title {
    color: #FFFFFF;
}

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

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
}

.result-image-box {
    aspect-ratio: 4 / 3;
    background: #111F18;
    position: relative;
}

.result-body {
    padding: 22px;
}

.result-timeframe {
    background: var(--gold-primary);
    color: #FFF;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 10px;
}

.result-headline {
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

/* How To Use Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #FFF;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px var(--gold-glow);
}

/* Customer Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--sage-deep);
    font-size: 1.2rem;
    overflow: hidden;
    border: 2px solid var(--gold-primary);
    flex-shrink: 0;
    position: relative;
}

.review-avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 800;
    color: var(--sage-deep);
    font-size: 1.05rem;
}

.reviewer-city {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.verified-badge {
    color: #2F855A;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-text {
    font-size: 0.98rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--sage-deep);
}

.faq-toggle {
    font-size: 1.4rem;
    color: var(--gold-dark);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 300px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Sticky Mobile Bottom Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    padding: 12px 20px;
    z-index: 95;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.sticky-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
}

.sticky-price-info {
    display: flex;
    flex-direction: column;
}

.sticky-pack-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
}

.sticky-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--sage-deep);
}

/* Modal Confirmation */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 41, 32, 0.75);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    max-width: 540px;
    width: 100%;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition);
    position: relative;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--bg-amber-soft);
    border: 3px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    animation: bounce 1s infinite alternate;
}

.modal-title {
    font-size: 1.9rem;
    color: var(--sage-deep);
    margin-bottom: 10px;
}

.modal-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.modal-order-summary {
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: right;
    margin-bottom: 24px;
}

/* Footer */
.footer {
    background: var(--sage-deep);
    color: #FFFFFF;
    padding: 60px 0 30px;
    border-top: 4px solid var(--gold-primary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
}

.footer-copy {
    text-align: center;
    padding-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Keyframe Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

@keyframes ctaPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 154, 36, 0.6); }
    70% { box-shadow: 0 0 0 16px rgba(212, 154, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 154, 36, 0); }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .gallery-wrapper {
        position: static;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid, .steps-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px 16px;
    }
    
    .nav-links {
        display: none;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .quick-benefits {
        grid-template-columns: 1fr;
    }
    
    .mobile-sticky-bar {
        display: block;
    }
    
    .order-form-card {
        padding: 20px 16px;
    }
    
    .section {
        padding: 50px 0;
    }
}

/* Live COD Order Purchase Toast (Bottom-Right / Bottom-Left Popup) */
.live-toast {
    position: fixed;
    bottom: 86px;
    right: 24px;
    z-index: 9999;
    background: rgba(22, 41, 32, 0.95);
    backdrop-filter: blur(12px);
    border: 2px solid var(--gold-primary);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
    max-width: 360px;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
    direction: rtl;
}

.live-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.7rem;
    background: rgba(212, 154, 36, 0.22);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--gold-light);
}

.toast-content {
    flex-grow: 1;
}

.toast-text {
    font-size: 0.84rem;
    color: #E2E8F0;
    line-height: 1.4;
}

.toast-text strong {
    color: var(--gold-light);
    font-weight: 800;
}

.toast-product {
    font-weight: 800;
    font-size: 0.92rem;
    color: #FFFFFF;
    margin: 3px 0;
}

.toast-time {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.7);
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
    cursor: pointer;
    align-self: flex-start;
    padding: 0 4px;
}

.toast-close:hover {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .live-toast {
        bottom: 78px;
        right: 14px;
        left: 14px;
        max-width: none;
    }
}
