/* ==========================================================================
   KETO TEA (50g) — NATURAL ORGANIC TEA PALETTE & HIGH-VISIBILITY FORM
   ========================================================================== */

:root {
    /* Rich Warm Organic Tea Color Palette */
    --tea-green-deep: #163323;
    --tea-green-medium: #275239;
    --tea-green-leaf: #3D7A55;
    --tea-green-light: #EBF4EE;
    --tea-green-glow: rgba(61, 122, 85, 0.35);

    --tea-amber-gold: #C99738;
    --tea-amber-bright: #E5B242;
    --tea-amber-dark: #966F21;
    --tea-amber-light: #FAF3E6;
    --tea-amber-glow: rgba(201, 151, 56, 0.4);

    --tea-cream-bg: #F8F5F0;
    --tea-cream-card: #FFFFFF;
    --tea-cream-alt: #F1ECE3;

    --text-dark: #19261E;
    --text-muted: #54685C;
    --border-light: #E2DBD0;

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-heading);
    background-color: var(--tea-cream-bg);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
}

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

.text-center { text-align: center; }
.yellow { color: var(--tea-amber-gold); }
.purple { color: var(--tea-green-leaf); }
.cyan { color: var(--tea-green-medium); }
.price-highlight { color: var(--tea-amber-gold); font-weight: 800; font-size: 1.35rem; }

/* Top Announcement Bar */
.top-notice-bar {
    background: var(--tea-green-deep);
    color: var(--tea-amber-bright);
    padding: 11px 0;
    font-size: 0.88rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid var(--tea-amber-gold);
}

.top-notice-bar strong {
    color: #FFFFFF;
}

/* Header & Navigation */
.site-header {
    background: var(--tea-cream-card);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo (Replicating exact Product Purple Hexagon & Yellow Icon) */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-hexagon-badge {
    width: 46px;
    height: 46px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 8px var(--tea-amber-glow));
}

.logo-hex-svg {
    width: 100%;
    height: 100%;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--tea-green-deep);
    line-height: 1;
}

.brand-name strong.yellow {
    color: var(--tea-amber-gold);
}

.brand-tagline {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--tea-amber-gold);
    border-bottom-color: var(--tea-amber-gold);
}

.header-cta-btn {
    background: linear-gradient(135deg, var(--tea-amber-gold), var(--tea-amber-dark));
    color: #FFFFFF;
    padding: 11px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--tea-amber-glow);
    transition: var(--transition);
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--tea-amber-glow);
}

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

/* Banner for Subpages */
.page-banner-section {
    padding: 55px 0;
    background: linear-gradient(135deg, var(--tea-green-deep), var(--tea-green-medium));
    color: #FFFFFF;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    margin-bottom: 10px;
    color: var(--tea-amber-bright);
}

.page-breadcrumb {
    font-size: 0.9rem;
    opacity: 0.85;
}

.page-breadcrumb a {
    color: #FFFFFF;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    padding: 65px 0 85px;
    background: linear-gradient(180deg, var(--tea-amber-light) 0%, var(--tea-cream-bg) 100%);
}

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

.hero-top-badge {
    display: inline-block;
    background: var(--tea-green-light);
    border: 1px solid var(--tea-green-leaf);
    color: var(--tea-green-medium);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--tea-green-deep);
}

.hero-title span { color: var(--tea-amber-gold); }

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
}

.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.95rem;
    font-weight: 600;
}

.feature-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--tea-green-leaf);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.trust-badge-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-pill {
    font-size: 0.8rem;
    background: var(--tea-cream-card);
    border: 1px solid var(--border-light);
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--text-muted);
}

/* Hero Showcase Card with Premium Lifestyle Tea Background */
.hero-showcase-card {
    background: radial-gradient(circle at 50% 40%, #FFFFFF 0%, #F5EFE6 65%, #E6DCCD 100%);
    border: 3px solid var(--tea-amber-gold);
    border-radius: var(--radius-lg);
    padding: 40px 30px 30px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(201, 151, 56, 0.25);
    position: relative;
    overflow: hidden;
}

.hero-showcase-card::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(230, 220, 205, 0) 0%, rgba(201, 151, 56, 0.15) 100%);
    pointer-events: none;
}

.hero-product-img-wrap {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}

.hero-single-jar {
    max-height: 360px;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.18));
    transition: transform 0.4s ease;
}

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

.discount-circle-badge {
    position: absolute;
    top: 0; right: 10px;
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--tea-amber-gold);
    color: var(--tea-green-deep);
    font-family: var(--font-heading);
    font-weight: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px var(--tea-amber-glow);
    transform: rotate(10deg);
}

.disc-num { font-size: 1.35rem; line-height: 1; }
.disc-lbl { font-size: 0.65rem; }

.hero-direct-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--tea-green-leaf), var(--tea-green-deep));
    color: #FFFFFF;
    padding: 17px 26px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 10px 25px var(--tea-green-glow);
    margin-bottom: 15px;
    transition: var(--transition);
}

.hero-direct-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px var(--tea-green-glow);
}

.pulse-glow {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(61, 122, 85, 0.7); }
    70% { box-shadow: 0 0 0 16px rgba(61, 122, 85, 0); }
    100% { box-shadow: 0 0 0 0 rgba(61, 122, 85, 0); }
}

.stock-warning-pill {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.section-dark-alt {
    background: var(--tea-green-deep);
    color: #FFFFFF;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
}

.section-title span { color: var(--tea-amber-gold); }

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 8px;
}

.section-dark-alt .section-subtitle {
    color: var(--tea-amber-light);
}

.glass-card {
    background: var(--tea-cream-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.section-dark-alt .glass-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 151, 56, 0.25);
    color: #FFFFFF;
}

/* Product Detail Grid */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.product-info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--tea-green-deep);
}

.section-dark-alt .product-info-card h3 {
    color: var(--tea-amber-bright);
}

.product-info-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.positive-harmony-box {
    background: var(--tea-amber-light);
    border-left: 4px solid var(--tea-amber-gold);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    color: var(--text-dark);
}

.harmony-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--tea-amber-dark);
}

.direct-bundle-img {
    max-height: 300px;
    margin: 0 auto;
}

.bundle-mini-tag {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bullets-box {
    margin-top: 20px;
    background: var(--tea-green-light);
    padding: 20px;
    border-radius: var(--radius-sm);
}

.bullets-box h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.bullets-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
}

.product-spec-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.spec-row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.spec-icon {
    font-size: 1.4rem;
    color: var(--tea-green-leaf);
}

.spec-row strong { font-size: 0.95rem; display: block; }
.spec-row p { font-size: 0.88rem; margin: 0; color: var(--text-muted); }

/* CERTIFICATE SHOWCASE */
.cert-showcase-section {
    padding: 80px 0;
    background: var(--tea-cream-alt);
}

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

.cert-feature-card {
    padding: 30px 20px;
}

.cert-icon-wrapper {
    font-size: 2.2rem;
    color: var(--tea-amber-gold);
    margin-bottom: 15px;
}

.cert-feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.cert-feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.cert-number-badge {
    display: inline-block;
    background: var(--tea-green-deep);
    color: var(--tea-amber-bright);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
}

.official-cert-box {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: var(--tea-cream-card);
    border: 2px solid var(--tea-amber-gold);
}

.official-cert-seal {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--tea-green-deep);
    border: 4px double var(--tea-amber-gold);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px var(--tea-amber-glow);
}

.seal-inner {
    text-align: center;
}

.seal-inner i { font-size: 2rem; color: var(--tea-amber-bright); display: block; margin-bottom: 4px; }
.seal-main-text { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; line-height: 1; display: block; }
.seal-sub-text { font-size: 0.65rem; color: var(--tea-amber-light); font-weight: 700; }

.official-cert-text h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--tea-green-deep);
}

.official-cert-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.cert-meta-tag {
    font-size: 0.8rem;
    background: var(--tea-green-light);
    color: var(--tea-green-deep);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-card h4 {
    font-size: 1.1rem;
    color: var(--tea-amber-bright);
    margin-bottom: 10px;
}

.faq-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* ==========================================================================
   HIGH-VISIBILITY LEAD ORDER FORM SECTION (Placed STRICTLY at the bottom)
   ========================================================================== */
.bottom-lead-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--tea-green-deep) 0%, #0F2519 100%);
    color: #FFFFFF;
    position: relative;
}

.lead-checkout-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 55px 45px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 3px solid var(--tea-amber-gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--tea-amber-glow);
}

.checkout-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--tea-amber-bright);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.checkout-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 35px;
}

.lead-form-simple-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 25px;
}

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

.input-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--tea-amber-bright);
}

.dark-input {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    outline: none;
    transition: var(--transition);
}

.dark-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.dark-input:focus {
    border-color: var(--tea-amber-gold);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 15px var(--tea-amber-glow);
}

/* Phone input validation state styling */
.dark-input.valid-phone {
    border-color: #2ECC71 !important;
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.4) !important;
}

.dark-input.invalid-phone {
    border-color: #E74C3C !important;
    box-shadow: 0 0 12px rgba(231, 76, 60, 0.4) !important;
}

.phone-validation-hint {
    font-size: 0.78rem;
    margin-top: 4px;
    font-weight: 600;
}

.phone-validation-hint.error { color: #FF6B6B; }
.phone-validation-hint.success { color: #2ECC71; }

.main-checkout-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--tea-amber-gold), var(--tea-amber-dark));
    color: #FFFFFF;
    border: 2px solid var(--tea-amber-bright);
    padding: 20px;
    border-radius: 35px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 12px 30px var(--tea-amber-glow);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.main-checkout-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px var(--tea-amber-glow);
    filter: brightness(1.1);
}

.main-checkout-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.security-guarantees-row {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
    gap: 12px;
}

/* Footer */
.site-footer {
    background: #0B1912;
    color: #8DA095;
    padding: 50px 0 25px;
    font-size: 0.85rem;
}

.footer-disclaimer-box {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    line-height: 1.5;
}

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

.footer-col h4 {
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: 15px;
}

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

.footer-links-list a {
    color: #8DA095;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-list a:hover {
    color: var(--tea-amber-bright);
}

.contact-items-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-card-item i {
    font-size: 1.2rem;
    color: var(--tea-amber-bright);
}

.contact-card-item span { display: block; color: #FFFFFF; }
.contact-card-item small { font-size: 0.75rem; color: #8DA095; }

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
}

/* Toast Popup */
.toast-popup {
    position: fixed;
    bottom: 30px; right: 30px;
    background: var(--tea-amber-gold);
    color: #FFFFFF;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 10px 30px var(--tea-amber-glow);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2000;
}

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

/* Responsive Layout */
@media (max-width: 992px) {
    .hero-grid, .product-detail-grid, .cert-card-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    .main-nav { display: none; }
    .mobile-nav-toggle { display: block; }
    .lead-form-simple-grid { grid-template-columns: 1fr; }
    .official-cert-box { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
}
