/* 
   KOOPJEHIER MODERN SKIN 
   Overschrijft Hello Elementor & Bootstrap defaults
*/

:root {
    --kjh-primary: #007bff; /* Fris blauw */
    --kjh-accent: #ff6200;  /* Actie oranje */
    --kjh-bg: #f4f7f6;
    --kjh-radius: 12px;
}

body.site-koopjehier {
    background-color: var(--kjh-bg);
    font-family: 'Inter', -apple-system, sans-serif;
    color: #333;
}

/* Knoppen moderniseren */
.button, 
.elementor-button,
button[type="submit"] {
    background-color: var(--kjh-primary) !important;
    border-radius: var(--kjh-radius) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2) !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.button:hover, 
.elementor-button:hover {
    background-color: var(--kjh-accent) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 98, 0, 0.3) !important;
}

/* Product kaarten (Cards) */
.products .product {
    background: #fff;
    border-radius: var(--kjh-radius);
    padding: 20px !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.products .product:hover {
    transform: translateY(-5px);
}

.woocommerce-loop-product__title {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
}

/* Prijs accentueren */
.price {
    color: var(--kjh-accent) !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
}

/* Header/Navigatie subtieler */
#site-header {
    background: #fff !important;
    border-bottom: 1px solid #eee;
}

/* FORCEER HET KOOPJEHIER LOGO */
body.site-koopjehier .navbar-brand img, 
body.site-koopjehier .site-logo img,
body.site-koopjehier img.custom-logo {
    /* Vervang de URL hieronder door de echte link naar je Koopjehier logo in je mediabibliotheek */
    content: url('https://puruscarwash.nl/wp-content/uploads/2024/05/koopjehier-logo.png') !important;
    max-height: 70px !important;
    width: auto !important;
}

/* VERBERG DE PURUS CARWASH TEKSTEN */
body.site-koopjehier .purus-hero-text, 
body.site-koopjehier h1.display-4 {
    display: none !important;
}