/**
 * Yuvacell Tenant-Specific Branding & Styles
 * 
 * Dit bestand bevat alle Yuvacell-specifieke CSS.
 * Wordt geladen na style.css (gedeelde base) zodat overrides werken.
 */

/* =========================================================
   Yuvacell - Merged header + navbar (één sticky balk)
   Hoogte: 64px – later aan te passen indien gewenst.
   ========================================================= */

/* Gradient: lichtgroen (boven/onder) → warme middenkleur (Warm Sand), geen transparantie */
html.yuvacell-merged-page,
body.yuvacell-merged-header {
    margin: 0 !important;
    padding: 0 !important;
    background: linear-gradient(to bottom, #f8fdf0 0%, #faf7f2 35%, #faf7f2 65%, #f8fdf0 100%);
    min-height: 100vh;
}
body.yuvacell-merged-header > header.yuvacell-merged-bar {
    margin: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
    top: 0 !important;
}

/* Header = bovenbalk (YuvaCell supplementen) + groene navbar in één geheel */
.yuvacell-merged-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    min-height: 0;
    background: rgba(248, 253, 240, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(56, 102, 65, 0.2);
    display: flex;
    flex-direction: column;
    overflow: visible;
}
/* Pseudo-element trekt groene achtergrond omhoog – overschildert grijze strook */
.yuvacell-merged-bar::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -30px;
    height: 30px;
    background: rgba(248, 253, 240, 0.98);
    z-index: -1;
}

/* Bovenste regel: "YuvaCell supplementen" in het midden – groter weergegeven */
.yuvacell-top-banner {
    width: 100%;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d1f0d;
}
.yuvacell-top-banner-text {
    display: block;
}

.yuvacell-merged-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 0.6rem;
    padding-top: 0.75rem;
    min-height: 56px;
    overflow: visible;
}

/* Alleen logo, geen tekst ernaast; logo overlapt hele groene gebied (banner + navbar) */
.yuvacell-merged-brand {
    display: flex;
    align-items: flex-end;
    min-width: 100px;
}

.yuvacell-merged-logo {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    line-height: 0;
}

/* Logo groot: vult hele headerhoogte (banner + navbar), overlapt groen */
.yuvacell-merged-logo-img {
    width: auto;
    height: 100px;
    object-fit: contain;
    object-position: left bottom;
    margin-top: -44px;
}

.yuvacell-merged-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.yuvacell-merged-hamburger {
    display: none;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a2e1a;
}

.yuvacell-merged-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 0.35rem;
}

/* Nav-links: diep donkergroen, kleiner lettertype, één regel (o.a. Mijn Journaal) */
.yuvacell-merged-bar .yuvacell-merged-menu li a,
.yuvacell-merged-menu a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0d1f0d !important;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.yuvacell-merged-bar .yuvacell-merged-menu li a:hover,
.yuvacell-merged-menu a:hover {
    color: #386641 !important;
}

/* Home (actieve link): zelfde stijl als shop/supplementen – groene achtergrond, geen grijs; letters iets lager */
.yuvacell-merged-bar .yuvacell-merged-menu li a.active {
    background-color: rgba(56, 102, 65, 0.18) !important;
    color: #0d1f0d !important;
    padding: 0.4rem 0.75rem 0.5rem !important;
    border-radius: 6px;
    line-height: 1.35;
}

.yuvacell-merged-utils {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Login + winkelwagen: zelfde diep donkergroen als nav */
.yuvacell-merged-utils .utility-link,
.yuvacell-merged-utils .utility-link .nav-text,
.yuvacell-merged-utils .utility-link svg {
    color: #0d1f0d !important;
    fill: none;
    stroke: #0d1f0d;
}
.yuvacell-merged-utils .utility-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 9999px;
    transition: background 0.2s;
}

.yuvacell-merged-utils .utility-link:hover {
    background: rgba(56, 102, 65, 0.1);
}
.yuvacell-merged-utils .utility-link:hover,
.yuvacell-merged-utils .utility-link:hover .nav-text,
.yuvacell-merged-utils .utility-link:hover svg {
    color: #386641 !important;
    stroke: #386641;
}

/* Winkelwagen: geen gele cirkel, zelfde donkergroen als andere icons */
.yuvacell-merged-utils .utility-link.cart-link {
    background: transparent !important;
}
.yuvacell-merged-utils .utility-link.cart-link:hover {
    background: rgba(56, 102, 65, 0.1) !important;
}
.yuvacell-merged-utils .cart-link svg,
.yuvacell-merged-utils .cart-link .cart-icon {
    stroke: #0d1f0d !important;
}
.yuvacell-merged-utils .cart-link:hover svg {
    stroke: #386641 !important;
}

/* Hero alleen op index/home zichtbaar; op overige pagina's verbergen */
body.yuvacell-merged-header:not(.yuvacell-hero-visible) > .yuvacell-hero {
    display: none !important;
}
/* Hero direct onder header: geen container, foto max 1200px (kleiner op mobiel), geen wit kader */
/* Alleen de hero mét foto (in body onder header) – geen border-radius/border/schaduw van globale CSS */
body.yuvacell-merged-header > .yuvacell-hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
body.yuvacell-merged-header > .yuvacell-hero .yuvacell-hero-img {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    vertical-align: middle;
    border: none !important;
    box-shadow: none !important;
    border-radius: 20px;
}
/* Hero ín main (uit JS) behoudt evt. andere stijl */
.yuvacell-hero {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}
.yuvacell-hero-img {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    vertical-align: middle;
    border-radius: 0;
}
.yuvacell-hero-text-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    padding: 1rem 1.5rem;
    max-width: 90%;
    margin: 0 auto;
}
.yuvacell-hero-title,
.yuvacell-hero-text {
    margin: 0 0 0.4rem 0;
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.25);
    line-height: 1.3;
}
.yuvacell-hero-sub,
.yuvacell-hero-text-sub {
    margin: 0;
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.35);
    line-height: 1.35;
}

/* Main body: geen witte/gekleurde secties – content zweeft op Warm Sand */
body.yuvacell-merged-header .main-content:has(.yuvacell-body-content),
body.yuvacell-merged-header .main-content .yuvacell-body-content {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
body.yuvacell-merged-header .main-content:has(.yuvacell-body-content) {
    padding: 0 !important;
}
body.yuvacell-merged-header main .container:has(.yuvacell-body-content) {
    max-width: 1200px;
    width: 100%;
    padding: 0 1rem;
    margin-left: auto;
    margin-right: auto;
}

/* Typografie: Lora (koppen), Inter (body), Deep Forest Green */
.yuvacell-body-content h1,
.yuvacell-body-content h2,
.yuvacell-body-content h3 {
    font-family: 'Lora', Georgia, serif;
    color: #3A4D39;
}
.yuvacell-body-content,
.yuvacell-body-content p,
.yuvacell-intro-body,
.yuvacell-journey-product-tagline {
    font-family: 'Inter', sans-serif;
    color: #3A4D39;
}

/* Introductie: gecentreerd, max-width 1200px, geen achtergrond */
.yuvacell-intro {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 2rem 1rem 0;
    text-align: center;
}
.yuvacell-intro-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}
.yuvacell-intro-body {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.yuvacell-intro-body p {
    margin-bottom: 1rem;
}
.yuvacell-intro-body p:last-child {
    margin-bottom: 0;
}
.yuvacell-intro-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-top: 1.5rem;
}
.yuvacell-intro-links a {
    color: #3A4D39;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(58, 77, 57, 0.4);
    transition: border-color 0.2s, color 0.2s;
}
.yuvacell-intro-links a:hover {
    border-bottom-color: #3A4D39;
}

/* Product Journey: alternerende rijen, geen witte kaarten */
.yuvacell-product-journey {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}
.yuvacell-journey-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    min-height: 200px;
}
.yuvacell-journey-row:last-child {
    margin-bottom: 0;
}
.yuvacell-journey-row--detailed {
    grid-template-columns: auto minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: flex-start;
    gap: 2rem 0.75rem;
}
.yuvacell-journey-row--detailed .yuvacell-journey-photo {
    padding-right: 0;
    display: flex;
    justify-content: flex-end;
}
.yuvacell-journey-row--detailed .yuvacell-journey-description {
    margin-left: 0;
    padding-left: 0.5rem;
}
/* Omgekeerde rij: product links, tekst midden, natuurfoto rechts */
.yuvacell-journey-row--reversed .yuvacell-journey-product {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.yuvacell-journey-row--reversed .yuvacell-journey-description {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.yuvacell-journey-row--reversed .yuvacell-journey-photo {
    justify-content: flex-start;
    padding-left: 0;
}
.yuvacell-journey-row--img-right .yuvacell-journey-photo { order: 2; }
.yuvacell-journey-row--img-right .yuvacell-journey-product { order: 1; }
.yuvacell-journey-photo img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    max-height: 280px;
    box-shadow: 0 8px 24px rgba(58, 77, 57, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}
.yuvacell-journey-row--detailed .yuvacell-journey-photo img {
    max-width: 240px;
    width: auto;
    height: auto;
    max-height: none;
    object-fit: contain;
    margin: 0;
    display: block;
    box-shadow: 0 8px 24px rgba(58, 77, 57, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}
.yuvacell-journey-product {
    text-align: center;
}
.yuvacell-journey-description {
    text-align: left;
}
.yuvacell-journey-description-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0 0 0.75rem 0;
    color: #3A4D39;
}
.yuvacell-journey-link {
    display: inline-block;
    font-size: 0.9rem;
    color: #3A4D39;
    text-decoration: none;
    border-bottom: 1px solid rgba(58, 77, 57, 0.4);
    padding-bottom: 0.1rem;
    transition: border-color 0.2s, color 0.2s;
}
.yuvacell-journey-link:hover {
    border-bottom-color: #3A4D39;
}
.yuvacell-journey-product-img-wrap {
    margin-bottom: 1rem;
    box-shadow: 0 20px 50px var(--product-shadow, rgba(0,0,0,0.08));
    border-radius: 12px;
    overflow: hidden;
    display: inline-block;
}
.yuvacell-journey-product-img-wrap img {
    display: block;
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 12px;
}
.yuvacell-journey-product-title {
    font-size: 1.35rem;
    margin: 0 0 0.35rem 0;
}
.yuvacell-journey-product-tagline {
    font-size: 0.95rem;
    margin: 0 0 1rem 0;
    opacity: 0.9;
}
.yuvacell-journey-cta {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: #3A4D39;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.yuvacell-journey-cta:hover {
    background: #2d3b2d;
    color: #fff;
}

@media (max-width: 768px) {
    .yuvacell-journey-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .yuvacell-journey-row--img-right .yuvacell-journey-photo,
    .yuvacell-journey-row--img-right .yuvacell-journey-product {
        order: unset;
    }
}

/* Main content: padding-top voor sticky navbar (thuis met hero); op overige pagina's direct aansluiten onder navbar */
body.yuvacell-merged-header main {
    padding-top: 100px !important;
}
/* Geen tussenruimte: container direct onder navbar op shop, blog, contact, etc. */
body.yuvacell-merged-header:not(.yuvacell-hero-visible) main {
    margin-top: -100px !important;
    padding-top: 100px !important;
}

@media (max-width: 768px) {
    .yuvacell-merged-hamburger {
        display: block;
    }
    .yuvacell-merged-nav {
        position: relative;
    }
    .yuvacell-merged-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 0.25rem;
        flex-direction: column;
        background: rgba(248, 253, 240, 0.98);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(56, 102, 65, 0.2);
        border-radius: 0.5rem;
        padding: 0.5rem 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        z-index: 1001;
    }
    .yuvacell-merged-menu.menu-open {
        display: flex !important;
    }
    .yuvacell-merged-menu li {
        width: 100%;
    }
    .yuvacell-merged-menu li a {
        display: block;
        padding: 0.75rem 1rem;
    }
}

/* =========================================================
   Yuvacell - Home + Shop category UI
   ========================================================= */

.yuvacell-hero {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.yuvacell-hero__inner h2 {
    margin: 0 0 0.4rem 0;
    font-size: 1.8rem;
    color: #386641;
}

.yuvacell-hero__inner p {
    margin: 0 0 1rem 0;
    color: #555;
}

.yuvacell-hero__cta .primary-button {
    display: inline-block;
    padding: 0.85rem 1.1rem;
    background: #8CD05C;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.yuvacell-section {
    margin-top: 1.25rem;
}

.yuvacell-section__header h3 {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
}

.yuvacell-section__header p {
    margin: 0.35rem 0 0.9rem 0;
    color: #666;
}

.yuvacell-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.yuvacell-category-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 1rem;
    text-align: left;
    cursor: pointer;
    transition: transform 0.08s ease, box-shadow 0.08s ease;
}

.yuvacell-category-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.yuvacell-category-card__title {
    font-weight: 800;
    color: #386641;
    margin-bottom: 0.25rem;
}

.yuvacell-category-card__desc {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.35;
}

.yuvacell-category-card--all {
    border: 2px solid #8CD05C;
}

.yuvacell-loading,
.yuvacell-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 1.25rem;
    color: #666;
    background: rgba(255,255,255,0.6);
    border: 1px dashed rgba(0,0,0,0.15);
}

/* Categorieën buiten layout: body exact even breed als header-inner (100%, geen overflow) */
.yuvacell-shop-body {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.yuvacell-shop-right {
    flex: 1;
    min-width: 0;
    padding-left: 1rem; /* Ruimte tussen categorieën en productgrid */
}

.yuvacell-shop-mobile-toggle {
    display: none;
    width: 100%;
    padding: 0.8rem 1rem;
    background: #386641;
    color: #FFD700;
    border: none;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 0.75rem;
}

.yuvacell-shop-sidebar {
    flex: 0 0 200px;
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 0.7rem 0.6rem;
    position: sticky;
    top: 260px; /* header + nav */
}

.yuvacell-shop-sidebar__title {
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.yuvacell-categories {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.yuvacell-category-link {
    text-align: left;
    padding: 0.45rem 0.5rem;
    background: #f6f7f8;
    border: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.3;
}

.yuvacell-category-link.active {
    background: rgba(140, 208, 92, 0.18);
    border-color: rgba(140, 208, 92, 0.55);
    color: #386641;
}

.yuvacell-category-drawer {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 20%;
    width: min(92vw, 520px);
    max-height: 70vh;
    overflow: auto;
    background: white;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    z-index: 2000;
    padding: 0.9rem;
}

.yuvacell-category-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.yuvacell-category-drawer__title {
    font-weight: 900;
    color: #333;
}

.yuvacell-category-drawer__close {
    background: #666;
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-weight: 700;
}

.yuvacell-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1999;
}

/* Zelfde breedte als div.container.header-inner (90%, max-width 1200px); geen horizontale padding zodat content exact even breed is als de nav */
main:has(.yuvacell-shop-body) .container,
main .container:has(.yuvacell-shop-body) {
    width: 90% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Content vult container, niet breder dan header-inner */
#dynamic-content:has(.yuvacell-shop-body) {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
}

/* Paginatitel "YuvaCell Shop" en shop-header iets van de rand */
#dynamic-content:has(.yuvacell-shop-body) > h2,
.yuvacell-shop .shop-header {
    padding-left: 1rem;
}

/* Geen extra linker padding op main-content zodat shop-body margin-left correct uitwerkt */
#dynamic-content.main-content:has(.yuvacell-shop-body),
.main-content:has(.yuvacell-shop-body) {
    padding-left: 0 !important;
}


/* Fallback voor browsers zonder :has() support */
.shop-active .container,
main.shop-active .container,
#dynamic-content.shop-active {
    width: 90% !important;
    max-width: 1200px !important;
}

/* Shop main content area */
.yuvacell-shop-main {
    min-width: 0; /* Voorkom overflow */
}

/* Product grid in shop: 4 tegels per rij (bredere tegels), compacte kaarten */
.yuvacell-shop-main .product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: none;
    justify-content: stretch;
    margin-top: 0.5rem;
}

.yuvacell-shop-main .product-grid .product-item-wrapper-full {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
    display: block;
    box-sizing: border-box;
}

.yuvacell-shop-main .product-grid .product-item-top-section {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
}

/* Overschrijf base: product-card 50px → volle tegelbreedte (base style.css zet .product-item-top-section .product-card op 50px) */
.yuvacell-shop-main .product-grid .product-item-wrapper-full .product-item-top-section .product-card,
.yuvacell-shop-main .product-grid .product-item-wrapper .product-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: 0 1 auto !important;
    flex-shrink: 0 !important;
    box-sizing: border-box;
}

/* Kaart volle tegelbreedte (class yuvacell-shop-card voorkomt base 50px-regel) */
.yuvacell-shop-main .product-grid .product-card.yuvacell-shop-card,
.yuvacell-shop-main .product-grid .product-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 320px;
    padding: 0 !important;
    box-sizing: border-box;
}

/* Foto-container: volle breedte en vaste hoogte */
.yuvacell-shop-main .product-grid .product-card .product-image {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    height: 240px !important;
    min-height: 200px !important;
    overflow: hidden;
    padding: 0;
    margin: 0;
    flex-shrink: 0 !important;
    box-sizing: border-box;
}

/* Afbeelding: volle breedte én hoogte van de container (geen smalle strip meer) */
.yuvacell-shop-main .product-grid .product-card .product-image img.yuvacell-shop-img {
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center;
    box-sizing: border-box;
}

.yuvacell-shop-main .product-grid .product-cart-section {
    padding: 0.5rem 0 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* Categorielabel onder productnaam (Mushroom / Longevity) */
.yuvacell-product-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.35rem;
    font-size: 0.75rem;
}

.yuvacell-product-category-tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: rgba(56, 102, 65, 0.12);
    color: #386641;
    border-radius: 4px;
    font-weight: 600;
}

/* Responsive - product grid kolommen */
@media (max-width: 1200px) {
    .yuvacell-shop-main .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .yuvacell-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .yuvacell-shop-body {
        margin-left: 0;
        width: 100%;
    }
    .yuvacell-shop-sidebar {
        display: none;
    }
    .yuvacell-shop-mobile-toggle {
        display: inline-block;
    }
    .yuvacell-shop-main .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .yuvacell-shop-main .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .yuvacell-category-grid {
        grid-template-columns: 1fr;
    }
    .yuvacell-shop-main .product-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Yuvacell - Navbar Dropdown Menu voor Supplementen
   ========================================================= */

.menu-item-dropdown {
    position: relative;
}

.menu-item-dropdown .dropdown-toggle {
    position: relative;
    padding-right: 1.5rem;
}

.menu-item-dropdown .dropdown-toggle::after {
    content: '▼';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.menu-item-dropdown:hover .dropdown-toggle::after,
.menu-item-dropdown.active .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.menu-item-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.75rem 0;
    min-width: 280px;
    max-width: 320px;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(-10px);
    z-index: 1000;
    list-style: none;
    margin-left: 0;
}

.menu-item-dropdown:hover .dropdown-menu,
.menu-item-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-group {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-group:last-child {
    border-bottom: none;
}

.dropdown-group-title {
    display: block;
    padding: 0.5rem 1rem 0.4rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #386641;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-submenu li {
    margin: 0;
}

.dropdown-submenu a {
    display: block;
    padding: 0.6rem 1rem 0.6rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-submenu a:hover {
    background-color: rgba(140, 208, 92, 0.1);
    color: #386641;
}

/* Mobile dropdown styling */
@media (max-width: 768px) {
    .menu-item-dropdown .dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0,0,0,0.08);
        border-radius: 0;
        padding: 0.5rem 0;
        max-width: 100%;
    }
    
    .menu-item-dropdown:hover .dropdown-menu,
    .menu-item-dropdown.active .dropdown-menu {
        transform: none;
    }
    
    .dropdown-submenu a {
        padding-left: 2rem;
    }
}

/* =========================================================
   Yuvacell - Footer: zelfde lichtgroen als header
   ========================================================= */
body.yuvacell-merged-header .site-footer {
    background-color: rgba(248, 253, 240, 0.98);
}
body.yuvacell-merged-header .footer-top {
    background-color: rgba(248, 253, 240, 0.98);
}
body.yuvacell-merged-header .footer-links a,
body.yuvacell-merged-header .footer-links p {
    color: #0d1f0d;
}
body.yuvacell-merged-header .footer-links a:hover {
    color: #386641;
}
body.yuvacell-merged-header .footer-bottom {
    background-color: rgba(56, 102, 65, 0.25);
    color: #0d1f0d;
    border-top: 1px solid rgba(56, 102, 65, 0.2);
    padding: 10px 0;
    font-size: 0.85em;
}

/* =========================================================
   Yuvacell - CTA-balk boven footer (donkergroen, vaste hoogte 220px)
   ========================================================= */
.yuvacell-cta-bar {
    width: 100%;
    height: 220px !important;
    max-height: 220px !important;
    min-height: 220px !important;
    box-sizing: border-box;
    background-color: #3C763D;
    border-top: 1px solid rgba(56, 102, 65, 0.3);
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yuvacell-cta-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    overflow: hidden;
    max-height: 100%;
    min-height: 0;
}
.yuvacell-cta-bar-logo {
    display: block;
    line-height: 0;
    margin-top: -1.5rem;
}
/* Logo 270px; kleur = #DDE8D7 (lichte salie/mint) */
.yuvacell-cta-bar-logo-img {
    width: 270px;
    height: 270px;
    object-fit: contain;
    object-position: center center;
    filter: brightness(0) saturate(100%) invert(92%) sepia(8%) saturate(350%) hue-rotate(95deg);
}
.yuvacell-cta-bar-content {
    min-height: 2rem;
    color: #fff;
    font-size: 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
}
.yuvacell-cta-bar-headline {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f8fdf0;
    line-height: 1.2;
}
.yuvacell-cta-bar-sub {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 400;
    color: rgba(248, 253, 240, 0.92);
    line-height: 1.35;
}
.yuvacell-cta-bar-content a,
.yuvacell-cta-bar-content .btn {
    color: #f8fdf0;
    border-color: #f8fdf0;
}
.yuvacell-cta-bar-content a:hover,
.yuvacell-cta-bar-content .btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}
