/* ============================================================
   CATEGORY DESCRIPTION — H2 & H3 STYLING
   ============================================================ */

.category-description h2 {
    color: #C9A84C;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.category-description h3 {
    color: #ffffff;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ============================================================
   CATEGORIE HERO
   ============================================================ */

.cat-hero {
    position: relative;
    padding: 140px 0 80px;
    background: #111;
    overflow: hidden;
}

.cat-hero__glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cat-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cat-hero__content {
    flex: 1;
    max-width: 640px;
}

.cat-hero__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 1rem;
}

.cat-hero__titel {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.cat-hero__intro {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cat-hero__acties {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cat-hero__badge {
    flex-shrink: 0;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .cat-hero {
        padding: 100px 0 60px;
    }
    .cat-hero__badge {
        display: none;
    }
    .cat-hero__inner {
        flex-direction: column;
    }
}

/* ============================================================
   USP BLOKKEN
   ============================================================ */

.cat-usps {
    padding: 48px 0;
    background: #1a1a1a;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.cat-usps__lijst {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-usp {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.cat-usp__icoon {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
    background: rgba(201, 168, 76, 0.05);
}

.cat-usp__titel {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.cat-usp__sub {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .cat-usps__lijst {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .cat-usps__lijst {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* ============================================================
   PRODUCTEN SECTIE
   ============================================================ */

.cat-producten {
    padding: 80px 0;
    background: #111;
}

.cat-sectie__titel {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.cat-producten__grid ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Productcard basisstijl */
.cat-producten__grid li.product {
    background: #1a1a1a;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 4px;
    padding: 20px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.cat-producten__grid li.product:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
}

.cat-producten__grid li.product a img {
    border-radius: 2px;
    width: 100%;
    height: auto;
}

.cat-producten__grid li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: #fff;
    margin: 14px 0 8px;
}

.cat-producten__grid li.product .price {
    color: #C9A84C;
    font-weight: 600;
    font-size: 1rem;
}

.cat-producten__grid li.product .button {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 20px;
    background: transparent;
    color: #C9A84C;
    border: 1px solid #C9A84C;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.cat-producten__grid li.product .button:hover {
    background: #C9A84C;
    color: #111;
}

/* Paginering */
.woocommerce-pagination {
    margin-top: 40px;
    text-align: center;
}

.woocommerce-pagination ul {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #C9A84C;
    font-size: 0.9rem;
    border-radius: 2px;
    transition: background 0.2s ease;
}

.woocommerce-pagination ul li span.current,
.woocommerce-pagination ul li a:hover {
    background: #C9A84C;
    color: #111;
    border-color: #C9A84C;
}

/* ============================================================
   BESCHRIJVING SECTIES — VISUELE BLOKKEN
   ============================================================ */

/* Basis sectie wrapper */
.lrd-beschr-sectie {
    padding: 80px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.lrd-beschr-sectie:nth-child(odd)  { background: #151515; }
.lrd-beschr-sectie:nth-child(even) { background: #111; }

/* Sectie H2 — goud, Playfair, gecentreerd */
.lrd-beschr__h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    color: #C9A84C;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.lrd-beschr__h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: #C9A84C;
    margin: 16px auto 0;
    opacity: 0.6;
}

/* Intro tekst boven secties */
.lrd-beschr-intro__tekst {
    max-width: 760px;
    margin: 0 auto;
    color: #aaa;
    line-height: 1.85;
    font-size: 1.05rem;
}

.lrd-beschr-intro__tekst p { margin-bottom: 1rem; }

/* ——— WAAROM KIEZEN ——— */
.lrd-waarom__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 24px;
}

.lrd-waarom__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    transition: border-color 0.2s, background 0.2s;
}

.lrd-waarom__item:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.07);
}

.lrd-waarom__icoon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    color: #C9A84C;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.lrd-waarom__titel {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.lrd-waarom__tekst {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
}

/* ——— VOOR WIE ——— */
.lrd-voor-wie__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.lrd-voor-wie__kaart {
    padding: 28px 24px;
    background: #1a1a1a;
    border-left: 3px solid #C9A84C;
    border-radius: 0 8px 8px 0;
    transition: background 0.2s;
}

.lrd-voor-wie__kaart:hover { background: #1f1f1f; }

.lrd-voor-wie__icoon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    color: #C9A84C;
    margin-bottom: 14px;
}

.lrd-voor-wie__naam {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.lrd-voor-wie__tekst {
    font-size: 0.875rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* ——— HOE WERKT HET ——— */
.lrd-hoe-werkt__stappen {
    display: flex;
    gap: 0;
    position: relative;
}

.lrd-stap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
}

.lrd-stap__head {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.lrd-stap__icoon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
    border: 2px solid rgba(201, 168, 76, 0.35);
    border-radius: 50%;
    color: #C9A84C;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.lrd-stap__badge {
    position: absolute;
    top: -8px;
    right: calc(50% - 48px);
    width: 24px;
    height: 24px;
    background: #C9A84C;
    color: #111;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.lrd-stap__lijn {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(201,168,76,0.4) 0%, rgba(201,168,76,0.1) 100%);
    position: absolute;
    left: calc(50% + 40px);
    right: -16px;
    top: 39px;
}

.lrd-stap__titel {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.lrd-stap__tekst {
    font-size: 0.875rem;
    color: #888;
    line-height: 1.65;
    margin: 0;
}

/* Mobiel: verticale stappen */
@media (max-width: 768px) {
    .lrd-hoe-werkt__stappen {
        flex-direction: column;
        gap: 32px;
    }

    .lrd-stap {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 0;
        gap: 20px;
    }

    .lrd-stap__head {
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
        width: auto;
        margin-bottom: 0;
    }

    .lrd-stap__icoon {
        width: 60px;
        height: 60px;
        margin: 0;
    }

    .lrd-stap__badge {
        top: -6px;
        right: -6px;
    }

    .lrd-stap__lijn {
        width: 2px;
        height: auto;
        left: 29px;
        right: auto;
        top: 68px;
        bottom: -32px;
        background: linear-gradient(180deg, rgba(201,168,76,0.4) 0%, rgba(201,168,76,0.1) 100%);
    }

    .lrd-stap--laatste .lrd-stap__lijn { display: none; }
}

/* ——— KOOPGIDS ——— */
.lrd-koopgids__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.lrd-koopgids__kaart {
    padding: 28px 24px;
    background: #1a1a1a;
    border-top: 3px solid #C9A84C;
    border-radius: 0 0 8px 8px;
    transition: background 0.2s;
}

.lrd-koopgids__kaart:hover { background: #1f1f1f; }

.lrd-koopgids__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.lrd-koopgids__nummer {
    width: 36px;
    height: 36px;
    background: #C9A84C;
    color: #111;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lrd-koopgids__icoon {
    color: rgba(201, 168, 76, 0.6);
    display: flex;
}

.lrd-koopgids__titel {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.lrd-koopgids__tekst {
    font-size: 0.875rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
}

/* ——— STANDAARD SECTIE (fallback) ——— */
.lrd-beschr-standaard__content {
    max-width: 760px;
    margin: 0 auto;
    color: #aaa;
    line-height: 1.8;
}

.lrd-beschr-standaard__content p  { margin-bottom: 1rem; }
.lrd-beschr-standaard__content a  { color: #C9A84C; }
.lrd-beschr-standaard__content strong { color: #fff; }

/* ============================================================
   FAQ ACCORDEON
   ============================================================ */

.cat-faq {
    padding: 80px 0;
    background: #111;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.cat-faq__titel {
    margin-bottom: 48px;
}

.faq-lijst {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item--open {
    border-color: rgba(201, 168, 76, 0.5);
}

.faq-vraag {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: #1a1a1a;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-vraag:hover {
    background: #1f1f1f;
    color: #C9A84C;
}

.faq-item--open .faq-vraag {
    background: #1f1f1f;
    color: #C9A84C;
}

.faq-pijl {
    flex-shrink: 0;
    color: #C9A84C;
    transition: transform 0.25s ease;
}

.faq-item--open .faq-pijl {
    transform: rotate(180deg);
}

.faq-antwoord {
    background: #171717;
}

.faq-antwoord[hidden] {
    display: none;
}

.faq-antwoord__inner {
    padding: 20px 24px 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.faq-antwoord__inner p {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================================
   CTA SECTIE ONDERAAN
   ============================================================ */

.cat-cta {
    position: relative;
    padding: 100px 0;
    background: #151515;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    text-align: center;
    overflow: hidden;
}

.cat-cta__glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cat-cta__inner {
    position: relative;
    z-index: 1;
}

.cat-cta__titel {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
}

.cat-cta__sub {
    font-size: 1.05rem;
    color: #888;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cat-cta__acties {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   SINGLE PRODUCT PAGINA — zwart/goud thema
   ============================================================ */

.single-product #main,
body.single-product {
    background: #111;
}

/* Hoofdlayout: foto links, info rechts */
.single-product div.product {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
    background: transparent;
}

/* Galerij — links */
.single-product .woocommerce-product-gallery {
    flex: 0 0 48%;
    max-width: 48%;
}

.single-product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
    border-radius: 4px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    width: 100%;
    height: auto;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li {
    flex: 0 0 60px;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li img {
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 2px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s, border-color 0.2s;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active,
.single-product .woocommerce-product-gallery .flex-control-thumbs li img:hover {
    opacity: 1;
    border-color: #C9A84C;
}

/* Samenvatting — rechts */
.single-product .summary.entry-summary {
    flex: 1;
    min-width: 280px;
    color: #fff;
}

/* Producttitel */
.single-product .summary h1.product_title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

/* Prijs */
.single-product .summary .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C9A84C;
    margin-bottom: 20px;
    display: block;
}

.single-product .summary .price del {
    color: #555;
    font-size: 1.2rem;
}

/* Korte omschrijving */
.single-product .summary .woocommerce-product-details__short-description {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 20px;
}

.single-product .summary .woocommerce-product-details__short-description p {
    margin-bottom: 0.75rem;
}

/* Variaties */
.single-product .variations_form .variations {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.single-product .variations_form .variations td,
.single-product .variations_form .variations th {
    padding: 8px 0;
    vertical-align: middle;
}

.single-product .variations_form .variations td.label label {
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    padding-right: 16px;
}

.single-product .variations_form .variations td.value select {
    background: #1a1a1a;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #fff;
    padding: 10px 14px;
    border-radius: 2px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    width: 100%;
    max-width: 220px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.single-product .variations_form .variations td.value select:focus {
    outline: none;
    border-color: #C9A84C;
}

/* Reset variant link */
.single-product .variations_form .reset_variations {
    font-size: 0.8rem;
    color: #888;
    margin-top: 4px;
    display: inline-block;
}

.single-product .variations_form .reset_variations:hover {
    color: #C9A84C;
}

/* Variatie beschrijving */
.single-product .woocommerce-variation-description p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* Prijs variatie */
.single-product .woocommerce-variation-price .price {
    font-size: 1.5rem;
    color: #C9A84C;
}

/* Aantal + toevoegen */
.single-product .variations_form .woocommerce-variation-add-to-cart,
.single-product form.cart {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.single-product .quantity .qty {
    width: 70px;
    padding: 12px 14px;
    background: #1a1a1a;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #fff;
    font-size: 1rem;
    border-radius: 2px;
    text-align: center;
}

.single-product .quantity .qty:focus {
    outline: none;
    border-color: #C9A84C;
}

/* Gouden 'In winkelwagen' knop */
.single-product .single_add_to_cart_button,
.single-product button.single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #C9A84C;
    color: #111;
    border: none;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    flex: 1;
    max-width: 300px;
}

.single-product .single_add_to_cart_button:hover {
    background: #b8923e;
    transform: translateY(-1px);
}

.single-product .single_add_to_cart_button:disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
    transform: none;
}

/* Product meta (categorie, SKU) */
.single-product .product_meta {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    font-size: 0.85rem;
    color: #666;
}

.single-product .product_meta span {
    display: block;
    margin-bottom: 6px;
}

.single-product .product_meta a {
    color: #C9A84C;
}

/* Tabs (beschrijving / aanvullende informatie) */
.single-product .woocommerce-tabs {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.single-product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0 0 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.single-product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: none;
}

.single-product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 12px 24px;
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}

.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li a:hover {
    color: #C9A84C;
    border-bottom-color: #C9A84C;
}

.single-product .woocommerce-tabs .wc-tab,
.single-product .woocommerce-tabs .panel {
    background: #1a1a1a;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-top: none;
    padding: 36px;
    color: #aaa;
    line-height: 1.8;
}

.single-product .woocommerce-tabs .panel h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.single-product .woocommerce-tabs .panel p { margin-bottom: 1rem; }
.single-product .woocommerce-tabs .panel strong { color: #fff; }
.single-product .woocommerce-tabs .panel table {
    width: 100%;
    border-collapse: collapse;
}
.single-product .woocommerce-tabs .panel table tr {
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.single-product .woocommerce-tabs .panel table td,
.single-product .woocommerce-tabs .panel table th {
    padding: 10px 0;
    color: #aaa;
    font-size: 0.9rem;
}
.single-product .woocommerce-tabs .panel table th {
    color: #fff;
    font-weight: 600;
    width: 40%;
}

/* Gerelateerde producten */
.single-product .related.products {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.single-product .related.products h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 28px;
}

/* Mobiel responsive */
@media (max-width: 768px) {
    .single-product div.product {
        flex-direction: column;
        gap: 32px;
        margin: 32px auto;
    }

    .single-product .woocommerce-product-gallery {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .single-product .single_add_to_cart_button {
        max-width: 100%;
    }

    .single-product .woocommerce-tabs .wc-tab,
    .single-product .woocommerce-tabs .panel {
        padding: 24px 16px;
    }
}

/* ============================================================
   CHECKOUT — FLOATING LABELS & GOUDEN STYLING
   ============================================================ */

.woocommerce-checkout {
    background: #111;
}

.woocommerce-checkout .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 100px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

/* Secties */
.woocommerce-checkout h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

/* Billing / shipping blok samenvoegen in linker kolom */
.woocommerce-checkout #customer_details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Formulierrijen */
.woocommerce-checkout .form-row {
    position: relative;
    margin-bottom: 22px;
}

/* Label — altijd zichtbaar boven het veld */
.woocommerce-checkout .form-row > label:not(.woocommerce-form__label-for-checkbox) {
    position: static;
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: #8A8F96;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    pointer-events: none;
    white-space: nowrap;
}

/* Verberg required asterisk in label */
.woocommerce-checkout .form-row > label .required {
    display: none;
}

/* Input velden */
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    background: #1a1a1a !important;
    background-color: #1a1a1a !important;
    border: 1px solid rgba(201, 168, 76, 0.3) !important;
    color: #fff !important;
    padding: 12px 14px !important;
    border-radius: 4px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s ease !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row.lrd-active .input-text,
.woocommerce-checkout .form-row.lrd-active select,
.woocommerce-checkout .form-row.lrd-active textarea {
    border-color: #C9A84C !important;
    box-shadow: none !important;
}

/* Browser autofill — voorkom witte achtergrond */
.woocommerce-checkout .form-row .input-text:-webkit-autofill,
.woocommerce-checkout .form-row .input-text:-webkit-autofill:hover,
.woocommerce-checkout .form-row .input-text:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset !important;
    -webkit-text-fill-color: #fff !important;
    border-color: rgba(201, 168, 76, 0.3) !important;
    transition: background-color 9999s ease-in-out 0s !important;
}

/* Select pijl */
.woocommerce-checkout .form-row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

/* Twee kolommen voor halve velden */
.woocommerce-checkout .form-row-first {
    float: left;
    width: calc(50% - 8px);
    clear: left;
}

.woocommerce-checkout .form-row-last {
    float: right;
    width: calc(50% - 8px);
}

.woocommerce-checkout .form-row-wide {
    clear: both;
}

.woocommerce-checkout #customer_details::after { content: ''; display: table; clear: both; }
.woocommerce-checkout .col-1::after,
.woocommerce-checkout .col-2::after { content: ''; display: table; clear: both; }

/* Checkbox rijen */
.woocommerce-checkout .form-row input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    accent-color: #C9A84C;
}

.woocommerce-checkout .form-row.woocommerce-form__input-checkbox > label,
.woocommerce-checkout .ship-to-different-address label {
    position: static !important;
    font-size: 0.9rem !important;
    color: #aaa !important;
    background: transparent !important;
    padding: 0 !important;
    transform: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* "Factuuradres zelfde als verzendadres" */
.woocommerce-checkout .ship-to-different-address {
    margin: 12px 0 24px;
    padding: 14px 18px;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 2px;
    clear: both;
}

/* Gastmelding */
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-form-login-toggle {
    background: rgba(201, 168, 76, 0.05);
    border: none;
    border-left: 3px solid #C9A84C;
    padding: 14px 18px;
    color: #aaa;
    font-size: 0.9rem;
    border-radius: 0 2px 2px 0;
    margin-bottom: 24px;
    display: none; /* gastmelding verbergen — geen account nodig voor checkout */
}

/* Verzendmethode */
.woocommerce-checkout #shipping_method {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-checkout #shipping_method li {
    padding: 10px 0;
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce-checkout #shipping_method li input[type="radio"] {
    accent-color: #C9A84C;
    width: 16px;
    height: 16px;
}

/* ---- Order Summary rechts ---- */
.woocommerce-checkout-review-order {
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    padding: 32px;
    background: #1a1a1a;
    position: sticky;
    top: 100px;
}

.woocommerce-checkout-review-order h3 {
    margin-bottom: 20px;
}

.woocommerce-checkout-review-order .shop_table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-checkout-review-order .shop_table th,
.woocommerce-checkout-review-order .shop_table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    color: #bbb;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    vertical-align: middle;
}

.woocommerce-checkout-review-order .shop_table th {
    color: #888;
    font-weight: 500;
    text-align: left;
    width: 60%;
}

.woocommerce-checkout-review-order .shop_table thead th {
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.woocommerce-checkout-review-order .shop_table .order-total th,
.woocommerce-checkout-review-order .shop_table .order-total td {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: none;
    padding-top: 20px;
}

.woocommerce-checkout-review-order .shop_table .order-total td {
    color: #C9A84C;
    text-align: right;
}

.woocommerce-checkout-review-order .shop_table td:last-child {
    text-align: right;
}

/* Betalingssectie */
#payment {
    background: transparent;
    margin-top: 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding-top: 24px;
}

#payment h3 {
    font-size: 1rem;
    margin-bottom: 16px;
}

#payment .payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

#payment .payment_methods li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

#payment .payment_methods li:last-child {
    border-bottom: none;
}

#payment .payment_methods li label {
    color: #ccc;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

#payment .payment_methods li input[type="radio"] {
    accent-color: #C9A84C;
    flex-shrink: 0;
}

#payment .payment_box {
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 2px;
    padding: 14px 18px;
    margin-top: 8px;
    color: #888;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Bestelknop */
#place_order {
    display: block;
    width: 100%;
    padding: 16px;
    background: #C9A84C;
    color: #111;
    border: none;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 20px;
}

#place_order:hover {
    background: #b8923e;
}

/* WC form checkout volledig breedte grid */
.woocommerce-checkout form.checkout {
    display: contents;
}

.woocommerce-checkout .woocommerce > form.checkout {
    display: contents;
}

/* Koppel het customer_details en order_review aan de grid */
.woocommerce-checkout .col2-set,
.woocommerce-checkout #customer_details {
    grid-column: 1;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    grid-column: 2;
    grid-row: 1 / span 10;
}

.woocommerce-checkout #order_review_heading {
    align-self: end;
    margin-bottom: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: 1.3rem;
}

/* Foutmeldingen */
.woocommerce-checkout .woocommerce-invalid input.input-text,
.woocommerce-checkout .woocommerce-invalid select {
    border-color: #e74c3c;
}

.woocommerce-checkout .woocommerce-error {
    background: rgba(231, 76, 60, 0.08);
    border-left: 3px solid #e74c3c;
    padding: 14px 18px;
    color: #e74c3c;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border-radius: 0 2px 2px 0;
    list-style: none;
}

/* Mobiel */
@media (max-width: 900px) {
    .woocommerce-checkout .woocommerce {
        grid-template-columns: 1fr;
        padding: 40px 16px 60px;
        gap: 32px;
    }

    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        width: 100%;
        float: none;
    }

    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        grid-column: 1;
        grid-row: auto;
    }

    .woocommerce-checkout-review-order {
        position: static;
        padding: 20px;
    }
}

/* -------------------------------------------------------
   Cadeaubon pagina — fonts + styling
------------------------------------------------------- */
.gift-cards_form h3,
.gift-cards_form h5,
.gift-cards_form .ywgc_recipient_info_title,
.gift-cards_form .ywgc-sender-info-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #C9A84C;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin: 28px 0 14px;
    text-transform: none;
}

.gift-cards_form label,
.gift-cards_form input,
.gift-cards_form textarea,
.gift-cards_form span,
.gift-cards_form p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #ccc;
}

.gift-cards_form input[type="text"],
.gift-cards_form input[type="email"],
.gift-cards_form textarea {
    background: #1a1a1a;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #fff;
    border-radius: 4px;
    padding: 10px 14px;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.gift-cards_form input[type="text"]:focus,
.gift-cards_form input[type="email"]:focus,
.gift-cards_form textarea:focus {
    border-color: #C9A84C;
    outline: none;
}

.ywgc-predefined-amount-button {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    background-color: #000 !important;
    border: 2px solid #C9A84C !important;
    color: #fff !important;
    padding: 8px 18px !important;
    cursor: pointer !important;
    border-radius: 3px !important;
    transition: background 0.2s, color 0.2s !important;
}

.ywgc-predefined-amount-button.selected,
.ywgc-predefined-amount-button:focus,
.ywgc-predefined-amount-button.ywgc-selected {
    background-color: #C9A84C !important;
    border-color: #C9A84C !important;
    color: #000 !important;
}

.ywgc-empty-recipient-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* Productkaart afbeelding — lichtgrijze achtergrond zodat witte producten zichtbaar zijn */
.woocommerce ul.products li.product a img,
.product-thumbnail,
.woocommerce-loop-product__link img {
    background-color: #F5F5F5;
    padding: 12px;
    border-radius: 8px;
}

/* =====================================================
   WooCommerce Checkout BLOCK — donker thema
   (klassieke .form-row selectors werken hier NIET)
   ===================================================== */

/* Wrapper */
.wp-block-woocommerce-checkout {
    background: transparent !important;
}

/* Alle tekst invoervelden — achtergrond donker */
.wc-block-components-text-input input,
.wc-block-components-text-input input[type="text"],
.wc-block-components-text-input input[type="email"],
.wc-block-components-text-input input[type="tel"],
.wc-block-components-text-input input[type="password"] {
    background-color: #1a1a1a !important;
    background: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid #3A3E44 !important;
    border-radius: 6px !important;
}

/* Floating label kleur */
.wc-block-components-text-input label {
    color: #8A8F96 !important;
    background: transparent !important;
}

/* Label als het zweeft (veld actief of ingevuld) */
.wc-block-components-text-input.is-active label,
.wc-block-components-text-input input:not(:placeholder-shown) ~ label,
.wc-block-components-text-input input:focus ~ label {
    color: #8A8F96 !important;
    background-color: #1a1a1a !important;
}

/* Focus — gouden rand */
.wc-block-components-text-input.is-active input,
.wc-block-components-text-input input:focus {
    border-color: #C9A84C !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Autofill — voorkomt witte browser-overschrijving */
.wc-block-components-text-input input:-webkit-autofill,
.wc-block-components-text-input input:-webkit-autofill:hover,
.wc-block-components-text-input input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Select / dropdown (land) */
.wc-block-components-select select,
.wc-block-components-combobox input,
.wc-block-components-country-input input {
    background-color: #1a1a1a !important;
    background: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid #3A3E44 !important;
    border-radius: 6px !important;
}

.wc-block-components-select select:focus,
.wc-block-components-combobox input:focus {
    border-color: #C9A84C !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Labels bij select/combobox */
.wc-block-components-select label,
.wc-block-components-combobox label,
.wc-block-components-country-input label {
    color: #8A8F96 !important;
    background: transparent !important;
}

.wc-block-components-select.is-active label,
.wc-block-components-combobox.is-active label {
    background-color: #1a1a1a !important;
}

/* Sectie titels */
.wc-block-checkout h2,
.wc-block-checkout__title {
    color: #ffffff !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 18px !important;
    border-bottom: 1px solid #2A2E34 !important;
    padding-bottom: 10px !important;
    margin-bottom: 20px !important;
}

/* Besteloverzicht rechterkant */
.wc-block-checkout__sidebar .wc-block-mini-cart__items,
.wc-block-components-order-summary,
.wc-block-components-order-summary-item,
.wp-block-woocommerce-checkout-order-summary-block {
    background: #111111 !important;
    border: 1px solid #2A2E34 !important;
    border-radius: 8px !important;
    color: #ffffff !important;
}

/* "Bestelling plaatsen" knop */
.wc-block-components-checkout-place-order-button,
.wc-block-components-checkout-place-order-button button,
button.wc-block-components-checkout-place-order-button {
    background: #C9A84C !important;
    background-color: #C9A84C !important;
    color: #000000 !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    width: 100% !important;
    cursor: pointer !important;
}

.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-checkout-place-order-button button:hover {
    background: #B8963E !important;
    background-color: #B8963E !important;
}

/* Checkbox styling */
.wc-block-components-checkbox input[type="checkbox"] {
    accent-color: #C9A84C !important;
}

.wc-block-components-checkbox label {
    color: #cccccc !important;
}

/* Foutmeldingen */
.wc-block-components-validation-error p,
.wc-block-components-form-input-error {
    color: #ff6b6b !important;
}

/* Textarea (opmerkingen) */
.wc-block-components-textarea textarea {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid #3A3E44 !important;
    border-radius: 6px !important;
}

.wc-block-components-textarea textarea:focus {
    border-color: #C9A84C !important;
    outline: none !important;
}

