/* ================================================================
   MOBIELE CSS — Bandenwinkel
   Let op: product list / card styling zit in product-list.css
         footer styling zit in footer.css
   ================================================================ */

/* -- USP's homepage -- */
@media (max-width: 768px) {
    .icon-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 30px;
    }

    .icon-box i {
        font-size: 35px;
        margin-bottom: 8px;
    }

    .icon-box .title { font-size: 2.1rem; }
    .icon-box .text  { font-size: 1.5rem; }

    .icon-box i.fa-solid { color: #EF5B33 !important; }
}

/* -- Montagepunten stappen -- */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 18px;
    }

    .step-icon { font-size: 2.5rem; }
    .step-content .step-title { font-size: 1.5rem; }
    .step-content .step-text  { font-size: 1.15rem; line-height: 1.6; }
}

/* -- Sorter -- */
@media (max-width: 768px) {
    #sorter {
        width: 50%;
        max-width: 100px;
    }
}

/* -- Add to cart knop (product detail pagina) -- */
@media (max-width: 768px) {
    .action.tocart.primary {
        width: 95% !important;
        font-size: 1.1rem !important;
        padding: 14px 0 !important;
        text-align: center !important;
        background-color: #21314B !important;
        color: #ffffff !important;
    }

    .action.tocart.primary:hover {
        background-color: #EF5B33 !important;
        color: #ffffff !important;
    }

    .actions-secondary .action.tocompare,
    .action.tocompare {
        display: none !important;
    }
}

/* -- Heading balk -- */
@media (max-width: 768px) {
    .heading-balk { font-weight: bold; }
}

/* -- Brand divider -- */
@media only screen and (max-width: 767px) {
    .brand-divider { display: none !important; }
}

/* -- USP's product detail pagina -- */
@media (max-width: 767px) {
    .features-card {
        background: #fff;
        border: 1px solid #e6e8ec;
        border-radius: 12px;
        padding: 14px 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        box-shadow: 0 1px 0 rgba(0,0,0,.03);
    }

    .features-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 14px;
    }

    .features-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        line-height: 1.45;
        color: #475569;
        font-size: 15px;
    }

    .features-item i {
        color: #16a34a;
        font-size: 16px;
        margin-top: 2px;
        flex: 0 0 auto;
    }

    .custom-block-below-addtocart > * + * { margin-top: 12px; }
}

/* -- Reviews -- */
@media (max-width: 767px) {
    .reviews-actions .action.add {
        font-size: 13px;
        border-radius: 8px;
    }
}

/* -- Cart / checkout -- */
.checkout-cart-index #block-shipping { display: none; }

/* -- Algemene knoppen -- */
.action.primary,
.action-primary,
.amshopby-button,
.am-filter-go {
    border: none !important;
}

/* -- Amasty scroll paginanummers -- */
@media (max-width: 768px) {
    .amscroll-page-num.-amscroll-button {
        padding: 6px 12px;
        font-size: 1.2rem;
    }
}

/* -- Full row voordelen -- */
@media (max-width: 767px) {
    .full-row-voordelen {
        position: static;
        left: auto;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

/* ================================================================
   PRODUCT LIST — RESPONSIVE (pc- classes)
   Desktop styling zit in product-list.css
   Hier alleen de mobiele aanpassingen
   ================================================================ */

/* Tablet */
@media (max-width: 880px) {
    a.pc-img  { flex: 0 0 130px; width: 130px; padding: 14px; }
    .pc-right { flex: 0 0 180px; width: 180px; padding: 14px; }
}

/* Mobiel: stack verticaal */
@media (max-width: 600px) {
    .pc-card {
        flex-direction: column;
    }

    a.pc-img {
        flex: none;
        width: 100%;
        min-height: 140px;
        border-right: none;
        border-bottom: 1px solid #e2e5ea;
    }

    a.pc-img .product-image-photo {
        max-width: 100px;
        max-height: 100px;
    }

    .pc-info {
        padding: 14px 16px;
    }

    .pc-right {
        flex: none;
        width: 100%;
        align-items: stretch;
        border-left: none;
        border-top: 1px solid #e2e5ea;
        padding: 14px 16px;
    }

    .pc-price-wrap,
    .pc-per-band     { text-align: left; }
    .pc-stock        { justify-content: flex-start; }

    .pc-form {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .pc-qty            { flex: 0 0 120px; width: 120px; }
    button.pc-btn-cart { flex: 1 1 auto; width: auto; }
    a.pc-btn-detail    { flex: 1 1 100%; }
}