/* ============================================================
   Dutch_Air_Products — products.css  v1.0.0
   Productkaarten, categoriepagina's, detailpagina
============================================================ */

/* ----- Grid (shortcode + taxonomiepagina) ----- */
.da-prod-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.da-prod-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.da-prod-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.da-prod-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ----- Productkaart ----- */
.da-prod-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #FFFFFF;
    border: 1px solid #E4E8ED;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    font-family: 'Poppins', sans-serif;
}

.da-prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(31,42,56,0.12);
    border-color: #3FA7D6;
}

/* Afbeelding */
.da-prod-card__img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #F4F6F8;
    overflow: hidden;
}

.da-prod-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.da-prod-card:hover .da-prod-card__img {
    transform: scale(1.04);
}

.da-prod-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C0C8D2;
}

.da-prod-card__img-placeholder svg {
    width: 48px;
    height: 48px;
}

/* Merkbadge */
.da-prod-card__brand {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.92);
    color: #1F2A38;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.10);
}

.da-prod-card__brand.da-prod-card__brand--img {
    padding: 6px 8px;
    background: rgba(255,255,255,0.92);
    border-radius: 4px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.da-prod-card__brand--img img {
    display: block;
    width: auto;
    height: auto;
    max-width: 90px;
    max-height: 40px;
    filter: none;
    object-fit: contain;
}
















/* Body */
.da-prod-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.da-prod-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1F2A38 !important;
    margin: 0;
    line-height: 1.3;
}

.da-prod-card__intro {
    font-size: 0.85rem;
    color: #5A6475;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.da-prod-card__capacity {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #3FA7D6;
    margin-top: 4px;
}

.da-prod-card__capacity svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.da-prod-card__more {
    font-size: 0.78rem;
    font-weight: 600;
    color: #3FA7D6;
    margin-top: auto;
    padding-top: 8px;
    transition: color 0.2s;
}

.da-prod-card:hover .da-prod-card__more {
    color: #1F2A38;
}

/* ============================================================
   ARCHIEF / TAXONOMIE PAGINA
============================================================ */

.da-archive-product {
    font-family: 'Poppins', sans-serif;
    min-height: 60vh;
}

.da-archive-product .da-container {
    padding-top: 40px;
    padding-bottom: 64px;
}

/* Breadcrumb balk */
.da-ap__breadcrumb-bar {
    background: #F4F6F8;
    border-bottom: 1px solid #DDE2E8;
    padding: 10px 0;
}

.da-ap__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: 0.8rem;
    color: #8A94A2;
}

.da-ap__breadcrumb a {
    color: #5A6475;
    text-decoration: none;
    transition: color 0.2s;
}

.da-ap__breadcrumb a:hover { color: #3FA7D6; }
.da-ap__breadcrumb span[aria-current] { color: #3A3F47; font-weight: 500; }

/* Subcategorie navigatie */
.da-ap__subcat-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.da-ap__subcat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #F4F6F8;
    border: 1px solid #E4E8ED;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2B2F33;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.da-ap__subcat-link:hover,
.da-ap__subcat-link.is-active {
    background: #1F2A38;
    border-color: #1F2A38;
    color: #FFFFFF;
}

.da-ap__subcat-count {
    background: rgba(63,167,214,0.15);
    color: #3FA7D6;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 10px;
}

/* Categorieëngrid (archief-overzicht) */
.da-ap__cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.da-ap__cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden;
    min-height: 260px;
    background: #1F2A38;
    transition: transform 0.22s, box-shadow 0.22s;
}

.da-ap__cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(31,42,56,0.2);
}

.da-ap__cat-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.da-ap__cat-card:hover .da-ap__cat-img {
    transform: scale(1.05);
}

.da-ap__cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31,42,56,0.88) 0%, rgba(31,42,56,0.3) 60%, transparent 100%);
}

.da-ap__cat-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1F2A38 0%, #2B2F33 100%);
}

.da-ap__cat-body {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.da-ap__cat-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF !important;
    margin: 0;
}

.da-ap__cat-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    margin: 0;
}

.da-ap__cat-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: #3FA7D6;
    margin-top: 6px;
    transition: color 0.2s;
}

.da-ap__cat-card:hover .da-ap__cat-link {
    color: #FFFFFF;
}

.da-ap__empty {
    color: #5A6475;
    font-size: 1rem;
    padding: 48px 0;
    text-align: center;
}

/* ============================================================
   LOSSE PRODUCTPAGINA
============================================================ */

.da-single-product {
    font-family: 'Poppins', sans-serif;
}

/* Breadcrumb balk */
.da-sp__breadcrumb-bar {
    background: #F4F6F8;
    border-bottom: 1px solid #E4E8ED;
    padding: 12px 0;
}

.da-sp__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: 0.78rem;
    color: #8A95A3;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.da-sp__breadcrumb a {
    color: #5A6475;
    text-decoration: none;
    transition: color 0.2s;
}

.da-sp__breadcrumb a:hover { color: #3FA7D6; }
.da-sp__breadcrumb span[aria-current] { color: #1F2A38; font-weight: 500; }

/* Layout: 2 kolommen */
.da-sp__layout {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
    padding-top: 56px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Afbeelding */
.da-sp__media {
    position: relative;
}

.da-sp__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background: #F4F6F8;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.da-sp__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.da-sp__img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #F4F6F8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C0C8D2;
}

.da-sp__img-placeholder svg {
    width: 64px;
    height: 64px;
}

.da-sp__brand-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.92);
    color: #1F2A38;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 5px 14px;
    border-radius: 4px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.10);
}

.da-sp__brand-badge.da-sp__brand-badge--img {
    padding: 7px 10px;
    background: rgba(255,255,255,0.92);
    border-radius: 4px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.da-sp__brand-badge--img img {
    display: block;
    width: auto;
    height: auto;
    max-width: 110px;
    max-height: 46px;
    filter: none;
    object-fit: contain;
}

















.da-sp__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.da-sp__cat-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3FA7D6;
    padding: 4px 12px;
    border: 1px solid #3FA7D6;
    border-radius: 20px;
    align-self: flex-start;
}

.da-sp__title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #1F2A38;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.da-sp__intro {
    font-size: 1rem;
    line-height: 1.75;
    color: #5A6475;
    margin: 0;
}

.da-sp__capacity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3FA7D6;
    padding: 10px 16px;
    background: rgba(63,167,214,0.08);
    border-left: 3px solid #3FA7D6;
    border-radius: 0 4px 4px 0;
}

.da-sp__capacity svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Kenmerken */
.da-sp__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.da-sp__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #2B2F33;
    line-height: 1.5;
}

.da-sp__feature-icon {
    width: 16px;
    height: 16px;
    color: #3FA7D6;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Toepassingen */
.da-sp__applications {
    background: #F4F6F8;
    border-radius: 6px;
    padding: 16px 20px;
}

.da-sp__applications-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8A95A3;
    margin: 0 0 8px;
}

.da-sp__applications p {
    font-size: 0.875rem;
    color: #5A6475;
    line-height: 1.65;
    margin: 0;
}

/* CTA knoppen */
.da-sp__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
}

.da-sp__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.18s;
}

.da-sp__cta-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.da-sp__cta-btn--primary {
    background: #3FA7D6;
    border: 2px solid #3FA7D6;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(63,167,214,0.3);
}

.da-sp__cta-btn--primary:hover {
    background: #2e8fb8;
    border-color: #2e8fb8;
    transform: translateY(-2px);
}

.da-sp__cta-btn--outline {
    background: transparent;
    border: 2px solid #E4E8ED;
    color: #2B2F33;
}

.da-sp__cta-btn--outline:hover {
    border-color: #1F2A38;
    color: #1F2A38;
    transform: translateY(-2px);
}

/* Reassurance */
.da-sp__reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    list-style: none;
    margin: 0;
    padding: 16px 0 0;
    border-top: 1px solid #E4E8ED;
}

.da-sp__reassurance li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #8A95A3;
}

.da-sp__reassurance svg {
    width: 13px;
    height: 13px;
    color: #3FA7D6;
    flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .da-prod-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
    .da-prod-grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
    .da-ap__cat-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .da-sp__layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 36px;
    }
}

@media (max-width: 640px) {
    .da-prod-grid { grid-template-columns: 1fr !important; }
    .da-ap__cat-grid { grid-template-columns: 1fr; }

    .da-sp__cta {
        flex-direction: column;
    }

    .da-sp__cta-btn {
        justify-content: center;
    }
}


/* ============================================================
   CHILLER ACCORDION — Free Cooling & R-290
============================================================ */

.da-chiller-accordion {
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.da-accordion-item {
    border: 1px solid #E4E8ED;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.da-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    gap: 12px;
    transition: background 0.2s;
}

.da-accordion-btn:hover { background: #F4F6F8; }
.da-accordion-btn[aria-expanded="true"] { background: #F4F6F8; }

.da-accordion-btn__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.da-accordion-btn__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.da-accordion-btn__icon--blue { background: rgba(63,167,214,0.1); }
.da-accordion-btn__icon--blue svg { color: #3FA7D6; width: 18px; height: 18px; }
.da-accordion-btn__icon--red  { background: rgba(177,18,38,0.08); }
.da-accordion-btn__icon--red svg  { color: #B11226; width: 18px; height: 18px; }

.da-accordion-btn__texts {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.da-accordion-btn__label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8A95A3;
}

.da-accordion-btn__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1F2A38;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.da-accordion-tag {
    font-size: 0.68rem;
    font-weight: 700;
    background: #B11226;
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.da-accordion-btn__arrow {
    width: 18px;
    height: 18px;
    color: #8A95A3;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.da-accordion-btn[aria-expanded="true"] .da-accordion-btn__arrow {
    transform: rotate(180deg);
}

.da-accordion-panel {
    border-top: 1px solid #E4E8ED;
}

.da-accordion-panel__inner {
    padding: 18px 20px 20px 66px;
}

.da-accordion-panel__inner p {
    font-size: 0.875rem;
    color: #5A6475;
    line-height: 1.75;
    margin: 0 0 14px;
}

.da-accordion-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.da-accordion-list li {
    font-size: 0.85rem;
    color: #2B2F33;
    padding-left: 18px;
    position: relative;
}

.da-accordion-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3FA7D6;
    font-weight: 700;
}

.da-accordion-voordelen {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 2rem;
}

.da-accordion-voordeel {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.da-accordion-voordeel strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1F2A38;
}

.da-accordion-voordeel span {
    font-size: 0.78rem;
    color: #5A6475;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .da-accordion-panel__inner { padding-left: 18px; }
    .da-accordion-voordelen { grid-template-columns: 1fr; }
}

/* =============================================
   PRODUCT FOTO SLIDER (Swiper) — v1.5.0
   ============================================= */

.da-sp__slider {
    position: relative;
}

.da-swiper-main {
    border-radius: 12px;
    overflow: hidden;
    background: #f5f6f8;
    margin-bottom: 10px;
}

.da-swiper-main .da-sp__img-wrap {
    border-radius: 0;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f6f8;
}

.da-swiper-main .da-sp__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

.da-swiper-main .swiper-button-next,
.da-swiper-main .swiper-button-prev {
    color: #3A3F47;
    background: rgba(255,255,255,0.85);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.da-swiper-main .swiper-button-next::after,
.da-swiper-main .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 700;
}

/* Thumbnails */
.da-swiper-thumbs {
    height: 72px;
}

.da-swiper-thumbs .swiper-slide {
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.2s;
    border: 2px solid transparent;
}

.da-swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #B11226;
}

.da-swiper-thumbs img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    display: block;
}

@media (max-width: 640px) {
    .da-swiper-main .da-sp__img-wrap { aspect-ratio: 1/1; }
    .da-swiper-thumbs { height: 56px; }
    .da-swiper-thumbs img { height: 56px; }
}

/* ── Toebehoren sectie ──────────────────────────────────────── */
.da-toebehoren-section {
    background: #F4F6F8;
    border-top: 1px solid #DDE2E8;
    border-radius: 8px;
    padding: 28px;
    grid-column: 1 / -1;
    margin-top: 16px;
}
.da-toebehoren__head {
    margin-bottom: 20px;
}
.da-toebehoren__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #3FA7D6;
    margin-bottom: 6px;
}
.da-toebehoren__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2A38;
    margin: 0;
}
.da-toebehoren__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.da-toebehoren__card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}
.da-toebehoren__card-img {
    width: 100px;
    min-width: 100px;
    height: 90px;
    overflow: hidden;
    flex-shrink: 0;
}
.da-toebehoren__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.da-toebehoren__card-body {
    padding: 12px 14px;
}
.da-toebehoren__card-title {
    font-size: .9rem;
    font-weight: 700;
    color: #1F2A38;
    margin: 0 0 5px;
}
.da-toebehoren__card-desc {
    font-size: .8rem;
    color: #5A6472;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 768px) {
    .da-toebehoren__grid {
        grid-template-columns: 1fr;
    }
}
