/* ==========================================================================
   KETOTEA - LUXURY DARK MODE LANDING PAGE & ECOSYSTEM (SERBIA / SRPSKI)
   ========================================================================== */

:root {
    --bg-dark-primary: #090d16;
    --bg-dark-secondary: #0f172a;
    --bg-card: #131b2e;
    --bg-card-hover: #1c273e;
    --bg-input: #172136;
    --border-card: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(16, 185, 129, 0.3);
    
    --primary-emerald: #10b981;
    --primary-emerald-hover: #059669;
    --emerald-light: #34d399;
    --emerald-glow: rgba(16, 185, 129, 0.25);
    
    --accent-gold: #f59e0b;
    --accent-gold-light: #fbbf24;
    --accent-red: #ef4444;
    --accent-red-hover: #dc2626;
    
    --text-white: #f8fafc;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.45);
    --shadow-emerald: 0 8px 30px rgba(16, 185, 129, 0.35);
    --shadow-gold: 0 8px 30px rgba(245, 158, 11, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark-primary);
    background-image: radial-gradient(circle at 50% 0%, #152338 0%, #090d16 80%);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----------------------------------
   Top Notification Banner
   ---------------------------------- */
.top-notice-bar {
    background: linear-gradient(90deg, #064e3b 0%, #047857 50%, #064e3b 100%);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 10px 0;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.4px;
    border-bottom: 1px solid rgba(52, 211, 153, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.top-notice-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.notice-highlight {
    background: #ef4444;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* ----------------------------------
   Header & Brand Logo
   ---------------------------------- */
.site-header {
    background-color: rgba(11, 17, 30, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-card);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo-badge {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px var(--emerald-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.brand-name {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: -0.5px;
    line-height: 1.05;
    text-transform: uppercase;
}

.brand-name span {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--emerald-light);
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 6px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-gold));
    border-radius: 2px;
}

.header-cta-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-emerald);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(16, 185, 129, 0.5);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
    cursor: pointer;
}

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

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

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid var(--border-highlight);
    color: var(--emerald-light);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 25px;
}

.hero-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--text-light);
    font-weight: 600;
}

.feature-check {
    width: 26px;
    height: 26px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--primary-emerald);
    color: var(--emerald-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.trust-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Hero Showcase Card (PHOTO 3 FIX: Price Removed, Large Tea Image, Clean Warning) */
.hero-showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-xl);
    padding: 35px 25px;
    box-shadow: var(--shadow-card), 0 0 40px var(--emerald-glow);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-emerald), var(--accent-gold));
}

.hero-product-img-wrap {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* PHOTO 1 FIX: Larger, proportional Tea Jar Image filling the container height nicely */
.hero-single-jar {
    max-width: 320px;
    width: 85%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
    transition: transform 0.4s ease;
}

.hero-single-jar:hover {
    transform: scale(1.05);
}

.discount-circle-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    width: 82px;
    height: 82px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    border: 2px solid #ffffff;
    transform: rotate(12deg);
    z-index: 2;
}

.discount-circle-badge .disc-num {
    font-size: 1.4rem;
    line-height: 1;
}

.discount-circle-badge .disc-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
}

.hero-direct-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: 40px;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-emerald);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
    margin-top: 10px;
}

.hero-direct-cta-btn:hover {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
}

.stock-warning-pill {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.4;
}

/* ----------------------------------
   General Section Layout & Dark Cards
   ---------------------------------- */
.section {
    padding: 70px 0;
}

.section-dark-alt {
    background-color: rgba(15, 23, 42, 0.6);
    border-top: 1px solid var(--border-card);
    border-bottom: 1px solid var(--border-card);
}

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

.section-title {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-title span {
    color: var(--emerald-light);
}

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

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* PHOTO 1 FIX: Spec Card Frame with Large Proportional Tea Photo */
.bundle-spec-card {
    padding: 30px;
    align-items: center;
    text-align: center;
}

.direct-bundle-img {
    width: 90%;
    max-width: 360px;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

.product-info-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--primary-emerald);
    padding-bottom: 8px;
    display: inline-block;
}

.product-info-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.bullets-box {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 20px;
}

.bullets-box h4 {
    color: var(--accent-gold-light);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.bullets-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bullets-box ul li {
    font-size: 0.94rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.5;
}

.positive-harmony-box {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    padding: 22px;
}

.harmony-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--emerald-light);
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.harmony-header .harmony-icon {
    font-size: 1.3rem;
}

.positive-harmony-box p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.product-spec-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.spec-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: left;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-icon {
    font-size: 1.4rem;
    background: rgba(16, 185, 129, 0.15);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-row strong {
    color: var(--text-white);
    font-size: 0.92rem;
    display: block;
}

.spec-row p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ----------------------------------
   100% Natural & Certificate Showcase
   ---------------------------------- */
.cert-showcase-section {
    background: linear-gradient(180deg, #090d16 0%, #0f172a 100%);
    border-top: 1px solid var(--border-highlight);
    border-bottom: 1px solid var(--border-highlight);
    padding: 70px 0;
}

.cert-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.cert-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 26px;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-feature-card:hover {
    border-color: var(--primary-emerald);
    box-shadow: var(--shadow-emerald);
    transform: translateY(-5px);
}

.cert-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid var(--border-highlight);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px auto;
}

.cert-feature-card h3 {
    font-size: 1.15rem;
    color: var(--text-white);
    font-weight: 800;
    margin-bottom: 10px;
}

.cert-feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cert-number-badge {
    display: inline-block;
    margin-top: 12px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold-light);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 800;
}

/* Official Circular Certificate Seal (Perfect Fit) */
.official-cert-box {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.official-cert-seal {
    width: 140px;
    height: 140px;
    min-width: 140px;
    min-height: 140px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0b111e;
    font-weight: 900;
    text-align: center;
    box-shadow: var(--shadow-gold), 0 0 25px rgba(245, 158, 11, 0.4);
    flex-shrink: 0;
    border: 4px solid #ffffff;
    padding: 12px;
    box-sizing: border-box;
    overflow: hidden;
}

.official-cert-seal .seal-top-text {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #090d16;
    line-height: 1.1;
    margin-bottom: 2px;
}

.official-cert-seal .seal-main-text {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    color: #000000;
    margin: 2px 0;
    letter-spacing: -0.5px;
}

.official-cert-seal .seal-sub-text {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1c273e;
    line-height: 1.1;
}

.official-cert-text h4 {
    font-size: 1.35rem;
    color: var(--text-white);
    font-weight: 800;
    margin-bottom: 10px;
}

.official-cert-text p {
    font-size: 0.94rem;
    color: var(--text-light);
    line-height: 1.65;
}

.cert-meta-tags {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.cert-meta-tag {
    font-size: 0.78rem;
    color: var(--emerald-light);
    background: rgba(16, 185, 129, 0.15);
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 700;
}

/* ----------------------------------
   FAQ SECTION
   ---------------------------------- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px;
}

.faq-card h4 {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-card h4::before {
    content: '❓';
    font-size: 1.1rem;
}

.faq-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ----------------------------------
   MAIN BOTTOM LEAD FORM & CHECKOUT (#narudzbina)
   ---------------------------------- */
.bottom-lead-section {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 50%, #152338 0%, #090d16 100%);
    border-top: 2px solid var(--primary-emerald);
}

.lead-checkout-container {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px var(--emerald-glow);
    overflow: hidden;
}

.checkout-header {
    background: linear-gradient(135deg, #047857 0%, #064e3b 100%);
    padding: 32px;
    text-align: center;
    position: relative;
}

.checkout-header-badge {
    background: var(--accent-gold);
    color: #000000;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.checkout-header h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.checkout-header p {
    font-size: 0.98rem;
    color: #d1fae5;
    margin-top: 6px;
}

.checkout-body {
    padding: 35px 40px;
}

/* Urgency Timer & Stock Bar */
.urgency-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.urgency-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.urgency-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
}

.timer-digits {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-red);
    font-family: monospace;
    letter-spacing: 2px;
}

.stock-counter {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-gold-light);
}

.stock-progress-bg {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
}

.stock-progress-fill {
    height: 100%;
    width: 28%;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* Simple Single Package Highlight */
.single-package-display-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-pkg-info strong {
    color: var(--text-white);
    font-size: 1.15rem;
    display: block;
}

.single-pkg-info span {
    color: var(--emerald-light);
    font-size: 0.88rem;
    font-weight: 700;
}

.single-pkg-price {
    text-align: right;
}

.single-pkg-price del {
    font-size: 0.95rem;
    color: var(--text-dim);
    display: block;
}

.single-pkg-price strong {
    font-size: 1.8rem;
    color: var(--accent-gold-light);
    font-weight: 900;
    line-height: 1;
}

/* Simplified Lead Form Inputs (ONLY NAME & PHONE) */
.lead-form-simple-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.input-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.dark-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.dark-input:focus {
    outline: none;
    border-color: var(--primary-emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    background: #1c2842;
}

.dark-input::placeholder {
    color: var(--text-dim);
}

/* Submit Button */
.main-checkout-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 30px;
    border-radius: 40px;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: var(--shadow-emerald);
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.main-checkout-submit-btn:hover {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.security-guarantees-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.security-badge-item {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

/* Success Confirmation Box */
.success-checkout-box {
    display: none;
    text-align: center;
    padding: 30px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--primary-emerald);
    border-radius: var(--radius-lg);
}

.success-checkout-box .check-icon {
    font-size: 3.5rem;
    color: var(--emerald-light);
    margin-bottom: 10px;
}

.success-checkout-box h3 {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 8px;
}

.success-checkout-box p {
    font-size: 1.05rem;
    color: var(--text-light);
}

/* ----------------------------------
   Global Footer (PHOTO 4 FIX: Separate Windows for Every Contact Item)
   ---------------------------------- */
.site-footer {
    background-color: #060a12;
    border-top: 1px solid var(--border-card);
    padding: 60px 0 30px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-disclaimer-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    margin-bottom: 40px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-dim);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 18px;
    border-left: 3px solid var(--primary-emerald);
    padding-left: 10px;
}

.footer-col p {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-muted);
}

.footer-col strong {
    color: var(--text-light);
}

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

.footer-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
}

.footer-links-list a:hover {
    color: var(--emerald-light);
}

/* PHOTO 4 FIX: Individual Separate Dark Window Boxes for Each Contact Detail */
.contact-items-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-card-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.contact-card-item:hover {
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
}

.contact-card-item .contact-icon {
    font-size: 1.2rem;
    background: rgba(16, 185, 129, 0.15);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-item .contact-text {
    display: flex;
    flex-direction: column;
}

.contact-card-item .contact-text span {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
}

.contact-card-item .contact-text small {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* ----------------------------------
   Live Purchase Toast Notification
   ---------------------------------- */
.purchase-toast {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: rgba(19, 27, 46, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-highlight);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 340px;
}

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

.toast-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-info h5 {
    font-size: 0.88rem;
    color: var(--text-white);
    font-weight: 800;
    margin-bottom: 2px;
}

.toast-info p {
    font-size: 0.78rem;
    color: var(--emerald-light);
    margin-bottom: 0;
}

.toast-time {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 2px;
}

/* ----------------------------------
   Responsive Media Queries
   ---------------------------------- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .cert-card-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0b111e;
        border-bottom: 1px solid var(--border-card);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .header-cta-btn {
        display: none;
    }

    .checkout-body {
        padding: 24px;
    }

    .official-cert-box {
        flex-direction: column;
        text-align: center;
    }

    .official-cert-seal {
        margin: 0 auto;
    }

    .purchase-toast {
        left: 15px;
        right: 15px;
        max-width: none;
    }
}
