/* =========================================================
   PRINTMYSTYLE
   VOLLEDIGE STYLESHEET
========================================================= */


/* =========================
   ALGEMEEN
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111111;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================
   NAVIGATIE
========================= */

.navbar {
    height: 90px;
    padding: 10px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    position: sticky;
    top: 0;

    z-index: 100;
}

.logo img {
    width: 150px;
    height: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    font-size: 14px;
    font-weight: bold;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: 0.2s;
}

nav a:hover {
    color: #dfff00;
}


/* =========================
   NAVIGATIE ACTIES
========================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* =========================
   WINKELWAGEN KNOP
========================= */

.cart-button {
    position: relative;

    border: none;

    background: #111111;
    color: #ffffff;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    font-size: 20px;

    cursor: pointer;

    transition: 0.2s;
}

.cart-button:hover {
    background: #dfff00;
    color: #111111;
}

#cartCount {
    position: absolute;

    top: -5px;
    right: -5px;

    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dfff00;
    color: #111111;

    border-radius: 50%;

    font-size: 11px;
    font-weight: bold;
}


/* =========================
   HAMBURGERMENU KNOP
========================= */

.menu-button {
    display: none;

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: #111111;
    color: #ffffff;

    font-size: 22px;

    cursor: pointer;

    transition: 0.2s;
}

.menu-button:hover {
    background: #dfff00;
    color: #111111;
}


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

.hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    padding: 80px 8%;

    background: #111111;
    color: #ffffff;

    position: relative;

    overflow: hidden;
}

.hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -150px;

    background: #dfff00;

    border-radius: 50%;

    opacity: 0.9;
}

.hero-content {
    max-width: 700px;

    position: relative;

    z-index: 2;
}

.hero-small {
    color: #dfff00;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(60px, 9vw, 120px);

    line-height: 0.85;

    font-weight: 900;

    letter-spacing: -5px;
}

.hero h1 span {
    color: #dfff00;
}

.hero-description {
    max-width: 500px;

    margin-top: 35px;
    margin-bottom: 35px;

    color: #cccccc;

    line-height: 1.7;
}

.shop-button {
    display: inline-block;

    padding: 16px 35px;

    background: #dfff00;
    color: #111111;

    font-weight: 900;

    letter-spacing: 1px;

    transition: 0.2s;
}

.shop-button:hover {
    transform: translateY(-3px);
}


/* =========================
   SHOP
========================= */

.shop {
    padding: 100px 7%;
}

.section-title {
    text-align: center;

    margin-bottom: 50px;
}

.section-title p,
.section-label {
    color: #777777;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 45px;
}


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

.products {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    max-width: 1200px;

    margin: auto;
}

.product-card {
    background: #f6f6f6;

    transition: 0.25s;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-image {
    height: 400px;

    background: #eeeeee;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.coming-soon {
    position: absolute;

    top: 20px;
    left: 20px;

    padding: 8px 12px;

    background: #dfff00;
    color: #111111;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 1px;

    z-index: 2;
}

.shirt-placeholder {
    font-size: 130px;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 20px;

    margin-bottom: 10px;
}

.product-description {
    color: #777777;

    font-size: 14px;

    line-height: 1.5;

    margin-bottom: 20px;
}


/* =========================
   MAATKEUZE
========================= */

.product-info label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: bold;
}

.size-select {
    width: 100%;

    padding: 12px;

    margin-bottom: 20px;

    border: 1px solid #cccccc;

    background: #ffffff;

    color: #111111;

    font-size: 14px;

    cursor: pointer;
}

.size-select:focus {
    outline: 2px solid #dfff00;

    border-color: #111111;
}


/* =========================
   PRODUCT PRIJS EN KNOP
========================= */

.product-bottom {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 15px;
}

.price {
    font-size: 20px;

    font-weight: bold;
}

.add-cart {
    border: none;

    background: #111111;
    color: #ffffff;

    padding: 11px 15px;

    font-size: 11px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.2s;
}

.add-cart:hover {
    background: #dfff00;

    color: #111111;
}


/* =========================
   OVER ONS
========================= */

.about {
    background: #111111;

    color: #ffffff;

    padding: 100px 10%;

    display: flex;

    justify-content: center;
}

.about > div {
    max-width: 800px;

    text-align: center;
}

.about h2 {
    font-size: 55px;

    line-height: 0.95;

    margin-bottom: 30px;
}

.about p {
    color: #bbbbbb;

    line-height: 1.7;

    max-width: 700px;

    margin: 0 auto 20px;
}

.about .section-label {
    color: #dfff00;
}


/* =========================
   CONTACT
========================= */

.contact {
    padding: 100px 7%;

    background: #f6f6f6;
}

.contact-container {
    max-width: 1200px;

    margin: auto;
}

.contact-title {
    max-width: 700px;

    margin-left: auto;
    margin-right: auto;
}

.contact-intro {
    margin-top: 18px;

    color: #777777;

    line-height: 1.7;

    font-size: 15px;

    letter-spacing: normal !important;

    font-weight: normal !important;
}


/* =========================
   CONTACT GRID
========================= */

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    margin-top: 60px;
}

.contact-info,
.contact-form-container {
    background: #ffffff;

    padding: 40px;
}

.contact-label {
    color: #777777;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 10px;
}

.contact-info h3,
.contact-form-container h3 {
    font-size: 27px;

    margin-bottom: 30px;
}


/* =========================
   CONTACTGEGEVENS
========================= */

.contact-detail {
    padding: 18px 0;

    border-bottom: 1px solid #eeeeee;
}

.contact-detail span {
    display: block;

    color: #777777;

    font-size: 12px;

    font-weight: bold;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 7px;
}

.contact-detail a,
.contact-detail p {
    color: #111111;

    font-size: 16px;

    line-height: 1.5;
}

.contact-detail a:hover {
    text-decoration: underline;
}


/* =========================
   BEDRIJFSGEGEVENS
========================= */

.company-details {
    margin-top: 40px;

    padding-top: 30px;

    border-top: 4px solid #dfff00;
}

.company-details h3 {
    margin-bottom: 20px;
}

.company-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 10px 0;

    font-size: 14px;
}

.company-row span {
    color: #777777;
}

.company-row strong {
    text-align: right;
}


/* =========================
   CONTACTFORMULIER
========================= */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px;

    border: 1px solid #cccccc;

    background: #ffffff;

    color: #111111;

    font-family: inherit;

    font-size: 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group textarea {
    resize: vertical;

    min-height: 140px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #dfff00;

    border-color: #111111;
}


/* =========================
   CONTACT VERSTUREN KNOP
========================= */

.contact-submit {
    width: 100%;

    padding: 16px;

    border: none;

    background: #111111;
    color: #ffffff;

    font-weight: bold;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.2s;
}

.contact-submit:hover {
    background: #dfff00;

    color: #111111;
}

.form-notice {
    margin-top: 15px;

    color: #888888;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 50px 20px;

    text-align: center;

    background: #ffffff;
}

footer img {
    width: 180px;

    margin-bottom: 20px;
}

footer p {
    color: #777777;

    font-size: 13px;

    margin-bottom: 8px;
}


/* =========================
   WINKELWAGEN ACHTERGROND
========================= */

.cart-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.5);

    z-index: 200;

    opacity: 0;

    visibility: hidden;

    transition: 0.3s;
}

.cart-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* =========================
   WINKELWAGEN PANEL
========================= */

.cart {
    position: fixed;

    top: 0;
    right: -420px;

    width: 400px;

    max-width: 90%;

    height: 100vh;

    background: #ffffff;

    z-index: 201;

    display: flex;

    flex-direction: column;

    transition: 0.3s;
}

.cart.active {
    right: 0;
}


/* =========================
   WINKELWAGEN HEADER
========================= */

.cart-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 25px;

    border-bottom: 1px solid #eeeeee;
}

.cart-header h2 {
    font-size: 24px;
}

.cart-header button {
    border: none;

    background: none;

    font-size: 30px;

    cursor: pointer;
}


/* =========================
   WINKELWAGEN PRODUCTEN
========================= */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 25px;
}

.empty-cart {
    text-align: center;

    color: #888888;

    margin-top: 50px;
}

.cart-item {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 15px 0;

    border-bottom: 1px solid #eeeeee;
}

.cart-item h4 {
    margin-bottom: 6px;
}

.cart-item p {
    color: #777777;

    font-size: 14px;

    margin-bottom: 4px;
}

.remove-item {
    border: none;

    background: none;

    color: #999999;

    cursor: pointer;

    transition: 0.2s;
}

.remove-item:hover {
    color: #cc0000;
}


/* =========================
   WINKELWAGEN ONDERKANT
========================= */

.cart-footer {
    padding: 25px;

    border-top: 1px solid #eeeeee;
}

.cart-total {
    display: flex;

    justify-content: space-between;

    margin-bottom: 20px;

    font-size: 20px;
}

.checkout-button {
    width: 100%;

    padding: 17px;

    border: none;

    background: #dfff00;

    color: #111111;

    font-weight: bold;

    cursor: pointer;

    transition: 0.2s;
}

.checkout-button:hover {
    background: #111111;

    color: #ffffff;
}


/* =========================================================
   TABLET EN MOBIEL
   800PX EN KLEINER
========================================================= */

@media (max-width: 800px) {


    /* =========================
       MOBIELE NAVIGATIE
    ========================= */

    .navbar {
        padding: 10px 20px;
    }

    .logo img {
        width: 110px;
    }

    .menu-button {
        display: block;
    }

    nav {
        position: absolute;

        top: 90px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        gap: 0;

        background: #ffffff;

        border-top: 1px solid #eeeeee;

        border-bottom: 1px solid #eeeeee;

        box-shadow:
            0 10px 20px
            rgba(0, 0, 0, 0.08);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 18px 25px;

        border-bottom: 1px solid #eeeeee;

        font-size: 14px;
    }

    nav a:last-child {
        border-bottom: none;
    }

    nav a:hover {
        background: #dfff00;

        color: #111111;
    }


    /* =========================
       MOBIELE HERO
    ========================= */

    .hero {
        min-height: 600px;

        padding: 60px 25px;
    }

    .hero::after {
        width: 350px;
        height: 350px;

        right: -180px;
        top: -100px;
    }

    .hero h1 {
        font-size: 65px;

        letter-spacing: -3px;
    }


    /* =========================
       MOBIELE PRODUCTEN
    ========================= */

    .products {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 350px;
    }

    .section-title h2 {
        font-size: 35px;
    }

    .product-bottom {
        flex-direction: column;

        align-items: stretch;
    }

    .price {
        text-align: center;
    }

    .add-cart {
        width: 100%;

        padding: 14px;
    }


    /* =========================
       MOBIEL OVER ONS
    ========================= */

    .about {
        padding: 70px 25px;
    }

    .about h2 {
        font-size: 40px;
    }


    /* =========================
       MOBIEL CONTACT
    ========================= */

    .contact {
        padding: 70px 25px;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .contact-info,
    .contact-form-container {
        padding: 30px;
    }


    /* =========================
       MOBIELE WINKELWAGEN
    ========================= */

    .cart {
        width: 100%;

        max-width: 100%;
    }

}


/* =========================================================
   KLEINE TELEFOONS
   450PX EN KLEINER
========================================================= */

@media (max-width: 450px) {


    /* =========================
       NAVIGATIE
    ========================= */

    .navbar {
        height: 78px;

        padding: 8px 14px;
    }

    .logo img {
        width: 95px;
    }

    .nav-actions {
        gap: 8px;
    }

    .cart-button,
    .menu-button {
        width: 42px;

        height: 42px;
    }

    .cart-button {
        font-size: 17px;
    }

    .menu-button {
        font-size: 20px;
    }

    nav {
        top: 78px;
    }


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

    .hero {
        min-height: 520px;

        padding: 50px 20px;
    }

    .hero-small {
        font-size: 10px;

        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: 52px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .shop-button {
        width: 100%;

        text-align: center;
    }


    /* =========================
       SHOP
    ========================= */

    .shop {
        padding: 70px 18px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .product-image {
        height: 300px;
    }

    .shirt-placeholder {
        font-size: 100px;
    }

    .product-info {
        padding: 20px;
    }


    /* =========================
       OVER ONS
    ========================= */

    .about {
        padding: 60px 18px;
    }

    .about h2 {
        font-size: 34px;
    }


    /* =========================
       CONTACT
    ========================= */

    .contact {
        padding: 60px 18px;
    }

    .contact-info,
    .contact-form-container {
        padding: 25px 20px;
    }

    .contact-info h3,
    .contact-form-container h3 {
        font-size: 23px;
    }

    .company-row {
        flex-direction: column;

        gap: 4px;
    }

    .company-row strong {
        text-align: left;
    }

    .contact-detail a {
        overflow-wrap: anywhere;
    }


    /* =========================
       WINKELWAGEN
    ========================= */

    .cart-header,
    .cart-items,
    .cart-footer {
        padding-left: 20px;

        padding-right: 20px;
    }


    /* =========================
       FOOTER
    ========================= */

    footer img {
        width: 150px;
    }

}

/* =========================================================
   VERBETERDE WINKELWAGEN
========================================================= */

.cart-item-info {
    flex: 1;
}

.cart-item-right {
    min-width: 95px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    border: 1px solid #dddddd;
    background: #ffffff;
}

.quantity-button {
    width: 34px;
    height: 34px;
    border: none;
    background: #f2f2f2;
    color: #111111;
    font-weight: bold;
    cursor: pointer;
}

.quantity-button:hover {
    background: #dfff00;
}

.quantity-value {
    min-width: 34px;
    text-align: center;
    font-weight: bold;
}

/* =========================================================
   NETLIFY FORM STATUS
========================================================= */

.hidden-field {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    white-space: nowrap;
}

.form-status {
    min-height: 20px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.form-status.success,
.form-status.error {
    font-weight: bold;
}

.contact-submit:disabled,
.place-order-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* =========================================================
   AFREKENPAGINA
========================================================= */

.checkout-page {
    background: #f4f4f4;
}

.checkout-navbar {
    position: relative;
}

.back-to-shop {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.back-to-shop:hover {
    color: #dfff00;
}

.checkout-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 30px 100px;
}

.checkout-heading {
    margin-bottom: 45px;
}

.checkout-heading > p {
    color: #777777;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.checkout-heading h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.checkout-heading span {
    color: #777777;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 35px;
    align-items: start;
}

.checkout-form-card,
.order-summary-card {
    background: #ffffff;
    padding: 38px;
}

.checkout-form-card h2,
.order-summary-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
}

.full-width {
    grid-column: 1 / -1;
}

.checkout-form-card .form-group input,
.checkout-form-card .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cccccc;
}

.payment-placeholder {
    margin: 12px 0 24px;
    padding: 18px;
    border-left: 4px solid #dfff00;
    background: #f6f6f6;
}

.payment-placeholder p {
    margin-top: 7px;
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
}

.place-order-button {
    width: 100%;
    padding: 17px;
    border: none;
    background: #dfff00;
    color: #111111;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
}

.place-order-button:hover:not(:disabled) {
    background: #111111;
    color: #ffffff;
}

.order-summary-card {
    position: sticky;
    top: 25px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #eeeeee;
}

.checkout-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.checkout-item p {
    color: #777777;
    font-size: 13px;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 21px;
}

.edit-cart-link {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    text-decoration: underline;
}

.checkout-empty {
    padding: 20px 0 30px;
    color: #777777;
}

.checkout-empty a {
    display: inline-block;
    margin-top: 12px;
    color: #111111;
    font-weight: bold;
    text-decoration: underline;
}

@media (max-width: 800px) {
    .checkout-main {
        padding: 50px 20px 70px;
    }

    .checkout-heading h1 {
        font-size: 38px;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary-card {
        position: static;
        order: -1;
    }
}

@media (max-width: 520px) {
    .checkout-navbar {
        height: auto;
        min-height: 78px;
        gap: 15px;
    }

    .back-to-shop {
        max-width: 150px;
        text-align: right;
        line-height: 1.4;
    }

    .checkout-main {
        padding-left: 15px;
        padding-right: 15px;
    }

    .checkout-form-card,
    .order-summary-card {
        padding: 24px 20px;
    }

    .checkout-form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }

    .cart-item {
        align-items: flex-start;
    }
}


/* =========================================================
   MELDINGSBALK
========================================================= */

.notification-bar {
    position: fixed;
    top: 105px;
    left: 50%;
    transform: translate(-50%, -20px);
    width: calc(100% - 40px);
    max-width: 520px;
    padding: 16px 22px;
    background: #dfff00;
    color: #111111;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.notification-bar.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}


/* =========================================================
   UITGEBREIDE FOOTER
========================================================= */

.site-footer {
    background: #111111;
    color: #ffffff;
    padding: 65px 7% 25px;
    text-align: left;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr repeat(4, 1fr);
    gap: 35px;
}

.site-footer .footer-column img {
    width: 160px;
    background: #ffffff;
    padding: 8px;
    margin-bottom: 18px;
}

.site-footer .footer-column h3 {
    color: #dfff00;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.site-footer .footer-column p {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 7px;
}

.site-footer .footer-column a {
    color: #ffffff;
}

.site-footer .footer-column a:hover {
    color: #dfff00;
    text-decoration: underline;
}

.footer-brand p {
    max-width: 260px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 22px;
    border-top: 1px solid #333333;
}

.site-footer .footer-bottom p {
    color: #888888;
    font-size: 12px;
    margin: 0;
}

@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .notification-bar {
        top: 90px;
        width: calc(100% - 30px);
        padding: 14px 16px;
        font-size: 13px;
    }

    .site-footer {
        padding: 50px 20px 22px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


/* =========================================================
   INFORMATIEPAGINA'S
========================================================= */

.info-page {
    min-height: 100vh;
    background: #f6f6f6;
}

.info-main {
    max-width: 950px;
    margin: 0 auto;
    padding: 80px 25px 100px;
}

.info-hero {
    margin-bottom: 35px;
}

.info-hero .contact-label {
    color: #777777;
}

.info-hero h1 {
    font-size: clamp(38px, 7vw, 64px);
    line-height: 1;
    margin-bottom: 18px;
}

.info-hero > p:last-child {
    max-width: 700px;
    color: #666666;
    line-height: 1.7;
}

.info-card {
    background: #ffffff;
    padding: 38px;
    margin-bottom: 24px;
}

.info-card h2 {
    font-size: 25px;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 18px;
    margin: 24px 0 10px;
}

.info-card p,
.info-card li {
    color: #555555;
    line-height: 1.75;
    font-size: 15px;
}

.info-card ul {
    padding-left: 20px;
}

.info-warning {
    border-left: 5px solid #dfff00;
}

.info-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.info-link-button {
    display: inline-block;
    padding: 13px 18px;
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.info-link-button:hover {
    background: #dfff00;
    color: #111111;
}

@media (max-width: 600px) {
    .info-main {
        padding: 55px 18px 75px;
    }

    .info-card {
        padding: 25px 20px;
    }
}

.checkout-legal-note {
    margin: 18px 0;
    color: #666666;
    font-size: 12px;
    line-height: 1.6;
}

.checkout-legal-note a {
    color: #111111;
    font-weight: bold;
    text-decoration: underline;
}


/* =========================================================
   OFFICIËLE VOORWAARDEN EN HERROEPINGSFORMULIER
========================================================= */

.legal-document {
    background: #ffffff;
    padding: 40px;
}

.legal-version {
    color: #777777;
    font-weight: bold;
    margin-bottom: 30px;
}

.legal-article {
    padding: 0 0 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid #eeeeee;
}

.legal-article:last-child {
    border-bottom: none;
}

.legal-article h2 {
    font-size: 23px;
    margin-bottom: 15px;
}

.legal-article h3 {
    font-size: 17px;
    margin: 18px 0 8px;
}

.legal-article p {
    color: #444444;
    line-height: 1.75;
    margin-bottom: 10px;
}

.legal-bullet {
    padding-left: 18px;
}

.withdrawal-card h3 {
    margin: 28px 0 10px;
}

.return-address-warning {
    margin: 20px 0 30px;
    padding: 18px;
    border-left: 5px solid #dfff00;
    background: #f6f6f6;
}

.return-address-warning p {
    margin-top: 8px;
}

.withdrawal-text {
    margin-bottom: 30px;
}

.print-line {
    padding: 9px 0;
    font-family: monospace;
}

.blank-line {
    height: 36px;
    border-bottom: 1px solid #111111;
    margin-bottom: 10px;
}

.withdrawal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin: 28px 0;
}

.signature-grid {
    margin-top: 40px;
}

.signature-grid small {
    display: block;
    margin-top: 8px;
    color: #777777;
}

.print-form-button {
    margin-top: 35px;
    padding: 15px 24px;
    border: none;
    background: #111111;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
}

.print-form-button:hover {
    background: #dfff00;
    color: #111111;
}

.checkout-terms-check {
    margin: 18px 0 22px;
    padding: 18px;
    background: #f6f6f6;
}

.checkout-terms-check label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.checkout-terms-check input {
    margin-top: 3px;
}

.checkout-terms-check p {
    margin-top: 10px;
    color: #666666;
    font-size: 12px;
    line-height: 1.6;
}

.checkout-terms-check a {
    text-decoration: underline;
    font-weight: bold;
}

@media (max-width: 600px) {
    .legal-document {
        padding: 25px 20px;
    }

    .withdrawal-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media print {
    .navbar,
    .site-footer,
    .print-form-button {
        display: none !important;
    }

    body,
    .info-page,
    .info-main,
    .info-card {
        background: #ffffff !important;
    }

    .info-main {
        padding: 0;
    }

    .withdrawal-card {
        box-shadow: none;
        padding: 0;
    }

    .return-address-warning {
        border: 1px solid #000000;
    }
}


/* Verzendkosten in winkelwagen en checkout */
.cart-subtotal,
.cart-shipping {
    margin-bottom: 8px;
    font-size: 13px;
}

.cart-subtotal strong,
.cart-shipping strong {
    font-size: 13px;
}

.checkout-subtotal-row,
.checkout-shipping-row {
    border-top: none;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
}


/* =========================================================
   NIEUWE WINKELWAGENICOON
========================================================= */

.cart-button {
    background: #f2f3f3;
    overflow: visible;
    padding: 7px;
}

.cart-button:hover {
    background: #dfff00;
}

.cart-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#cartCount {
    background: #dfff00;
    color: #111111;
    border: 2px solid #ffffff;
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

.cart-button:hover #cartCount {
    background: #111111;
    color: #ffffff;
}

.free-shipping-message {
    margin-bottom: 16px;
    padding: 12px 14px;
    background: #f2f2f2;
    border-left: 4px solid #dfff00;
    color: #111111;
    font-size: 12px;
    font-weight: 700;
}
.free-shipping-message.free-shipping-earned {
    background: #dfff00;
}


/* =========================================================
   GRATIS VERZENDING - VOORTGANGSBALK
========================================================= */
.free-shipping-box {
    margin-bottom: 16px;
}

.free-shipping-box .free-shipping-message {
    margin-bottom: 8px;
}

.free-shipping-track {
    width: 100%;
    height: 7px;
    background: #e3e3e3;
    overflow: hidden;
}

.free-shipping-progress {
    width: 0;
    height: 100%;
    background: #dfff00;
    transition: width 0.3s ease;
}


/* =========================================================
   MAATADVIES
========================================================= */
.size-advice-button {
    border: 0;
    background: transparent;
    padding: 7px 0 2px;
    color: #555555;
    font-size: 11px;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

.size-advice-button:hover {
    color: #111111;
}

.size-advice-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
}

.size-advice-overlay.active {
    opacity: 1;
    visibility: visible;
}

.size-advice-modal {
    position: fixed;
    z-index: 1101;
    top: 50%;
    left: 50%;
    width: calc(100% - 36px);
    max-width: 550px;
    max-height: calc(100vh - 50px);
    overflow-y: auto;
    transform: translate(-50%, -46%);
    background: #ffffff;
    padding: 38px;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.size-advice-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.size-advice-modal h2 {
    margin: 6px 0 16px;
    font-size: 30px;
}

.size-advice-modal > p {
    color: #555555;
    line-height: 1.7;
}

.size-advice-close {
    position: absolute;
    right: 15px;
    top: 12px;
    border: none;
    background: transparent;
    font-size: 30px;
    cursor: pointer;
}

.size-advice-tip {
    margin: 22px 0;
    padding: 18px;
    background: #f5f5f5;
    border-left: 5px solid #dfff00;
}

.size-advice-tip p {
    margin-top: 7px;
    color: #555555;
    line-height: 1.65;
}

.size-advice-note {
    font-size: 12px;
}


/* =========================================================
   VOORRAADSTATUS
========================================================= */
.product-stock {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 10px 0 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.product-stock span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999999;
}

.product-stock.coming-soon {
    color: #666666;
}


/* =========================================================
   BEDANKTPAGINA
========================================================= */
.thank-you-main {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #f5f5f5;
}

.thank-you-card {
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    padding: 50px;
}

.thank-you-check {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dfff00;
    color: #111111;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 22px;
}

.thank-you-card h1 {
    margin: 5px 0 15px;
    font-size: clamp(36px, 7vw, 56px);
    line-height: 1;
}

.thank-you-intro {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thank-you-order-number {
    padding: 18px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.thank-you-order-number span {
    color: #777777;
}

.thank-you-summary {
    margin: 25px 0;
}

.thank-you-item,
.thank-you-total {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid #eeeeee;
}

.thank-you-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.thank-you-item span {
    color: #777777;
    font-size: 12px;
}

.thank-you-total {
    font-size: 18px;
    border-bottom: none;
    padding-top: 18px;
}

.thank-you-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0 30px;
}

.thank-you-details div {
    background: #f5f5f5;
    padding: 18px;
}

.thank-you-details span,
.thank-you-details strong {
    display: block;
}

.thank-you-details span {
    margin-bottom: 5px;
    color: #777777;
    font-size: 12px;
}

.continue-shopping-button {
    display: inline-block;
    padding: 15px 22px;
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.continue-shopping-button:hover {
    background: #dfff00;
    color: #111111;
}

@media (max-width: 600px) {
    .size-advice-modal {
        padding: 30px 22px;
    }

    .thank-you-card {
        padding: 30px 22px;
    }

    .thank-you-details {
        grid-template-columns: 1fr;
    }
}
