/* ══════════════════════════════════════════════════════════════
   PartyRent Flevoland - Catalogus & Product Styling
   ══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   CATALOGUS LAYOUT
   ────────────────────────────────────────── */

.full-width.full-shop {
    background: #f4f6f9;
    padding: 30px 0 60px;
}

.full-width.full-shop > .container {
    width: 70%;
    max-width: 1300px;
}

.pr-shop-header {
    padding: 0;
    display: none;
}

.pr-shop-header .page-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 6px;
    letter-spacing: -0.5px;
}

.pr-cat-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
}

/* ──────────────────────────────────────────
   KALENDER OP CATALOGUSPAGINA
   ────────────────────────────────────────── */

.pr-archive-kalender {
    background: #fff;
    border-radius: 12px;
    padding: 28px 30px;
    margin-bottom: 25px;
    overflow: visible;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.pr-archive-kalender-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pr-archive-kalender-text h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.pr-archive-kalender-text h2 i {
    color: var(--maincolor);
    margin-right: 10px;
}

.pr-archive-kalender-text p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.pr-archive-kalender-text .pr-kal-legend {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pr-archive-kalender-text .pr-kal-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.pr-archive-kalender-text .pr-kal-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

.pr-kal-legend-dot.beschikbaar { background: #22c55e; }
.pr-kal-legend-dot.geblokkeerd { background: #ef4444; }
.pr-kal-legend-dot.verleden { background: #e2e8f0; }

.pr-archive-kalender-widget {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid #e2e8f0;
}

/* ──────────────────────────────────────────
   KALENDER GRID (inline, geen apart bestand)
   ────────────────────────────────────────── */

#pr-kalender-frontend,
#pr-kalender-offerte {
    max-width: 100%;
}

#pr-kal-front-nav,
#pr-kal-offerte-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

#pr-kal-front-nav h3,
#pr-kal-offerte-nav h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
}

#pr-kal-front-nav .button,
#pr-kal-offerte-nav .button {
    background: var(--maincolor);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    padding: 0;
    transition: background 0.2s;
}

#pr-kal-front-nav .button:hover,
#pr-kal-offerte-nav .button:hover {
    background: #1a1a2e;
}

.pr-kal-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 6px;
}

.pr-kal-day-name {
    text-align: center;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 10px 0;
    color: #94a3b8;
    background: #f8fafc;
    border-radius: 6px;
}

.pr-kal-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 6px;
}

.pr-kal-cell {
    text-align: center;
    padding: 12px 4px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    background: #f0fdf4;
    color: #166534;
    position: relative;
    transition: all 0.15s;
    cursor: default;
}

.pr-kal-empty {
    background: transparent;
}

.pr-kal-past {
    background: #f8fafc;
    color: #cbd5e1;
    font-weight: 400;
}

.pr-kal-blocked {
    background: #fee2e2;
    color: #dc2626;
    font-weight: 700;
}

.pr-kal-zondag {
    background: #f1f5f9;
    color: #94a3b8;
    text-decoration: line-through;
    cursor: default;
}

.pr-kal-legend-dot.zondag {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    position: relative;
}

.pr-kal-legend-dot.zondag::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 1px;
    right: 1px;
    height: 1px;
    background: #94a3b8;
}

.pr-kal-today {
    font-weight: 800;
    box-shadow: inset 0 0 0 2px var(--maincolor);
    background: #eff6ff;
    color: var(--maincolor);
}

.pr-kal-available {
    cursor: pointer;
}

.pr-kal-available:hover {
    background: #22c55e;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(34,197,94,0.3);
}

.pr-kal-selected {
    background: var(--maincolor) !important;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(75,130,188,0.3);
}

/* ──────────────────────────────────────────
   SIDEBAR + GRID WRAPPER
   ────────────────────────────────────────── */

#cat-filter-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* ──────────────────────────────────────────
   SIDEBAR
   ────────────────────────────────────────── */

#cat-filter-wrapper #primary-sidebar {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
}

#primary-sidebar h3.sidebar-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.pr-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pr-cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.pr-cat-list li a:hover {
    background: #f1f5f9;
    color: #1a1a2e;
}

.pr-cat-list > li.current-cat > a {
    background: var(--maincolor);
    color: #fff;
    font-weight: 600;
}

.pr-cat-list > li.current-cat > a .count {
    background: rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 20px;
    padding: 1px 8px;
    font-size: 12px;
}

.pr-cat-list .count {
    font-size: 12px;
    color: #94a3b8;
    background: #f1f5f9;
    border-radius: 20px;
    padding: 1px 8px;
    font-weight: 600;
}

/* Subcategorieën */
.pr-cat-parent-row {
    display: flex;
    align-items: center;
}

.pr-cat-parent-row > a {
    flex: 1;
    display: block;
    padding: 9px 12px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.pr-cat-parent-row > a:hover {
    background: #f1f5f9;
    color: #1a1a2e;
}

.pr-cat-parent.current-cat > .pr-cat-parent-row {
    background: var(--maincolor);
    border-radius: 8px;
}

.pr-cat-parent.current-cat > .pr-cat-parent-row > a {
    color: #fff;
    font-weight: 600;
}

.pr-cat-parent.current-cat > .pr-cat-parent-row > a:hover {
    background: transparent;
}

.pr-cat-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 0 8px 8px 0;
    transition: background 0.2s;
}

.pr-cat-toggle:hover {
    background: #f1f5f9;
}

.pr-cat-parent.current-cat > .pr-cat-parent-row .pr-cat-toggle:hover {
    background: rgba(255,255,255,0.15);
}

.pr-cat-toggle::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

.pr-cat-parent.pr-cat-open > .pr-cat-parent-row .pr-cat-toggle::after {
    transform: rotate(-135deg);
}

.pr-cat-parent.current-cat > .pr-cat-parent-row .pr-cat-toggle::after {
    border-color: #fff;
}

.pr-cat-parent.pr-cat-open > .pr-cat-parent-row > a {
    font-weight: 700;
    color: #1a1a2e;
}

.pr-cat-children {
    list-style: none;
    margin: 0;
    padding: 0 0 0 16px;
    display: none;
}

.pr-cat-children-open {
    display: block;
}

.pr-cat-children li a {
    font-size: 13px !important;
    color: #64748b !important;
    padding: 5px 12px !important;
}

.pr-cat-children li a:hover {
    color: #1a1a2e !important;
    background: #f8fafc !important;
}

.pr-cat-children li.current-cat a {
    color: #fff !important;
    background: var(--maincolor) !important;
}

/* ──────────────────────────────────────────
   MOBILE CATEGORIES
   ────────────────────────────────────────── */

.showcats {
    display: none;
    background: #fff;
    border-radius: 10px;
    padding: 14px 20px;
    margin-bottom: 15px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
    box-sizing: border-box;
    width: 100%;
}

.showcats:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.showcats p {
    margin: 0;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcats p::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-top: -3px;
    transition: transform 0.2s;
}

.showcats.open p::after {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.catdropdown {
    display: none;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.catdropdown.active {
    display: block;
}

/* Mobiele categorie lijst */
.pr-mob-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pr-mob-list > li {
    border-bottom: 1px solid #f1f5f9;
}

.pr-mob-list > li:last-child {
    border-bottom: none;
}

.pr-mob-list > li > a,
.pr-mob-parent-row > a {
    display: block;
    padding: 14px 20px;
    color: #475569;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.pr-mob-active > a,
.pr-mob-active > .pr-mob-parent-row > a {
    color: #fff;
    font-weight: 700;
}

.pr-mob-active > .pr-mob-parent-row,
.pr-mob-list > li.pr-mob-active:not(.pr-mob-parent) {
    background: var(--maincolor);
}

.pr-mob-active > .pr-mob-parent-row .pr-mob-arrow {
    border-color: #fff;
}

.pr-mob-active > .pr-mob-parent-row .pr-mob-toggle {
    border-left-color: rgba(255,255,255,0.2);
}

.pr-mob-parent-row {
    display: flex;
    align-items: center;
}

.pr-mob-parent-row > a {
    flex: 1;
}

.pr-mob-toggle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-left: 1px solid #f1f5f9;
    cursor: pointer;
    flex-shrink: 0;
}

.pr-mob-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

.pr-mob-open > .pr-mob-parent-row .pr-mob-arrow {
    transform: rotate(-135deg);
}

.pr-mob-children {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    background: #f8fafc !important;
}

.pr-mob-open > .pr-mob-children {
    display: block;
}

.pr-mob-children li a {
    display: block;
    padding: 12px 20px 12px 36px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    border-top: 1px solid #f1f5f9;
}

.pr-mob-children li.pr-mob-active a {
    color: var(--maincolor);
    font-weight: 700;
}

/* ──────────────────────────────────────────
   PRODUCT GRID
   ────────────────────────────────────────── */

ul.products {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
}

/* ──────────────────────────────────────────
   PRODUCT CARD
   ────────────────────────────────────────── */

ul.products li.product {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

ul.products li.product > a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── Card image ── */
ul.products li.product .imagewrapper {
    position: relative;
    background: #e9edf3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

/* Placeholder icoon als er geen afbeelding is */
ul.products li.product .imagewrapper:empty::after,
ul.products li.product .imagewrapper:not(:has(img))::after {
    content: '\f03e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    font-size: 48px;
    color: #c4cdd9;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Zorg dat placeholder niet toont als er WEL een img is */
ul.products li.product .imagewrapper:has(img)::after {
    display: none;
}

ul.products li.product .imagewrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

ul.products li.product:hover .imagewrapper img {
    transform: scale(1.06);
}

/* ── Price badge ── */
ul.products li.product .imagewrapper .price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--subcolor);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255,23,33,0.3);
}

/* ── Card body ── */
ul.products li.product .cmflex {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

ul.products li.product .cmex {
    flex: 1;
    display: flex;
    flex-direction: column;
}

ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    padding: 0;
    padding-left: 0 !important;
    line-height: 1.3;
    text-indent: 0;
}

/* ── Beschrijving: max 3 regels ── */
ul.products li.product .cmex-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Card button: altijd onderaan ── */
ul.products li.product .button.add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--maincolor);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    align-self: flex-start;
    margin-top: auto;
}

ul.products li.product:hover .button.add_to_cart_button {
    background: #1a1a2e;
}

/* No products */
ul.products li.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
    font-size: 16px;
}

/* ──────────────────────────────────────────
   PAGINERING
   ────────────────────────────────────────── */

.pr-pagination {
    padding: 40px 0 0;
    text-align: center;
}

.pr-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.pr-pagination .nav-links a,
.pr-pagination .nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    color: #475569;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.pr-pagination .nav-links a:hover {
    background: var(--maincolor);
    color: #fff;
}

.pr-pagination .nav-links span.current {
    background: var(--maincolor);
    color: #fff;
}

/* ──────────────────────────────────────────
   BREADCRUMB
   ────────────────────────────────────────── */

.pr-breadcrumb {
    padding: 16px 0;
    font-size: 13px;
    color: #94a3b8;
}

.pr-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.pr-breadcrumb a:hover {
    color: var(--maincolor);
}

.pr-breadcrumb span {
    color: #1a1a2e;
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   SINGLE PRODUCT - LANDING PAGE
   ══════════════════════════════════════════════════════════════ */

.pr-sp-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ── Breadcrumb bar ── */
.pr-sp-breadcrumb-bar {
    background: #f4f6f9;
    padding: 16px 0;
}

/* ── Hero section ── */
.pr-sp-hero {
    padding: 40px 0 50px;
    background: #fff;
}

.pr-sp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Images */
.pr-sp-images {
    position: sticky;
    top: 20px;
}

.pr-sp-main-image {
    border-radius: 14px;
    overflow: hidden;
    background: #f4f6f9;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pr-sp-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pr-sp-main-image:not(:has(img))::after {
    content: '\f03e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    font-size: 80px;
    color: #c4cdd9;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.pr-sp-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.pr-sp-gallery a {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.pr-sp-gallery a:hover {
    border-color: var(--maincolor);
}

.pr-sp-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

/* Info */
.pr-sp-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.pr-sp-cat-pill {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.pr-sp-cat-pill:hover {
    background: var(--maincolor);
    color: #fff;
}

.pr-sp-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.pr-sp-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
}

.pr-sp-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--maincolor);
    line-height: 1;
}

.pr-sp-price-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.pr-sp-description {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pr-sp-extra {
    background: #f8fafc;
    border-left: 4px solid var(--maincolor);
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 24px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    display: flex;
    gap: 12px;
}

.pr-sp-extra > i {
    color: var(--maincolor);
    margin-top: 3px;
    flex-shrink: 0;
}

.pr-sp-extra p {
    margin: 0;
}

/* ── Add to offerte block ── */
.pr-sp-add-block {
    background: #f4f6f9;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 16px;
}

.pr-sp-opbouw {
    margin-bottom: 18px;
}

.pr-sp-opbouw label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 14px 18px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: border-color 0.2s;
}

.pr-sp-opbouw label:hover {
    border-color: var(--maincolor);
}

.pr-sp-opbouw input[type="checkbox"] {
    appearance: checkbox !important;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pr-sp-opbouw-text {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
}

.pr-sp-opbouw-text small {
    font-weight: 500;
    color: #94a3b8;
    margin-top: 2px;
}

.pr-sp-add-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Qty controls (global, ook gebruikt op offerte pagina) */
.pr-qty-controls {
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    background: #fff;
    flex-shrink: 0;
}

.pr-qty-controls button {
    width: 44px;
    height: 44px;
    border: none;
    background: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    color: #475569;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pr-qty-controls button:hover {
    background: var(--maincolor);
    color: #fff;
}

.pr-qty-input {
    width: 52px;
    height: 44px;
    text-align: center;
    border: none;
    border-left: 2px solid #e2e8f0;
    border-right: 2px solid #e2e8f0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    -moz-appearance: textfield;
    background: #fff;
}

.pr-qty-input::-webkit-outer-spin-button,
.pr-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Kleinere variant voor offerte tabel */
.pr-qty-controls-small button {
    width: 28px;
    height: 28px;
    font-size: 14px;
}

.pr-qty-controls-small .pr-qty-input {
    width: 40px;
    height: 28px;
    font-size: 14px;
}

.pr-sp-add-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--maincolor);
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.pr-sp-add-btn:hover {
    background: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,26,46,0.25);
}

.pr-sp-add-btn i {
    font-size: 14px;
}

.pr-sp-sku {
    font-size: 12px;
    color: #94a3b8;
    margin: 8px 0 0;
}

/* ── USP bar ── */
.pr-sp-usp-bar {
    background: #f4f6f9;
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.pr-sp-usps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pr-sp-usp {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pr-sp-usp > i {
    font-size: 24px;
    color: var(--maincolor);
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.pr-sp-usp strong {
    display: block;
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.3;
}

.pr-sp-usp span {
    font-size: 13px;
    color: #94a3b8;
}

/* ── Kalender section ── */
.pr-sp-kalender {
    padding: 60px 0;
    background: #fff;
}

.pr-sp-kalender-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.pr-sp-kalender-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.pr-sp-kalender-text > p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.pr-sp-kalender-cta {
    background: #f4f6f9;
    padding: 20px;
    border-radius: 12px;
    margin-top: 24px;
}

.pr-sp-kalender-cta p {
    margin: 0 0 12px;
    font-size: 14px;
    color: #475569;
}

.pr-sp-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #22c55e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.pr-sp-phone-btn:hover {
    background: #16a34a;
}

.pr-sp-kalender-widget {
    background: #f8fafc;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

/* ── Related products ── */
.pr-sp-related {
    padding: 60px 0;
    background: #f4f6f9;
}

.pr-sp-related h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 24px;
}

.pr-sp-related-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

/* ──────────────────────────────────────────
   OFFERTE POPUP
   ────────────────────────────────────────── */

.pr-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,23,42,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.pr-popup-inner {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: prPopIn 0.25s ease;
}

@keyframes prPopIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.pr-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    font-size: 18px;
    color: #94a3b8;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
}

.pr-popup-close:hover {
    background: #f1f5f9;
    color: #1a1a2e;
}

.pr-popup-title {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}

.pr-popup-title i {
    color: #22c55e;
    margin-right: 8px;
}

#pr-popup-product-name {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

.pr-popup-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.pr-popup-close-btn {
    flex: 1;
    cursor: pointer;
    border: 2px solid #e2e8f0 !important;
    color: #475569 !important;
    background: #fff !important;
    padding: 12px 20px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-align: center;
    transition: all 0.2s !important;
}

.pr-popup-close-btn:hover {
    border-color: #1a1a2e !important;
    color: #1a1a2e !important;
}

.pr-popup-offerte-btn {
    flex: 1;
    background: var(--maincolor) !important;
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 20px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-align: center;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s !important;
}

.pr-popup-offerte-btn:hover {
    background: #1a1a2e !important;
}

.pr-badge {
    background: var(--subcolor);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    margin-left: 6px;
    min-width: 12px;
    text-align: center;
}

/* ──────────────────────────────────────────
   SECTION FEATURED (homepage)
   ────────────────────────────────────────── */

section#featured {
    padding: 50px 0;
    background: #f4f6f9;
    border-top: 1px solid #e2e8f0;
}

section#featured .container {
    overflow: visible;
}

section#featured #titel {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

section#featured #titel h1 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

section#featured #titel i {
    color: #fbbf24;
    font-size: 20px;
}

.pr-home-featured-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
}

.pr-home-featured-grid li.product .cmflex {
    padding: 14px 18px 18px;
}

.pr-home-featured-grid li.product .button.add_to_cart_button {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

/* ──────────────────────────────────────────
   SECTION BLOCKS - Categorieën (homepage)
   ────────────────────────────────────────── */

section#blocks {
    padding: 40px 0 20px;
    background: #fff;
}

.pr-home-section-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 28px;
}

.pr-home-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pr-home-cat-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    background: #1a1a2e;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pr-home-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.pr-home-cat-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.pr-home-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.pr-home-cat-card:hover .pr-home-cat-img img {
    transform: scale(1.08);
}

.pr-home-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, rgba(26,26,46,0) 60%);
}

.pr-home-cat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px;
    z-index: 2;
}

.pr-home-cat-info h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px;
    line-height: 1.3;
}

.pr-home-cat-count {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.pr-home-cats-all {
    text-align: center;
    margin-top: 24px;
}

.pr-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--maincolor);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
}

.pr-home-btn:hover {
    background: #1a1a2e;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media screen and (max-width: 1500px) {
    ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
    .pr-home-featured-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media screen and (max-width: 1215px) {
    #cat-filter-wrapper #primary-sidebar {
        display: none;
    }
    #cat-filter-wrapper {
        flex-direction: column;
    }
    .showcats {
        display: block;
    }
    .pr-sp-container {
        width: 90%;
    }
    .full-width.full-shop > .container {
        width: 85%;
    }
}

@media screen and (max-width: 1000px) {
    ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
    section#featured ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
    .pr-sp-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pr-sp-images {
        position: static;
    }
    .pr-sp-kalender-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pr-sp-usps {
        grid-template-columns: repeat(2, 1fr);
    }
    .pr-sp-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .pr-archive-kalender-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pr-home-cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pr-home-featured-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 768px) {
    .pr-popup-actions {
        flex-direction: column-reverse;
    }
    .pr-popup-close-btn,
    .pr-popup-offerte-btn {
        width: 100% !important;
        box-sizing: border-box;
    }
    .pr-sp-title {
        font-size: 26px;
    }
    .pr-sp-price {
        font-size: 28px;
    }
    .pr-sp-add-row {
        flex-direction: column;
    }
    .pr-sp-add-row .pr-qty-controls {
        align-self: flex-start;
    }
    .pr-sp-usps {
        grid-template-columns: 1fr;
    }
    .pr-archive-kalender {
        padding: 24px 20px;
    }
    .pr-archive-kalender-text h2 {
        font-size: 20px;
    }
    .full-width.full-shop > .container {
        width: 92%;
    }

    /* Paginering mobiel */
    .pr-pagination .nav-links a,
    .pr-pagination .nav-links span {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 13px;
    }

    /* Categorieën knop */
    .showcats {
        border: none;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }
}

@media screen and (max-width: 550px) {
    ul.products {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .pr-home-featured-grid {
        grid-template-columns: 1fr !important;
    }
    .pr-sp-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    .pr-sp-related-grid {
        grid-template-columns: 1fr !important;
    }
    .pr-sp-container {
        width: 95%;
    }
    .pr-home-cats-grid {
        grid-template-columns: 1fr;
    }
}
