/* ==========================================================================
   WET BANDITS - COMPLETE THEME STYLING & LANDING PAGE OVERRIDES (CLEAN)
   ========================================================================== */

/* --- GLOBALE STRUCTUUR & VERTICAAL SCROLLEN --- */
html body, 
html body #page, 
html body #content, 
html body .wp-site-blocks, 
html body .entry-content {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto; /* Zorgt dat verticaal scrollen werkt */
    background-color: #ffffff; /* De rest van de pagina wordt nu clean wit */
}

/* --- 1. VERBERG DE DUBBELE PAGINATITEL & FOOTER TAGLINE --- */
html body .page-header, 
html body .entry-header,
html body h1.entry-title,
html body footer .site-description, /* Smijt de site-description uit de footer */
html body footer .site-tagline {
    display: none !important;
}

/* --- 2. THEME HEADER OVERRIDE (FORCEER FULL WIDTH MET GRIJZE ACHTERGROND) --- */
html body header.site-header,
html body .site-header,
html body .wp-block-template-part header {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px 0;
    padding: 80px 0 60px 0;
    background-color: #f0ede9; /* Subtiele, vette grijstint voor de header */
    border: none;
    box-shadow: none;
}

/* Schakel de 1140px breedtebeperking van het thema uit voor de grijze balk */
html body .site-header .header-inner,
html body .header-inner {
    max-width: 100%;
    width: 100%;
    padding: 0 40px;
    display: block;
    text-align: center;
    box-sizing: border-box;
    background: transparent; /* Zorgt dat het grijs van de parent erdoorheen komt */
}

/* Fix voor de site-description flexbox-interferentie */
html body .site-header .site-branding,
html body .site-branding {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
}

/* Sitetitel binnen de thema-header (Groot, Strak, Niet te bold) */
html body .site-header .site-title,
html body .site-header h1,
html body .site-title,
html body .site-header h1 a,
html body .site-header .wp-block-site-title a,
html body header.site-header .site-title a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 7.5vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.9;
    margin: 0 0 25px 0;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    width: 100%;
}

/* Sitedescription / Tagline binnen de thema-header (Cursief en gecentreerd) */
html body .site-header p,
html body .site-description,
html body .site-tagline,
html body .site-header .site-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #555555;
    max-width: 750px;
    margin: 0 auto !important;
    font-weight: 400;
    letter-spacing: -0.01em;
    display: block;
    text-align: center;
    width: 100%;
}

/* --- WET BANDITS LANDING PAGE BODY & CONTAINER --- */
.wb-landing-body {
    background-color: #ffffff; /* Wit voor de landing page content */
    color: #1a1a1a;
    margin: 0;
    padding-bottom: 80px;
}

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

/* --- LANDING PAGE: 3 KOLOMMEN GRID --- */
.wb-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    padding-top: 10px;
}

.wb-card {
    background: #ffffff;
    border: 3px solid #000000;
    box-shadow: 10px 10px 0px #000000;
    display: flex;
    flex-direction: column;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.wb-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0px #000000;
}

.wb-card-image-box {
    border-bottom: 3px solid #000000;
    overflow: hidden;
    height: 240px;
    background: #000000;
}

.wb-card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.wb-card:hover .wb-card-image-box img {
    filter: grayscale(0%);
}

.wb-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wb-card-content h2 {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 15px;
}

.wb-card-content p {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.safelight-badge {
    background: #ff0000;
    color: #ffffff;
    padding: 4px 8px;
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    align-self: flex-start;
}

/* --- LANDING PAGE: QUICK LINKS SECTIE --- */
.wb-quick-section {
    border-top: 6px double #000000;
    padding-top: 60px;
}

.wb-quick-section h3 {
    font-family: 'Courier New', monospace;
    text-align: center;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.wb-split-row {
    display: flex;
    gap: 40px;
}

.wb-split-block {
    width: 50%;
    border: 3px solid #000000;
    padding: 40px;
    background: #ffffff;
    box-shadow: 8px 8px 0px #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wb-split-block h4 {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 15px;
}

.wb-split-block p {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* --- LANDING PAGE: BUTTONS (SPECIFIEK GEMAAKT TEGEN LINK-OVERRIDES) --- */
.wb-landing-body .wb-btn {
    display: block;
    text-align: center;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
}

.wb-landing-body .wb-split-block .wb-btn {
    width: auto;
    min-width: 200px;
}

.wb-landing-body .wb-btn:hover {
    background: #333333;
    color: #ffffff;
    text-decoration: none;
}

/* --- WOOCOMMERCE & SHOP BRUTALIST STYLING --- */
body.woocommerce,
body.woocommerce-page,
body.woocommerce form.cart,
body.woocommerce div.product {
    font-family: 'Courier New', monospace;
    color: #000;
    background-color: #ffffff;
}

body.woocommerce ul.products li.product,
body.woocommerce-page ul.products li.product {
    background: #ffffff;
    border: 3px solid #000000;
    padding: 20px;
    box-shadow: 10px 10px 0px #000000;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

body.woocommerce ul.products li.product:hover,
body.woocommerce-page ul.products li.product:hover {
    transform: translate(-2px, -2px);
    box-shadow: 12px 12px 0px #000000;
}

body.woocommerce ul.products li.product a img,
body.woocommerce-page ul.products li.product a img {
    border: 2px solid #000000;
    margin-bottom: 15px;
}

body.woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    margin: 10px 0;
}

body.woocommerce ul.products li.product .price,
body.woocommerce-page ul.products li.product .price {
    font-family: 'Courier New', monospace;
    color: #000000;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
}

body.woocommerce ul.products li.product .button,
body.woocommerce div.product .single_add_to_cart_button,
body.woocommerce a.button,
body.woocommerce button.button,
body.woocommerce input.button,
body.woocommerce #respond input#submit {
    width: 100%;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0px;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    display: block;
    text-align: center;
    transition: background 0.2s ease;
}

body.woocommerce ul.products li.product .button:hover,
body.woocommerce div.product .single_add_to_cart_button:hover,
body.woocommerce a.button:hover,
body.woocommerce button.button:hover {
    background: #333333;
    color: #ffffff;
}

body.woocommerce div.product div.images img {
    border: 3px solid #000000;
    box-shadow: 10px 10px 0px #000000;
}

body.woocommerce div.product .product_title {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    border-bottom: 5px solid #000000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

body.woocommerce div.product p.price,
body.woocommerce div.product span.price {
    font-family: 'Courier New', monospace;
    color: #000000;
    font-size: 24px;
    font-weight: bold;
}

body.woocommerce div.product form.cart table.variations {
    background: #ffffff;
    border: 3px solid #000000;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 10px 10px 0px #000000;
    width: 100%;
    display: block;
}

body.woocommerce div.product form.cart table.variations label {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 6px;
    display: block;
}

body.woocommerce div.product form.cart table.variations select {
    border: 1px solid #000000;
    padding: 10px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    background: transparent;
    color: #000000;
    width: 100%;
    border-radius: 0px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M0 3l5 5 5-5z' fill='%23000'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

body.woocommerce div.product .quantity input.qty {
    border: 3px solid #000000;
    padding: 13px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: bold;
    border-radius: 0px;
    background: #ffffff;
    color: #000000;
    margin-right: 10px;
}

body.woocommerce div.product .product_meta {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    text-transform: uppercase;
    border-top: 2px dashed #000000;
    padding-top: 15px;
    margin-top: 20px;
}

body.woocommerce span.onsale,
body.woocommerce-page span.onsale {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 0px;
    border: 2px solid #ffffff;
    box-shadow: 3px 3px 0px #000000;
}

body.woocommerce .woocommerce-message,
body.woocommerce .woocommerce-info,
body.woocommerce .woocommerce-error {
    font-family: 'Courier New', monospace;
    border: 3px solid #000000;
    background: #ffffff;
    color: #000000;
    box-shadow: 8px 8px 0px #000000;
    border-radius: 0px;
}

/* --- RESPONSIVE OPTIMALISATIE --- */
@media (max-width: 768px) {
    html body header.site-header,
    html body .site-header { 
        padding: 40px 0 30px 0; 
    }
    html body .site-header .site-title,
    html body .site-header h1, 
    html body .site-title, 
    html body .site-header h1 a { 
        font-size: 12vw; 
        margin-bottom: 15px; 
    }
    html body .site-header p, 
    html body .site-description { 
        font-size: 1rem; 
    }
    .wb-services-grid { 
        grid-template-columns: 1fr; 
    }
    .wb-split-row { 
        flex-direction: column; 
        gap: 30px; 
    }
    .wb-split-block { 
        width: 100%; 
    }
}