/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Variables for Luxury Theme */
:root {
    --primary-dark: #09090b;       /* Obsidian Black */
    --secondary-dark: #1c1917;     /* Warm Charcoal */
    --accent-gold: #c5a880;        /* Soft Champagne Gold */
    --accent-gold-hover: #b3956b;  /* Darker Gold */
    --text-light: #fafaf9;         /* Off-white */
    --text-dark: #1c1917;          /* Charcoal text */
    --text-muted: #78716c;         /* Stone Muted Gray */
    --bg-light: #fdfbf7;           /* Warm Alabaster Cream */
    --bg-card-light: #ffffff;      /* Pure white card */
    --border-light: #e7e5e4;       /* Subtle warm border */
    
    /* Problem / Solution Colors */
    --danger-bg: #fef2f2;
    --danger-border: #fee2e2;
    --danger-text: #991b1b;
    --success-bg: #f0fdf4;
    --success-border: #dcfce7;
    --success-text: #166534;
    --success-accent: #10b981;
}

/* Reset and Core Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-dark);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
    color: var(--text-light);
    font-size: 13px;
    text-align: center;
    padding: 8px 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.top-banner span {
    color: var(--accent-gold);
    font-weight: 700;
}

/* Navigation Bar */
header {
    background-color: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-icon {
    font-size: 28px;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}

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

.btn-nav {
    background-color: var(--accent-gold);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
}

.btn-nav:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    overflow: hidden;
}

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

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    background-color: rgba(197, 168, 128, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: #a37f50;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    color: var(--text-light);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(197, 168, 128, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(197, 168, 128, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-dark);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--primary-dark);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-3px);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-card {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    max-width: 450px;
    width: 100%;
}

.hero-img-card img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Problem vs Solution Section */
.problem-solution {
    padding: 80px 0;
    background-color: rgba(253, 251, 247, 0.5);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.comp-card {
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.comp-card.problem {
    background-color: var(--danger-bg);
    border: 1px solid var(--danger-border);
}

.comp-card.solution {
    background-color: var(--success-bg);
    border: 1px solid var(--success-border);
}

.comp-title {
    font-size: 22px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.comp-card.problem .comp-title {
    color: var(--danger-text);
}

.comp-card.solution .comp-title {
    color: var(--success-text);
}

.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comp-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
}

.comp-card.problem .comp-list li {
    color: #7f1d1d;
}

.comp-card.solution .comp-list li {
    color: #064e3b;
}

.comp-list li span.icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comp-list li strong {
    font-weight: 700;
}

/* Varian Aroma Section */
.variants-section {
    padding: 80px 0;
}

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

.variant-card {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.variant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-gold);
}

.variant-image-wrapper {
    background-color: #f5f3f0;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 48px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
}

.variant-card:nth-child(1) .variant-image-wrapper { background: radial-gradient(circle, #e0f2fe, #bae6fd); } /* Savage */
.variant-card:nth-child(2) .variant-image-wrapper { background: radial-gradient(circle, #fef3c7, #fde68a); } /* Vanilla */
.variant-card:nth-child(3) .variant-image-wrapper { background: radial-gradient(circle, #fee2e2, #fecaca); } /* Baccarat */
.variant-card:nth-child(4) .variant-image-wrapper { background: radial-gradient(circle, #f0fdf4, #dcfce7); } /* Jasmine */

.variant-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.variant-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.variant-tag {
    background-color: #f5f3f0;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.btn-card {
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background-color: var(--accent-gold);
    color: var(--text-light);
}

/* Variants Filter & Sizes */
.variants-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.01);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.25);
}

.variant-sizes {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.size-badge {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background-color: rgba(253, 251, 247, 0.5);
}

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

.step-card {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.step-num {
    background-color: var(--accent-gold);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 8px rgba(197, 168, 128, 0.3);
}

.step-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.step-title {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.step-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* Steps Call to Action button */
.steps-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.pricing-left {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-pill {
    background-color: rgba(197, 168, 128, 0.1);
    color: #a37f50;
    border: 1px solid rgba(197, 168, 128, 0.2);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 20px;
}

.pricing-left h3 {
    font-size: 24px;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    gap: 12px;
    font-size: 15px;
}

.benefits-list li span.tick {
    color: var(--success-accent);
    font-weight: 700;
    font-size: 18px;
}

.benefits-list li strong {
    color: var(--primary-dark);
}

.pricing-left-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

/* Right Side - Active Promo Card */
.promo-card {
    background-color: var(--bg-card-light);
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.ribbon {
    background-color: #ef4444;
    color: white;
    font-weight: 800;
    font-size: 11px;
    padding: 6px 36px;
    position: absolute;
    top: 20px;
    right: -32px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.promo-tag {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.timer-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.timer-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    background-color: #faf9f6;
    border: 1px dashed var(--accent-gold);
    padding: 12px 24px;
    border-radius: 10px;
}

.time-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-num {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 20px;
    font-weight: 700;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
}

.time-colon {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.price-container {
    margin-bottom: 24px;
}

.price-normal {
    font-size: 15px;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price-promo {
    font-size: 36px;
    font-weight: 800;
    color: var(--success-accent);
}

.price-promo span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.stock-container {
    width: 100%;
    margin-bottom: 24px;
}

.stock-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.stock-bar {
    background-color: #e7e5e4;
    height: 8px;
    border-radius: 50px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.stock-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--success-accent));
    border-radius: 50px;
    transition: width 1s ease-in-out;
}

.stock-alert {
    font-size: 12px;
    font-weight: 700;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    color: var(--text-light);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.35);
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.5);
}

.promo-note {
    font-size: 12px;
    color: var(--text-muted);
}



/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: rgba(253, 251, 247, 0.5);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-title-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-icon-box {
    background-color: #f5f3f0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
}

.faq-arrow {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer {
    padding: 0 24px 20px 76px;
    font-size: 15px;
    color: var(--text-muted);
}

/* Active FAQ Item Styling */
.faq-item.active {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.1);
}

.faq-item.active .faq-icon-box {
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--accent-gold);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

.faq-item.active .faq-content {
    max-height: 200px; /* Large enough to display answer */
}

/* Bottom CTA / Urgency Section */
.bottom-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #fefaf3, #f5efe4);
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.bottom-cta h2 {
    font-size: 40px;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.3;
}

.bottom-cta p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 36px auto;
}

/* Footer Section */
footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0 20px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
}

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

.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    font-size: 28px;
    color: var(--accent-gold);
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Floating WhatsApp Button */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
}

.btn-whatsapp-float {
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse-green 2s infinite;
}

.btn-whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Social Proof Popup Toaster (FOMO) */
.fomo-toaster {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 98;
    max-width: 320px;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fomo-toaster.show {
    transform: translateY(0);
    opacity: 1;
}

.fomo-icon {
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--accent-gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.fomo-content {
    font-size: 12px;
    color: var(--text-dark);
}

.fomo-title {
    font-weight: 700;
    margin-bottom: 2px;
}

.fomo-desc {
    color: var(--text-muted);
    margin-bottom: 4px;
}

.fomo-meta {
    font-size: 11px;
    color: var(--success-accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Checkout Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

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

.modal-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.show .modal-card {
    transform: scale(1);
}

.modal-header {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background-color: white;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.price-summary {
    background-color: #faf9f6;
    border: 1px solid var(--border-light);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.summary-row:last-child {
    margin-bottom: 0;
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
    font-weight: 700;
    color: var(--primary-dark);
}

.btn-submit-order {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background-color: #25d366;
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.btn-submit-order:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Education Section */
.education-section {
    padding: 80px 0;
    background-color: rgba(253, 251, 247, 0.5); /* Alabaster Cream */
    border-bottom: 1px solid var(--border-light);
}

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

.edu-card {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    position: relative;
}

.edu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(197, 168, 128, 0.15);
    border-color: var(--accent-gold);
}

/* Highlight the Luxury tier */
.edu-card.featured {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 8px 24px rgba(197, 168, 128, 0.1);
}

.edu-card.featured::after {
    content: "PILIHAN TERFAVORIT";
    position: absolute;
    top: -12px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    color: var(--text-light);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(197, 168, 128, 0.3);
}

.edu-icon-wrapper {
    background-color: #faf9f6;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--accent-gold);
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.02);
}

.edu-card.featured .edu-icon-wrapper {
    background: radial-gradient(circle, #fdfbf7, rgba(197, 168, 128, 0.2));
    border-color: var(--accent-gold);
    color: var(--accent-gold-hover);
}

.edu-title {
    font-size: 22px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.edu-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-gold-hover);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.edu-badge-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
}

.edu-badge-item {
    font-size: 13px;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.edu-badge-item span.label {
    color: var(--text-muted);
}

.edu-badge-item span.value {
    font-weight: 700;
}

.edu-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.edu-best-for {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    background-color: #faf9f6;
    border: 1px solid var(--border-light);
    padding: 6px 16px;
    border-radius: 50px;
    width: 100%;
    margin-top: auto;
}

.edu-card.featured .edu-best-for {
    background-color: rgba(197, 168, 128, 0.05);
    border-color: rgba(197, 168, 128, 0.3);
    color: var(--accent-gold-hover);
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .edu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none; /* simple hidden navigation for mobile */
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .bottom-cta h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .fomo-toaster {
        left: 12px;
        right: 12px;
        max-width: none;
    }
}

/* Outlets / Lokasi Toko Section */
.outlets-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.outlets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.outlet-card {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outlet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.1);
    border-color: var(--accent-gold);
}

.outlet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.outlet-city {
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--accent-gold-hover);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.outlet-status {
    background-color: var(--success-bg);
    color: var(--success-text);
    border: 1px solid var(--success-border);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.outlet-name {
    font-size: 20px;
    margin-bottom: 12px;
}

.outlet-info-row {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    align-items: flex-start;
}

.outlet-info-row i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.btn-outlet {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-outlet:hover {
    background-color: var(--accent-gold);
}

/* Custom Brand Logo Styles */
.logo-img {
    height: 48px !important;
    width: auto !important;
    display: block;
    mix-blend-mode: multiply;
}

.footer-logo-img {
    height: 40px !important;
    width: auto !important;
    display: block;
    filter: invert(1) grayscale(1) brightness(2);
    mix-blend-mode: screen;
    opacity: 0.9;
}
