/**
 * Novofertil Modern Design System & Component Library
 * Vanilla CSS - Mobile First, High Performance, Zero Bloat
 */

:root {
    --primary: #4a154b;
    --primary-light: #6a1b6d;
    --primary-dark: #2e0830;
    --secondary: #8e24aa;
    --secondary-light: #ab47bc;
    --accent: #d81b60;
    --accent-hover: #c2185b;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --border-radius-sm: 8px;
    --border-radius-md: 14px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.1), 0 10px 15px -5px rgba(0, 0, 0, 0.05);
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
    min-height: 100vh;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-page);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

main#primary,
.site-main {
    flex: 1 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
    transition: var(--transition);
}

a:focus, button:focus {
    outline: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #0f172a;
    font-weight: 700;
    line-height: 1.25;
}

.novo-container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

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

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.novo-topbar {
    background: linear-gradient(90deg, #2e0830 0%, #4a154b 50%, #6a1b6d 100%);
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
}

.novo-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.novo-topbar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.novo-topbar-badge {
    background: #f59e0b;
    color: #000000;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.novo-topbar-socials {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.novo-topbar-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    border-radius: 50%;
    transition: all 0.2s ease;
    text-decoration: none;
}

.novo-topbar-social-link:hover {
    background: #ffffff;
    color: #4a154b !important;
    transform: translateY(-1px);
}

.novo-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.novo-divider {
    opacity: 0.4;
}

.novo-topbar-wa {
    color: #a7f3d0;
}

.novo-topbar-wa:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .novo-topbar-right {
        display: none;
    }
    .novo-topbar {
        text-align: center;
        font-size: 12px;
    }
    .novo-topbar-inner {
        justify-content: center;
    }
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.novo-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.novo-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.novo-brand {
    display: inline-flex;
    align-items: center;
    max-width: 210px;
}

.novo-logo-img {
    max-height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.novo-nav-desktop {
    display: flex;
    align-items: center;
}

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

.novo-nav-link {
    font-weight: 600;
    font-size: 15px;
    color: #334155;
    position: relative;
    padding: 6px 0;
    outline: none !important;
}

.novo-nav-link:focus,
.novo-nav-link:focus-visible {
    outline: none !important;
    color: var(--primary);
}

.novo-nav-link:hover {
    color: var(--primary);
}

.novo-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.novo-nav-link:hover::after {
    width: 100%;
}

.novo-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.novo-btn-wa-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: var(--transition);
}

.novo-btn-wa-header:hover {
    background: #1eb956;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.novo-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #334155;
    background: #f1f5f9;
    transition: var(--transition);
}

.novo-action-btn:hover {
    background: #e2e8f0;
    color: var(--primary);
}

.novo-cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.novo-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 40px;
    padding: 10px;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.novo-hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #334155;
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 991px) {
    .novo-nav-desktop, .novo-wa-text {
        display: none;
    }
    .novo-menu-toggle {
        display: flex;
    }
}

/* ==========================================================================
   Mobile Drawer
   ========================================================================== */
.novo-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.novo-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.novo-mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 1100;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.novo-mobile-drawer.active {
    right: 0;
}

.novo-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
}

.novo-drawer-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #64748b;
}

.novo-drawer-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.novo-mobile-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.novo-mobile-nav li a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 8px;
}

.novo-mobile-nav li a:hover {
    background: #edf7ed;
    color: var(--primary);
}

.novo-btn-wa-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
}

.novo-drawer-phone {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.novo-hero-section {
    position: relative;
    padding: 60px 0 70px;
    background: radial-gradient(circle at 10% 20%, rgba(74, 21, 75, 0.06) 0%, rgba(142, 36, 170, 0.04) 90%), #ffffff;
    border-bottom: 1px solid var(--border-color);
}

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

.novo-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 21, 75, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.novo-pill-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
}

.novo-hero-title {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.novo-hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.novo-hero-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 35px;
}

.novo-hero-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
}

.novo-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 12px;
    font-weight: 900;
}

.novo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.novo-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 28px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.25);
    transition: var(--transition);
}

.novo-btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(27, 94, 32, 0.35);
}

.novo-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #15803d;
    border: 2px solid #bbf7d0;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 24px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.novo-btn-whatsapp:hover {
    background: #f0fdf4;
    border-color: #86efac;
    transform: translateY(-2px);
}

.novo-hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.novo-stat-item strong {
    display: block;
    font-size: 24px;
    color: #0f172a;
    font-family: var(--font-heading);
}

.novo-stat-item span {
    font-size: 13px;
    color: var(--text-muted);
}

.novo-stat-divider {
    width: 1px;
    height: 35px;
    background: var(--border-color);
}

.novo-hero-visual {
    position: relative;
}

.novo-hero-img-wrap {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.novo-hero-main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.novo-hero-img-wrap:hover .novo-hero-main-img {
    transform: scale(1.02);
}

.novo-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 12px 18px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.novo-floating-card strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
}

.novo-floating-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.novo-card-icon {
    font-size: 24px;
}

.novo-card-top {
    top: 20px;
    left: 20px;
}

.novo-card-bottom {
    bottom: 20px;
    right: 20px;
}

@media (max-width: 1100px) {
    .novo-nav-list {
        gap: 16px;
    }
    .novo-nav-link {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .novo-nav-desktop, .novo-wa-text {
        display: none !important;
    }
    .novo-menu-toggle {
        display: flex !important;
    }
    .novo-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .novo-hero-title {
        font-size: 28px;
    }
    .novo-hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .novo-floating-card {
        padding: 8px 12px;
    }
    .novo-floating-card strong {
        font-size: 12px;
    }
    .novo-floating-card p {
        font-size: 10px;
    }
    .novo-card-icon {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .novo-floating-card {
        display: none;
    }
    .novo-prod-actions {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Clinical Pillars Section
   ========================================================================== */
.novo-pillars-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.novo-sub-tag {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.novo-section-title {
    font-size: 36px;
    margin-bottom: 12px;
}

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

.novo-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.novo-pillar-card {
    background: var(--bg-page);
    padding: 35px 25px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.novo-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #bbf7d0;
    background: #ffffff;
}

.novo-pillar-icon {
    font-size: 36px;
    margin-bottom: 18px;
}

.novo-pillar-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.novo-pillar-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Products Catalog
   ========================================================================== */
.novo-products-section {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.novo-product-card {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.novo-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
}

.novo-prod-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.novo-badge-category {
    background: rgba(15, 23, 42, 0.8);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.novo-badge-highlight {
    background: var(--secondary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
}

.novo-prod-img-wrap {
    padding: 40px 20px 20px;
    background: #fafafc;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.novo-prod-img {
    max-height: 240px;
    margin: 0 auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.novo-product-card:hover .novo-prod-img {
    transform: scale(1.05);
}

.novo-prod-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.novo-prod-aviz {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #1e40af;
    background: #eff6ff;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    align-self: flex-start;
}

.novo-prod-title {
    font-size: 22px;
    margin-bottom: 6px;
    color: #0f172a;
}

.novo-prod-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.novo-prod-specs {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 15px;
}

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

.novo-prod-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-top: 1px dashed var(--border-color);
    margin-bottom: 16px;
}

.novo-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.novo-price-val {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    font-family: var(--font-heading);
}

.novo-currency {
    font-size: 16px;
    font-weight: 700;
}

.novo-tva {
    font-size: 11px;
    color: var(--text-light);
    margin-left: 4px;
}

.novo-stock-status {
    font-size: 12px;
    font-weight: 700;
    color: #16a34a;
}

.novo-prod-actions {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
}

.novo-btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.novo-btn-cart:hover {
    background: var(--primary-light);
}

.novo-btn-wa-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    font-weight: 700;
    font-size: 13px;
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.novo-btn-wa-card:hover {
    background: #d1fae5;
}

/* ==========================================================================
   Science Section
   ========================================================================== */
.novo-science-section {
    padding: 90px 0;
    background: #ffffff;
}

.novo-science-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.novo-science-visual img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.novo-science-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.novo-point {
    display: flex;
    gap: 18px;
}

.novo-point-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    background: #f3e8ff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.novo-point h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.novo-point p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .novo-science-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.novo-faq-section {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
}

.novo-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.novo-faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.novo-faq-item:hover {
    border-color: #cbd5e1;
}

.novo-faq-trigger {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.novo-faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.novo-faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    display: none;
}

.novo-faq-item.active .novo-faq-answer {
    display: block;
}

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

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.novo-cta-section {
    background: linear-gradient(135deg, #4a154b 0%, #2e0830 100%);
    color: #ffffff;
    padding: 60px 0;
}

.novo-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.novo-cta-text h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 8px;
}

.novo-cta-text p {
    color: #f3e8ff;
    font-size: 16px;
}

.novo-btn-cta-wa {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 28px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
}

.novo-btn-cta-wa:hover {
    background: #1eb956;
    transform: translateY(-2px);
}

/* ==========================================================================
   Trust Bar & Footer
   ========================================================================== */
.novo-trust-bar {
    background: #ffffff;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.novo-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.novo-trust-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.novo-trust-icon {
    font-size: 32px;
}

.novo-trust-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.novo-trust-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.novo-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 70px 0 30px;
    font-size: 14px;
}

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

.novo-footer-logo {
    display: block;
    max-height: 44px;
    width: auto;
    margin-bottom: 14px;
}

.novo-btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 162, 177, 0.5) !important;
    background: linear-gradient(135deg, #17828e 0%, #115c65 100%) !important;
}

.novo-footer-desc {
    line-height: 1.6;
    margin-bottom: 20px;
}

.novo-anpc-badges {
    display: flex;
    gap: 10px;
    align-items: center;
}

.novo-footer-title {
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 20px;
}

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

.novo-footer-links li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.novo-footer-contact p {
    margin-bottom: 12px;
}

.novo-contact-link {
    color: #ffffff;
    font-weight: 600;
}

.novo-btn-wa-footer {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 6px;
    margin-top: 10px;
}

.novo-footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 25px;
}

.novo-medical-disclaimer {
    font-size: 11px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 18px;
}

.novo-bottom-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
}

@media (max-width: 991px) {
    .novo-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .novo-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.novo-floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.novo-floating-wa:hover {
    transform: scale(1.1);
}

.novo-wa-tooltip {
    position: absolute;
    right: 70px;
    background: #0f172a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.novo-floating-wa:hover .novo-wa-tooltip {
    opacity: 1;
}

/* ==========================================================================
   GDPR Cookie Banner
   ========================================================================== */
.novo-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 480px;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(10px);
    color: #e2e8f0;
    padding: 22px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    z-index: 10000;
    border: 1px solid #334155;
    font-size: 13px;
    line-height: 1.5;
}

.novo-cookie-text h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 8px;
}

.novo-cookie-text a {
    color: #38bdf8;
    text-decoration: underline;
}

.novo-cookie-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.novo-btn-cookie {
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.novo-btn-cookie-accept {
    background: var(--primary);
    color: #ffffff;
}

.novo-btn-cookie-accept:hover {
    background: var(--primary-light);
}

.novo-btn-cookie-necessary {
    background: #334155;
    color: #cbd5e1;
}

.novo-btn-cookie-necessary:hover {
    background: #475569;
}

/* ==========================================================================
   Single Product & Page Styling
   ========================================================================== */
.novo-page-header {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.novo-breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.novo-breadcrumbs a:hover {
    color: var(--primary);
}

.novo-page-title {
    font-size: 32px;
}

.novo-page-content-wrap {
    padding: 50px 0 80px;
}

.novo-page-card {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    line-height: 1.8;
}

.novo-single-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    margin-bottom: 50px;
}

.novo-single-main-img-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.novo-single-img {
    max-height: 420px;
    margin: 0 auto;
    object-fit: contain;
}

.novo-single-floating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
}

.novo-single-guarantees {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.novo-guarantee-item {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.novo-single-title {
    font-size: 36px;
    margin: 8px 0;
}

.novo-single-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.novo-single-price-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 18px 24px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.novo-single-price .novo-price-val {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-dark);
}

.novo-shipping-alert {
    font-size: 13px;
    color: #166534;
}

.novo-single-key-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.novo-spec-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 8px;
}

.novo-spec-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.novo-cart-form {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.novo-qty-wrap {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.novo-qty-btn {
    width: 40px;
    height: 48px;
    background: #f1f5f9;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.novo-qty-field {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 700;
}

.novo-btn-primary-large {
    flex-grow: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.25);
    transition: var(--transition);
}

.novo-btn-primary-large:hover {
    background: var(--primary-light);
}

.novo-btn-wa-single {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.novo-single-trust-panel {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: #475569;
}

/* Tabs */
.novo-tabs-container {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.novo-tabs-nav {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.novo-tab-btn {
    padding: 16px 24px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.novo-tab-btn.active {
    color: var(--primary);
    background: #ffffff;
    border-bottom-color: var(--primary);
}

.novo-tab-pane {
    padding: 35px;
    display: none;
    line-height: 1.8;
}

.novo-tab-pane.active {
    display: block;
}

@media (max-width: 991px) {
    .novo-single-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Google Social Login Styling
   ========================================================================== */
.novo-social-login-separator {
    text-align: center;
    margin: 25px 0 15px;
    position: relative;
}

.novo-social-login-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.novo-social-login-separator span {
    position: relative;
    background: #ffffff;
    padding: 0 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.novo-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #3c4043;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.novo-btn-google:hover {
    background: #f8fafc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* ==========================================================================
   Comparison Table Section
   ========================================================================== */
.novo-comparison-section {
    padding: 70px 0;
    background: #faf8fc;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.novo-table-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 30px;
}

.novo-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.novo-comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 780px;
}

.novo-comp-table thead th {
    background: #4a154b;
    color: #ffffff;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.novo-comp-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.novo-comp-table tbody tr:hover {
    background: #faf5ff;
}

.novo-comp-table tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    color: #334155;
    line-height: 1.5;
}

.novo-table-prod-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.novo-table-badge {
    display: inline-block;
    background: #f3e8ff;
    color: #6b21a8;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.novo-table-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #4a154b;
    color: #ffffff !important;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    transition: var(--transition);
}

.novo-table-btn:hover {
    background: #6a1b6d;
    transform: translateY(-1px);
}

/* ==========================================================================
   Product Detail Specs & Ingredients Styles
   ========================================================================== */
.novo-prod-bullets {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.novo-prod-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.novo-prod-bullets li::before {
    content: "✓";
    color: #16a34a;
    font-weight: 900;
}

.novo-ingred-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.novo-ingred-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.novo-ingred-table th {
    background: #f8fafc;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 2px solid var(--border-color);
}

.novo-ingred-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    color: #334155;
}

.novo-ingred-table tr:last-child td {
    border-bottom: none;
}

/* Social & Google Login */
.novo-social-login-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0 15px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
}
.novo-social-login-separator::before,
.novo-social-login-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}
.novo-social-login-separator span {
    padding: 0 12px;
}
.novo-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #374151;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 11px 16px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.novo-btn-google:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ==========================================================================
   WooCommerce Checkout & Cart Modern Styling
   ========================================================================== */
.woocommerce-checkout .woocommerce,
.woocommerce-cart .woocommerce {
    width: 100%;
}

.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 991px) {
    .woocommerce-checkout form.checkout {
        grid-template-columns: 1fr;
    }
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#order_review_heading {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.woocommerce-checkout .form-row {
    margin-bottom: 16px;
}

.woocommerce-checkout .form-row label {
    display: block;
    font-weight: 600;
    font-size: 13.5px;
    color: #334155;
    margin-bottom: 6px;
}

.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14.5px;
    background: #ffffff;
    transition: var(--transition);
}

.woocommerce-checkout .input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 21, 75, 0.12);
}

#order_review {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
}

table.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

table.woocommerce-checkout-review-order-table th,
table.woocommerce-checkout-review-order-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    font-size: 14px;
}

#place_order {
    width: 100%;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    padding: 16px 24px !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.35) !important;
    transition: all 0.25s ease !important;
}

#place_order:hover {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45) !important;
}



