/* --- Basis --- */
body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #222;
    margin: 0;
    padding: 0;
}

/* --- Header / Logo --- */
.white-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    text-align: center;
    padding: 15px 0;
}

.site-logo {
    width: 160px;
    height: auto;
}

/* --- Layout hoofdsectie --- */
.shopify-layout {
    display: flex;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* --- Productafbeelding links --- */
.product-gallery {
    flex: 1 1 45%;
    background: #f3fff6;
    text-align: center;
    padding: 30px;
}

.main-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: inline-block;
}

/* Swipebare thumbnails */
.thumbnail-slider {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.thumbnail-slider img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}
.thumbnail-slider img:hover {
    border: 2px solid #4CAF50;
}

/* --- Productinformatie rechts --- */
.product-info {
    flex: 1 1 55%;
    padding: 40px;
}

h1 {
    margin-bottom: 10px;
}

/* Trustpilot badge */
.trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 8px; /* ruimte tussen logo en tekst */
    white-space: nowrap;
}

.trustpilot-logo {
    height: 20px;
}

.trust-text {
    display: inline;
    white-space: nowrap;
}


/* --- USP’s --- */
.usp-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
}
.usp-list li {
    margin-bottom: 6px;
}

/* --- Voorraadwaarschuwing --- */
.stock-warning {
    background: #fff9e6;
    border-left: 4px solid #f39c12;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
}

/* --- Pakketselectie --- */
hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 25px 0;
}

.pakket-titel {
    text-align: center;
    margin-bottom: 20px;
}

.pakket-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pakket-box {
    display: block;
    border: 2px solid #b8eac2;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    background: #fefefe;
}

.pakket-box:hover {
    border-color: #4CAF50;
}

.pakket-box input {
    display: none;
}

.pakket-content {
    padding: 15px;
}

.pakket-header {
    display: flex;
    justify-content: flex-end;
}

.badge {
    font-size: 0.8rem;
    color: #fff;
    padding: 4px 10px;
    border-radius: 0 8px 0 8px;
    font-weight: 600;
}
.badge.green { background: #4CAF50; }
.badge.box { background: #3e8e41; }

.pakket-body {
    text-align: left;
}
.pakket-naam {
    font-weight: 600;
    margin: 0;
}
.pakket-info {
    color: #555;
    margin: 4px 0;
}
.pakket-prijs {
    font-weight: bold;
    text-align: right;
}

.pakket-box input:checked + .pakket-content {
    border: 2px solid #4CAF50;
    background: #e8fff0;
}

/* CTA-knop */
.cta-button.full {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 16px;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 20px;
}
.cta-button.full:hover {
    background: #333;
    transform: scale(1.02);
}

/* Betaaliconen */
.betalingen, .betaling {
    margin-top: 25px;
    text-align: center;
}
.icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}
.icons img {
    height: 28px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
}
.icons img:hover {
    filter: none;
}

/* --- Productbeschrijving onderaan --- */
.product-description {
    background: #fff;
    padding: 60px 20px;
    margin-top: 40px;
    line-height: 1.6;
}
.product-description .container {
    max-width: 900px;
    margin: 0 auto;
}
.product-description h2 {
    color: #2c662d;
    margin-bottom: 15px;
}
.product-description h3 {
    color: #3e8e41;
    margin-top: 30px;
}
.product-description ul {
    list-style: none;
    padding: 0;
}
.product-description ul li {
    margin: 6px 0;
}
.highlight-offer {
    background: #eaffea;
    border-left: 4px solid #4CAF50;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 1rem;
    margin: 15px 0;
}
.closing-text {
    font-weight: 500;
    margin-top: 20px;
}

/* --- Footer --- */
.footer {
    background: #b8eac2;
    padding: 40px 20px;
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-col h4 {
    border-bottom: 1px solid #222;
    margin-bottom: 10px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin: 5px 0;
}
.footer a {
    color: #1a1a1a;
    text-decoration: none;
}
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.social-icons img {
    width: 24px;
    height: 24px;
}
/* --- Responsieve aanpassingen --- */
@media (max-width: 768px) {
    .shopify-layout {
        flex-direction: column;
    }
    .product-gallery {
        order: -1;
        width: 100%;
        padding: 0;
        text-align: center;
        margin: 0;
    }
    .main-image img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
        border-radius: 0;
    }
    .thumbnail-slider img {
        width: 60px;
        height: 60px;
    }
    .thumbnail-slider {
        justify-content: center;
        margin-top: 12px;
        padding: 0 10px;
    }
    .product-info {
        padding: 25px;
    }
}

/* ✅ Vanaf hier weer algemene (desktop + mobiel) stijlen */

/* Footer bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
    font-size: 0.85rem;
    color: #333;
}

/* Korting-labels */
.korting-tag {
    background: #ff5252;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    margin-left: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Prijsstijl */
.prijs-box {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 6px;
}
.oude-prijs {
    color: #888;
    text-decoration: line-through;
    font-size: 0.9rem;
}
.nieuwe-prijs {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}

/* Visuele focus bij hover of geselecteerd */
.pakket-box input:checked + .pakket-content,
.pakket-box:hover .pakket-content {
    border: 2px solid #4CAF50;
    background: #f3fff6;
    box-shadow: 0 0 6px rgba(76,175,80,0.3);
}

/* Iets meer lucht tussen pakketten */
.pakket-form {
    gap: 18px;
}

/* Zorg dat korting-tag en badges netjes naast elkaar staan */
.pakket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    text-decoration: none;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 6px 10px;
    transition: 0.25s ease;
}

.trustpilot-badge:hover {
    background: #eafce7;
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.trustpilot-logo {
    height: 32px;
}

.trust-text {
    font-size: 0.95rem;
    color: #222;
}
.footer a:hover {
    color: #4CAF50;
    text-decoration: underline;
}

.footer h4 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer ul li a {
    transition: 0.2s ease;
}
.subprijs {
    display: block;
    font-size: 0.85em;
    color: #777;
    margin-top: 2px;
    font-style: italic;
}
.prijs-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* ✅ zorgt dat alles rechts uitlijnt */
    text-align: right;
}

.prijs-subtext {
    font-size: 0.85em;
    color: #777;
    margin-top: 3px;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
    font-size: 0.85rem;
    color: #333;
}
