/* ==========================================================================
   KETOTEA - KETO TEA WHITEHAT LANDING PAGE & ECOSYSTEM (SERBIA / SRPSKI)
   ========================================================================== */

:root {
    --primary-color: #2e7d32;
    --primary-hover: #1b5e20;
    --accent-orange: #e65100;
    --accent-gold: #d97706;
    --bg-cream: #faf8f5;
    --bg-card: #ffffff;
    --text-dark: #111827;
    --text-muted: #4b5563;
    --border-color: #e5e7eb;
    
    /* Form Photo 1 Theme */
    --form-bg-start: #8d3a0c;
    --form-bg-end: #632605;
    --input-bg: #fdecdb;
    --input-border: #e8cbb1;
    --input-text: #4a2810;
    
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ----------------------------------
   Top Notification Banner
   ---------------------------------- */
.top-notice-bar {
    background: linear-gradient(90deg, #1b5e20 0%, #2e7d32 50%, #1b5e20 100%);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 9px 0;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ----------------------------------
   Beautiful Premium Header & Logo
   ---------------------------------- */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

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

/* Premium Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-badge {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2e7d32 0%, #15803d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.brand-name {
    font-size: 1.55rem;
    font-weight: 900;
    color: #14532d;
    letter-spacing: -0.5px;
    line-height: 1.05;
}

.brand-name span {
    color: #d97706;
}

.brand-tagline {
    font-size: 0.72rem;
    color: #4b5563;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

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

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

.nav-link:hover, .nav-link.active {
    color: #166534;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #166534;
    border-radius: 2px;
}

.header-cta-btn {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.45);
}

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

/* ----------------------------------
   Hero Section & Layout
   ---------------------------------- */
.hero-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #f4fbf4 100%);
    padding: 35px 0 50px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.hero-top-badge {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #86efac;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #111827;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-content .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    line-height: 1.4;
}

.hero-description {
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 20px;
}

.hero-features-list {
    list-style: none;
    margin-bottom: 25px;
}

.hero-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.feature-check {
    width: 22px;
    height: 22px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

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

.trust-pill {
    background: #ffffff;
    border: 1px solid #d1d5db;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1b5e20;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

/* ----------------------------------
   Hero Right Column: Product Image & Beautiful Lead Form
   ---------------------------------- */
.hero-media-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.hero-product-image-box {
    text-align: center;
    width: 100%;
}

.hero-single-jar {
    max-height: 220px;
    width: auto;
    filter: drop-shadow(0 14px 22px rgba(0,0,0,0.16));
}

/* Photo 1 Form with Price Display */
.photo1-lead-form-box {
    background: linear-gradient(180deg, var(--form-bg-start) 0%, var(--form-bg-end) 100%);
    border-radius: 16px;
    padding: 22px 20px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 14px 35px rgba(99, 38, 5, 0.35);
    border: 2px solid rgba(255,255,255,0.2);
}

.form-price-badge {
    background: rgba(0, 0, 0, 0.25);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 15px;
    text-align: center;
    color: #ffffff;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.old-price-strike {
    font-size: 1.05rem;
    text-decoration: line-through;
    color: #fca5a5;
    font-weight: 700;
}

.new-price-highlight {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fef08a;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.save-tag {
    background: #dc2626;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 4px;
}

.photo1-form-title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.photo1-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.photo1-input-group {
    width: 100%;
    position: relative;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--input-bg);
    border: 1.5px solid var(--input-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

.phone-prefix-badge {
    background: #ebd2bd;
    color: #4a2810;
    font-weight: 900;
    font-size: 0.95rem;
    padding: 13px 12px;
    user-select: none;
    border-right: 1px solid #d8b69b;
    flex-shrink: 0;
}

.phone-input-wrapper input {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    flex: 1;
}

.phone-input-wrapper:focus-within {
    background-color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}

.photo1-input {
    width: 100%;
    padding: 13px 16px;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--input-text);
    font-weight: 600;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

.photo1-input::placeholder {
    color: #a37f68;
    font-weight: 400;
}

.photo1-input:focus {
    background-color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}

.form-error-msg {
    color: #ffffff;
    background: #dc2626;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 6px;
    text-align: center;
    display: none;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.photo1-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    margin-top: 5px;
}

.photo1-submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #fbbf24 0%, #b45309 100%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* ----------------------------------
   General Page Sections
   ---------------------------------- */
.section {
    padding: 55px 0;
}

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

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

.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

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

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}

.product-info-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
}

.product-info-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.product-info-card p {
    font-size: 0.98rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 18px;
}

.bullets-box {
    background: #f0fdf4;
    border-left: 4px solid var(--primary-color);
    padding: 18px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 22px;
}

.bullets-box h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 10px;
}

.bullets-box ul {
    list-style: none;
}

.bullets-box ul li {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.positive-harmony-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #e6f7ec 100%);
    border: 1px solid #bbf7d0;
    border-left: 5px solid #16a34a;
    padding: 18px;
    border-radius: 8px;
    margin-top: 20px;
}

.positive-harmony-box strong {
    color: #14532d;
    font-size: 0.95rem;
    font-weight: 800;
}

.positive-harmony-box p {
    font-size: 0.9rem;
    color: #166534;
    line-height: 1.6;
    margin-top: 4px;
}

.direct-bundle-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px 0 20px 0;
    border-radius: 8px;
}

.product-spec-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.spec-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.spec-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.spec-row strong {
    font-size: 0.9rem;
    color: #111827;
}

.spec-row p {
    font-size: 0.85rem;
    color: #4b5563;
    margin: 2px 0 0 0;
    line-height: 1.35;
}

/* ----------------------------------
   Certificates Page & Flex Centering (Photo 2 Fix)
   ---------------------------------- */
.cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.cert-card {
    flex: 1 1 300px;
    max-width: 360px;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.cert-card:hover {
    transform: translateY(-4px);
}

.cert-badge-icon {
    width: 64px;
    height: 64px;
    background: #eef7ee;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 1.8rem;
    font-weight: 800;
}

.status-callout {
    background: #ecfdf5;
    border: 1.5px solid #a7f3d0;
    padding: 20px;
    border-radius: 10px;
    margin-top: 35px;
    text-align: center;
    color: #065f46;
    font-weight: 700;
    font-size: 1.05rem;
}

/* ----------------------------------
   Legal Disclaimer Page
   ---------------------------------- */
.legal-content-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content-box h2 {
    font-size: 1.6rem;
    color: #111827;
    margin-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 10px;
}

.legal-content-box p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ----------------------------------
   Footer
   ---------------------------------- */
.site-footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 50px 0 30px 0;
    font-size: 0.9rem;
    border-top: 1px solid #1f2937;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-list a:hover {
    color: #ffffff;
}

.footer-disclaimer-box {
    background-color: #1f2937;
    border-left: 4px solid var(--accent-gold);
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    color: #e5e7eb;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #374151;
    font-size: 0.8rem;
    color: #6b7280;
}

/* ----------------------------------
   Responsive Design
   ---------------------------------- */
@media (max-width: 900px) {
    .hero-grid, .product-detail-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

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

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