/* Photobooth Vergelijker - basis styling */

.photobooth-vergelijker {
    max-width: 1200px;
    margin: 0 auto;
}

.photobooth-vergelijker-message {
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.photobooth-vergelijker-message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.photobooth-vergelijker-message--info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.photobooth-vergelijker-message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.photobooth-vergelijker-empty {
    padding: 2rem;
    text-align: center;
    color: #555;
}

/* Grid */
.photobooth-vergelijker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.photobooth-vergelijker-grid--featured {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* Cards */
.photobooth-vergelijker-card {
    position: relative;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.photobooth-vergelijker-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.photobooth-vergelijker-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0d6efd;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 1;
}

.photobooth-vergelijker-card__image {
    aspect-ratio: 4/3;
    background: #f1f3f5;
    overflow: hidden;
}

.photobooth-vergelijker-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photobooth-vergelijker-card__body {
    padding: 1rem;
}

.photobooth-vergelijker-card__type {
    display: inline-block;
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.photobooth-vergelijker-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}

.photobooth-vergelijker-card__provider {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0 0 0.5rem;
}

.photobooth-vergelijker-card__price {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.photobooth-vergelijker-card__link {
    display: inline-block;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.photobooth-vergelijker-card__link:hover {
    text-decoration: underline;
}

/* Featured section */
.photobooth-vergelijker-featured__title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Forms */
.photobooth-vergelijker-form {
    max-width: 480px;
}

.photobooth-vergelijker-form p {
    margin-bottom: 1rem;
}

.photobooth-vergelijker-form label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.photobooth-vergelijker-form input[type="text"],
.photobooth-vergelijker-form input[type="email"],
.photobooth-vergelijker-form input[type="tel"],
.photobooth-vergelijker-form input[type="password"],
.photobooth-vergelijker-form input[type="date"],
.photobooth-vergelijker-form textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.photobooth-vergelijker-form .description {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.photobooth-vergelijker-form__message {
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.photobooth-vergelijker-form__message.error {
    background: #f8d7da;
    color: #721c24;
}

.photobooth-vergelijker-form__message.success {
    background: #d4edda;
    color: #155724;
}

.photobooth-vergelijker-form__message.info {
    background: linear-gradient(135deg, #fce4ec, #f8e8f0);
    color: #880e4f;
    border: 1px solid rgba(233, 30, 140, 0.15);
}

.photobooth-vergelijker-btn {
    padding: 0.5rem 1.5rem;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.photobooth-vergelijker-btn:hover {
    background: #0b5ed7;
}

/* Offerte pagina - Shopify layout */
.photobooth-quote__title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.photobooth-quote__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .photobooth-quote__layout {
        grid-template-columns: 1fr;
    }
    .photobooth-quote__media {
        order: 1;
    }
    .photobooth-quote__details {
        order: 2;
    }
    .photobooth-quote__media .photobooth-quote__description {
        display: none;
    }
}

/* Linkerkant: foto's + beschrijving */
.photobooth-quote__media {
    position: sticky;
    top: 2rem;
}

.photobooth-quote__gallery {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.photobooth-quote__main-image {
    aspect-ratio: 4/3;
    background: #fff;
}

.photobooth-quote__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photobooth-quote__thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.photobooth-quote__thumb {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
}

.photobooth-quote__thumb:hover {
    border-color: #dee2e6;
}

.photobooth-quote__thumb.is-active {
    border-color: #0d6efd;
}

.photobooth-quote__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photobooth-quote__placeholder {
    aspect-ratio: 4/3;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
    border-radius: 8px;
}

.photobooth-quote__placeholder--full {
    min-height: 300px;
    aspect-ratio: auto;
}

.photobooth-quote__description {
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.photobooth-quote__description h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.photobooth-quote__description p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #495057;
}

/* Rechterkant: info + formulier */
.photobooth-quote__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.photobooth-quote__info {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.photobooth-quote__type {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.photobooth-quote__product-title {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
}

.photobooth-quote__provider {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.photobooth-quote__price {
    margin: 0.75rem 0 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.photobooth-quote__form {
    max-width: none;
}

.photobooth-quote__submit {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Fallback voor card--inline (listings e.d.) */
.photobooth-vergelijker-card--inline {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    max-width: 600px;
}

.photobooth-vergelijker-card--inline .photobooth-vergelijker-card__image {
    width: 200px;
    min-width: 200px;
    aspect-ratio: 4/3;
}

.photobooth-vergelijker-card--inline .photobooth-vergelijker-card__body {
    flex: 1;
}

.photobooth-vergelijker-card__description {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0.5rem 0 0;
}

/* Categorieën grid */
.photobooth-categories__grid {
    display: grid;
    grid-template-columns: repeat(var(--pb-cat-columns, 4), 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .photobooth-categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .photobooth-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .photobooth-categories__grid {
        grid-template-columns: 1fr;
    }
}

.photobooth-categories__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    position: relative;
}

.photobooth-categories__item:hover {
    border-color: #d4167d;
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.12);
    transform: translateY(-4px);
    color: inherit;
}

.photobooth-categories__icon-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.photobooth-categories__icon {
    width: 100%;
    height: 100%;
    border-radius: 20%;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.photobooth-categories__item:hover .photobooth-categories__icon {
    transform: scale(1.08);
}

.photobooth-categories__icon-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8e8f0, #fce4ec);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #d4167d;
    border: 3px solid #f0f0f0;
}

.photobooth-categories__count {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 26px;
    height: 26px;
    padding: 0 6px;
    border-radius: 13px;
    background: #d4167d;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(233, 30, 140, 0.3);
}

.photobooth-categories__name {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #1a1a2e;
    line-height: 1.3;
}

.photobooth-categories__desc {
    font-size: 0.825rem;
    color: #6c757d;
    margin: 0 0 1rem;
    line-height: 1.5;
    flex: 1;
}

.photobooth-categories__link {
    display: inline-block;
    padding: 0.45rem 1.4rem;
    background: linear-gradient(135deg, #d4167d, #a81264);
    color: #fff;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    margin-top: auto;
}

.photobooth-categories__item:hover .photobooth-categories__link {
    background: linear-gradient(135deg, #a81264, #ad1457);
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.35);
}

/* ================================================
   Categorie-pagina
   ================================================ */

.photobooth-category-hero {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f8e8f0 50%, #ede7f6 100%);
    border-radius: 16px;
    margin-bottom: 2.5rem;
}

.photobooth-category-hero__icon {
    width: 120px;
    height: 120px;
    border-radius: 20%;
    object-fit: contain;
    flex-shrink: 0;
}

.photobooth-category-hero__icon-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4167d, #a81264);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.2);
}

.photobooth-category-hero__content {
    flex: 1;
}

.photobooth-category-hero__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #1a1a2e;
}

.photobooth-category-hero__desc {
    font-size: 1rem;
    color: #555;
    margin: 0 0 0.75rem;
    line-height: 1.6;
}

.photobooth-category-hero__count {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(233, 30, 140, 0.1);
    color: #a81264;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 640px) {
    .photobooth-category-hero {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem 1.25rem;
    }
    .photobooth-category-hero__icon,
    .photobooth-category-hero__icon-placeholder {
        width: 90px;
        height: 90px;
    }
    .photobooth-category-hero__title {
        font-size: 1.35rem;
    }
}

/* Lege categorie */
.photobooth-category-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.photobooth-category-empty p {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0 0 1.25rem;
}

.photobooth-category-empty__btn {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, #d4167d, #a81264);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.photobooth-category-empty__btn:hover {
    background: linear-gradient(135deg, #a81264, #ad1457);
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.35);
    color: #fff;
}

/* Andere categorieën */
.photobooth-category-others {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.photobooth-category-others__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
    color: #1a1a2e;
}

.photobooth-category-others__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.photobooth-category-others__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    text-decoration: none;
    color: #1a1a2e;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.photobooth-category-others__item:hover {
    border-color: #d4167d;
    color: #a81264;
    box-shadow: 0 2px 8px rgba(233, 30, 140, 0.1);
}

.photobooth-category-others__icon {
    width: 32px;
    height: 32px;
    border-radius: 20%;
    object-fit: contain;
}

.photobooth-category-others__letter {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8e8f0, #fce4ec);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #d4167d;
}

.photobooth-category-others__name {
    white-space: nowrap;
}

/* ================================================
   Werkgebieden: Provincie/Stad selector
   ================================================ */

.photobooth-werkgebieden-section {
    margin: 1.25rem 0;
}

.photobooth-werkgebieden-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: #1a1a2e;
}

.photobooth-werkgebieden-section > .description {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.photobooth-provincies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    .photobooth-provincies-grid {
        grid-template-columns: 1fr;
    }
}

.photobooth-provincie {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s;
}

.photobooth-provincie.is-open {
    border-color: #d4167d;
}

.photobooth-provincie__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    cursor: pointer;
    user-select: none;
    background: #f8f9fa;
    transition: background 0.15s;
}

.photobooth-provincie__header:hover {
    background: #f0e4f0;
}

.photobooth-provincie__toggle {
    font-size: 0.65rem;
    color: #888;
    width: 12px;
    text-align: center;
    transition: transform 0.2s;
}

.photobooth-provincie__name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1a1a2e;
    flex: 1;
}

.photobooth-provincie__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    border-radius: 11px;
    font-size: 0.7rem;
    font-weight: 700;
    background: #e9ecef;
    color: #6c757d;
    transition: all 0.2s;
}

.photobooth-provincie__count.has-items {
    background: #d4167d;
    color: #fff;
}

.photobooth-provincie__steden {
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
}

.photobooth-stad {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.2rem 0;
    color: #333;
}

.photobooth-stad input[type="checkbox"] {
    accent-color: #d4167d;
    margin: 0;
    width: 15px;
    height: 15px;
}

.photobooth-stad--all {
    width: 100%;
    font-weight: 600;
    font-size: 0.78rem;
    color: #a81264;
    padding-bottom: 0.35rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid #f0f0f0;
}

/* Tags */
.photobooth-werkgebieden-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    min-height: 32px;
    padding: 0.5rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.photobooth-werkgebieden-placeholder {
    font-size: 0.8rem;
    color: #aaa;
    font-style: italic;
}

.photobooth-werkgebied-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.55rem;
    background: linear-gradient(135deg, #fce4ec, #f8e8f0);
    color: #a81264;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(233, 30, 140, 0.15);
}

.photobooth-werkgebied-remove {
    background: none;
    border: none;
    color: #a81264;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0 0.1rem;
    opacity: 0.6;
    transition: opacity 0.15s;
}

.photobooth-werkgebied-remove:hover {
    opacity: 1;
}

/* Werkgebieden op pakketkaarten */
.photobooth-vergelijker-card__werkgebieden {
    font-size: 0.78rem;
    color: #6c757d;
    margin: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
    line-height: 1.4;
}

.photobooth-vergelijker-card__werkgebieden-icon {
    color: #d4167d;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.photobooth-vergelijker-card__werkgebieden-more {
    color: #d4167d;
    font-weight: 600;
    white-space: nowrap;
}

/* Werkgebieden op offerte-pagina */
.photobooth-quote__werkgebieden {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.photobooth-quote__werkgebieden-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

.photobooth-quote__werkgebieden-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.photobooth-quote__werkgebied-tag {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background: linear-gradient(135deg, #fce4ec, #f8e8f0);
    color: #a81264;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(233, 30, 140, 0.12);
}

/* ================================================
   Conversatie-pagina (bezoeker)
   ================================================ */

.photobooth-conv-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f8e8f0 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.photobooth-conv-header__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: #1a1a2e;
}

.photobooth-conv-header__meta {
    font-size: 0.82rem;
    color: #555;
    margin: 0;
}

.photobooth-conv-status {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.photobooth-conv-status--new { background: #fff3e0; color: #e65100; }
.photobooth-conv-status--contacted { background: #e3f2fd; color: #1565c0; }
.photobooth-conv-status--quoted { background: #ede7f6; color: #4527a0; }
.photobooth-conv-status--accepted { background: #e8f5e9; color: #2e7d32; }
.photobooth-conv-status--rejected { background: #fce4ec; color: #c62828; }

@media (max-width: 600px) {
    .photobooth-conv-header {
        flex-direction: column;
    }
}

/* Berichten */
.photobooth-conv-messages,
.photobooth-conversation__messages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 500px;
    overflow-y: auto;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.photobooth-conversation {
    margin: 1rem 0;
}

.photobooth-conversation > strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 13px;
}

.photobooth-msg {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    position: relative;
}

.photobooth-msg--visitor {
    background: #e3f2fd;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.photobooth-msg--provider {
    background: linear-gradient(135deg, #fce4ec, #f8e8f0);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.photobooth-msg--initial {
    border: 1px solid rgba(25, 118, 210, 0.15);
}

.photobooth-msg__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.3rem;
}

.photobooth-msg__name {
    font-weight: 600;
    font-size: 0.8rem;
    color: #1a1a2e;
}

.photobooth-msg__time {
    font-size: 0.7rem;
    color: #888;
    white-space: nowrap;
}

.photobooth-msg__body {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #333;
}

/* Reply form */
.photobooth-conv-reply {
    padding: 1rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
}

.photobooth-conv-reply textarea,
.photobooth-reply-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    resize: vertical;
    font-family: inherit;
    box-sizing: border-box;
}

.photobooth-conv-reply textarea:focus,
.photobooth-reply-form textarea:focus {
    border-color: #d4167d;
    outline: none;
    box-shadow: 0 0 0 2px rgba(233, 30, 140, 0.1);
}

.photobooth-conv-reply__actions {
    margin-top: 0.5rem;
}

.photobooth-reply-form {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.photobooth-reply-msg {
    margin-top: 8px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
}

.photobooth-reply-msg.success { background: #d4edda; color: #155724; }
.photobooth-reply-msg.error { background: #f8d7da; color: #721c24; }

/* ==============================================
   Provider links op pakketkaarten
   ============================================== */
.photobooth-vergelijker-card__links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.photobooth-vergelijker-card__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
    color: #555;
    background: #fafafa;
}

.photobooth-vergelijker-card__links a:hover {
    background: #d4167d;
    color: #fff;
    border-color: #d4167d;
}

/* ==============================================
   Social links op offertepagina
   ============================================== */
.photobooth-quote__social-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.photobooth-quote__social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.photobooth-quote__social-link--website {
    background: #f0f0f0;
    color: #333;
}

.photobooth-quote__social-link--instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.photobooth-quote__social-link--facebook {
    background: #1877f2;
    color: #fff;
}

.photobooth-quote__social-link--website:hover {
    background: #333;
    color: #fff;
}

.photobooth-quote__social-link--instagram:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.photobooth-quote__social-link--facebook:hover {
    background: #166fe5;
    transform: translateY(-1px);
}

/* ==============================================
   Links sectie registratieformulier
   ============================================== */
.photobooth-links-section {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
}

.photobooth-links-label {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: #333;
}

.photobooth-links-section .description {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.75rem;
}

.photobooth-links-section p {
    margin-bottom: 0.6rem;
}

.photobooth-links-section input[type="url"] {
    width: 100%;
}

/* ==============================================
   Klikbare provider naam op kaarten
   ============================================== */
.photobooth-vergelijker-card__provider-link,
.photobooth-quote__provider-link {
    color: #d4167d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.photobooth-vergelijker-card__provider-link:hover,
.photobooth-quote__provider-link:hover {
    color: #c2177a;
    text-decoration: underline;
}

/* ==============================================
   Provider profiel pagina
   ============================================== */
.photobooth-provider-profile {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.photobooth-provider-hero {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
    border-radius: 16px;
    border: 1px solid #f0e0ec;
    margin-bottom: 2rem;
}

.photobooth-provider-hero__avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4167d, #ff6b9d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.photobooth-provider-hero__info {
    flex: 1;
}

.photobooth-provider-hero__name {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1a1a2e;
}

.photobooth-provider-hero__meta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #666;
}

.photobooth-provider-hero__packages-count,
.photobooth-provider-hero__cities-count {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 4px 12px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    font-weight: 500;
}

.photobooth-provider-hero__links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.photobooth-provider-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.photobooth-provider-link--website {
    background: #f0f0f0;
    color: #333;
}

.photobooth-provider-link--instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.photobooth-provider-link--facebook {
    background: #1877f2;
    color: #fff;
}

.photobooth-provider-link--website:hover {
    background: #333;
    color: #fff;
}

.photobooth-provider-link--instagram:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.photobooth-provider-link--facebook:hover {
    background: #166fe5;
    transform: translateY(-1px);
}

.photobooth-provider-link__icon {
    font-size: 1.1em;
}

/* Provider sections */
.photobooth-provider-section {
    margin-bottom: 2rem;
}

.photobooth-provider-section__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0e0ec;
}

.photobooth-provider-section__count {
    font-weight: 400;
    color: #999;
    font-size: 0.9em;
}

/* Werkgebieden tags op provider pagina */
.photobooth-provider-werkgebieden {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.photobooth-provider-werkgebied {
    display: inline-block;
    padding: 5px 14px;
    background: #f8f0f5;
    color: #d4167d;
    border: 1px solid #f0d0e5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 600px) {
    .photobooth-provider-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .photobooth-provider-hero__meta {
        justify-content: center;
    }

    .photobooth-provider-hero__links {
        justify-content: center;
    }

    .photobooth-provider-werkgebieden {
        justify-content: center;
    }
}

/* ==============================================
   SEO pagina's (Steden & Events)
   ============================================== */
.photobooth-seo-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

.photobooth-seo-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    background: #fce4f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.photobooth-seo-hero__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.photobooth-seo-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(252,228,240,0.6);
}

.photobooth-seo-hero__content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    width: 100%;
}

.photobooth-seo-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(233,30,140,0.12);
    color: #d4167d;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.photobooth-seo-hero__icon {
    font-size: 1.1em;
}

.photobooth-seo-hero__title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.photobooth-seo-hero__count {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* SEO content */
.photobooth-seo-content {
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0e0ec;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.photobooth-seo-content h2,
.photobooth-seo-content h3 {
    color: #1a1a2e;
    margin-top: 1.5rem;
}

.photobooth-seo-content p {
    margin-bottom: 1rem;
}

/* Packages section */
.photobooth-seo-packages__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0e0ec;
}

.photobooth-seo-empty {
    text-align: center;
    padding: 3rem 1rem;
    background: #fafafa;
    border-radius: 12px;
    border: 1px dashed #ddd;
}

.photobooth-seo-empty p {
    font-size: 1.05rem;
    color: #777;
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    .photobooth-seo-hero__title {
        font-size: 1.5rem;
    }

    .photobooth-seo-hero__content {
        padding: 1.5rem;
    }

    .photobooth-seo-content {
        padding: 1rem;
    }
}

/* ==============================================
   Contact Page
   ============================================== */
.photobooth-contact {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
}

.photobooth-contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.photobooth-contact__info-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.photobooth-contact__info-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.photobooth-contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.photobooth-contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.photobooth-contact__detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fce4f0;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.photobooth-contact__detail strong {
    display: block;
    font-size: 0.9rem;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.photobooth-contact__detail p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.photobooth-contact__faq {
    background: #fafafa;
    border-radius: 12px;
    padding: 1.25rem;
}

.photobooth-contact__faq h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.photobooth-contact__faq ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photobooth-contact__faq li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.photobooth-contact__faq li:last-child {
    border-bottom: none;
}

.photobooth-contact__faq li::before {
    content: '›';
    font-weight: 700;
    color: #d4167d;
    margin-right: 0.5rem;
}

.photobooth-contact__form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid #f0e0ec;
}

.photobooth-contact__field {
    margin-bottom: 1.25rem;
}

.photobooth-contact__field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
}

.photobooth-contact__field .required {
    color: #d4167d;
}

.photobooth-contact__field input[type="text"],
.photobooth-contact__field input[type="email"],
.photobooth-contact__field input[type="tel"],
.photobooth-contact__field select,
.photobooth-contact__field textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid #f0e0ec;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: #fff;
    color: #333;
}

.photobooth-contact__field input:focus,
.photobooth-contact__field select:focus,
.photobooth-contact__field textarea:focus {
    outline: none;
    border-color: #d4167d;
}

.photobooth-contact__field textarea {
    resize: vertical;
    min-height: 120px;
}

.photobooth-contact__checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
    font-weight: 400 !important;
}

.photobooth-contact__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #d4167d;
    flex-shrink: 0;
}

.photobooth-contact__checkbox a {
    color: #d4167d;
    text-decoration: underline;
}

.photobooth-contact__submit {
    width: 100%;
    padding: 0.85rem;
    background: #d4167d;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.photobooth-contact__submit:hover {
    background: #c2177a;
    transform: translateY(-1px);
}

.photobooth-contact__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.photobooth-contact__result {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.photobooth-contact__result--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.photobooth-contact__result--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .photobooth-contact__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==============================================
   Archive Steden/Events Overview
   ============================================== */
.photobooth-archive-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
}

.photobooth-archive__section {
    margin-bottom: 3rem;
}

.photobooth-archive__section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.photobooth-archive__section-icon {
    font-size: 1.2em;
}

.photobooth-archive__section-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

/* Event cards */
.photobooth-archive__events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.photobooth-archive__event-card {
    display: block;
    background: #fff;
    border: 1px solid #f0e0ec;
    border-radius: 14px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.photobooth-archive__event-card:hover {
    border-color: #d4167d;
    box-shadow: 0 4px 16px rgba(233,30,140,0.1);
    transform: translateY(-2px);
}

.photobooth-archive__event-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
}

.photobooth-archive__event-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.photobooth-archive__event-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #d4167d;
}

.photobooth-archive__event-card:hover .photobooth-archive__event-link {
    color: #c2177a;
}

/* Provincie */
.photobooth-archive__provincie {
    margin-bottom: 2rem;
}

.photobooth-archive__provincie-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #fce4f0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.photobooth-archive__provincie-icon {
    font-size: 1em;
    color: #d4167d;
}

/* Stad cards */
.photobooth-archive__steden-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.photobooth-archive__stad-card {
    display: block;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.photobooth-archive__stad-card:hover {
    background: #fff;
    border-color: #d4167d;
    box-shadow: 0 2px 10px rgba(233,30,140,0.08);
}

.photobooth-archive__stad-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.3rem;
}

.photobooth-archive__stad-desc {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.photobooth-archive__stad-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #d4167d;
}

.photobooth-archive__stad-card:hover .photobooth-archive__stad-link {
    color: #c2177a;
}

/* CTA */
.photobooth-archive__cta {
    text-align: center;
    background: #fce4f0;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin-top: 1rem;
}

.photobooth-archive__cta h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.photobooth-archive__cta p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.photobooth-archive__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.photobooth-archive__cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.photobooth-archive__cta-btn--primary {
    background: #d4167d;
    color: #fff;
}

.photobooth-archive__cta-btn--primary:hover {
    background: #c2177a;
    color: #fff;
    transform: translateY(-1px);
}

.photobooth-archive__cta-btn--outline {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
}

.photobooth-archive__cta-btn--outline:hover {
    background: #1a1a2e;
    color: #fff;
}

@media (max-width: 768px) {
    .photobooth-archive__events-grid {
        grid-template-columns: 1fr;
    }
    .photobooth-archive__steden-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .photobooth-archive__steden-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Filterbalk ── */

.pb-filters {
    margin: 1.5rem 0 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #fdf2f8 0%, #f5e6f0 50%, #ede9fe 100%);
    border-radius: 16px;
    border: 1px solid rgba(212, 22, 125, 0.12);
    position: sticky;
    top: 32px;
    z-index: 100;
    transition: box-shadow 0.3s;
}

.admin-bar .pb-filters {
    top: 32px;
}

.pb-filters.is-stuck {
    box-shadow: 0 4px 20px rgba(212, 22, 125, 0.12);
}

.pb-filters__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.75rem;
    font-size: 14px;
    font-weight: 600;
    color: #a81264;
    letter-spacing: 0.01em;
}

.pb-filters__heading-icon {
    font-size: 16px;
}

.pb-filters__bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 22, 125, 0.10);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    z-index: 10;
}

/* Individuele filter */

.pb-filter {
    position: relative;
}

.pb-filter__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border: 1.5px solid rgba(212, 22, 125, 0.18);
    border-radius: 10px;
    background: #fff;
    font-size: 13.5px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.pb-filter__btn:hover {
    border-color: #d4167d;
    background: #fef5fa;
    box-shadow: 0 2px 8px rgba(212, 22, 125, 0.10);
    transform: translateY(-1px);
}

.pb-filter--active .pb-filter__btn {
    border-color: #d4167d;
    background: linear-gradient(135deg, #fce4f0, #f8d0e8);
    color: #a81264;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212, 22, 125, 0.15);
}

.pb-filter__arrow {
    font-size: 10px;
    transition: transform 0.2s;
    color: #999;
}

.pb-filter--open .pb-filter__arrow {
    transform: rotate(180deg);
}

.pb-filter--active .pb-filter__arrow {
    color: #a81264;
}

/* Badge op filter knop */

.pb-filter__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: #d4167d;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    margin-left: 2px;
}

/* Dropdown */

.pb-filter__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 200;
    padding: 8px 0;
}

.pb-filter--open .pb-filter__dropdown {
    display: block;
}

.pb-filter__option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.15s;
    line-height: 1.4;
}

.pb-filter__option:hover {
    background: #fef5fa;
}

.pb-filter__option input[type="checkbox"] {
    accent-color: #d4167d;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* Prijs dropdown */

.pb-filter__dropdown--price {
    min-width: 280px;
    padding: 16px;
}

.pb-filter__price-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.pb-filter__price-row label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.pb-filter__price-row label span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
}

.pb-filter__price-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.pb-filter__price-input:focus {
    outline: none;
    border-color: #d4167d;
    box-shadow: 0 0 0 2px rgba(233, 30, 140, 0.1);
}

.pb-filter__price-sep {
    color: #ccc;
    padding-bottom: 8px;
}

/* Werkgebied zoekbalk */

.pb-filter--search {
    flex-grow: 1;
    min-width: 160px;
}

.pb-filter__dropdown--search {
    padding: 12px;
}

.pb-filter__search-wrap {
    position: relative;
}

.pb-filter__search {
    width: 100%;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    background: #fafafa;
    transition: all 0.2s;
}

.pb-filter__search:focus {
    outline: none;
    border-color: #d4167d;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(233, 30, 140, 0.1);
}

/* Status balk */

.pb-filters__status {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.pb-filters__count {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    white-space: nowrap;
}

.pb-filters__active-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    flex: 1;
}

.pb-filters__tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    background: #fce4f0;
    color: #a81264;
    font-size: 12px;
    font-weight: 500;
}

.pb-filters__tag-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    color: #a81264;
    padding: 0 0 0 2px;
    opacity: 0.7;
}

.pb-filters__tag-remove:hover {
    opacity: 1;
}

.pb-filters__clear {
    background: none;
    border: none;
    color: #d4167d;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    white-space: nowrap;
}

.pb-filters__clear:hover {
    text-decoration: underline;
}

/* Geen resultaten */

.pb-filters__empty {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
}

.pb-filters__empty p {
    font-size: 15px;
    color: #666;
    margin: 0 0 1rem;
}

.pb-filters__clear-btn {
    padding: 10px 24px;
    border: 2px solid #d4167d;
    border-radius: 8px;
    background: transparent;
    color: #d4167d;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.pb-filters__clear-btn:hover {
    background: #d4167d;
    color: #fff;
}

/* Verborgen kaarten */

.photobooth-vergelijker-card--hidden {
    display: none !important;
}

/* ── Mobiele filter toggle knop (alleen zichtbaar op mobiel) ── */

.pb-filters-toggle {
    display: none;
}

.pb-filters__mobile-header,
.pb-filters__mobile-footer {
    display: none;
}

/* Responsive filters */

@media (max-width: 768px) {

    /* Toggle knop altijd zichtbaar */
    .pb-filters-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 12px 20px;
        margin: 0.75rem 0 1rem;
        border: 1.5px solid rgba(212, 22, 125, 0.25);
        border-radius: 12px;
        background: linear-gradient(135deg, #fdf2f8 0%, #f5e6f0 100%);
        color: #a81264;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
    }
    .pb-filters-toggle:active {
        transform: scale(0.98);
        background: #fce4f0;
    }
    .pb-filters-toggle__icon {
        font-size: 18px;
    }
    .pb-filters-toggle__count {
        background: #d4167d;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        min-width: 22px;
        height: 22px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 6px;
    }

    /* Filterpanel: standaard verborgen, fullscreen overlay als open */
    .pb-filters {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9999;
        margin: 0;
        padding: 0;
        border-radius: 0;
        border: none;
        background: #fff;
        flex-direction: column;
        overflow: hidden;
    }
    .pb-filters.pb-filters--mobile-open {
        display: flex;
    }

    /* Header bovenaan panel */
    .pb-filters__mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid #f0f0f0;
        background: linear-gradient(135deg, #fdf2f8 0%, #f5e6f0 100%);
        flex-shrink: 0;
    }
    .pb-filters__mobile-title {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a2e;
    }
    .pb-filters__mobile-close {
        width: 36px;
        height: 36px;
        border: none;
        background: rgba(0,0,0,0.06);
        border-radius: 50%;
        font-size: 22px;
        line-height: 1;
        color: #333;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Desktop heading verbergen op mobiel */
    .pb-filters__heading {
        display: none;
    }

    /* Filterbalk op mobiel: accordion */
    .pb-filters__bar {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        gap: 0;
        background: #fff;
        border: none;
        border-radius: 0;
        box-shadow: none;
        position: static;
        z-index: auto;
    }

    .pb-filter {
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        flex-shrink: 0;
    }
    .pb-filter:last-child {
        border-bottom: none;
    }

    .pb-filter__btn {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 14px 16px;
        border: none;
        border-radius: 0;
        background: #fff;
        font-size: 15px;
        font-weight: 500;
        color: #333;
        box-shadow: none;
    }
    .pb-filter__btn:hover {
        background: #fdf2f8;
        box-shadow: none;
        transform: none;
    }
    .pb-filter--active .pb-filter__btn {
        color: #d4167d;
        font-weight: 600;
        background: #fff;
        box-shadow: none;
    }
    .pb-filter--open .pb-filter__btn {
        background: #fdf2f8;
        color: #d4167d;
        font-weight: 600;
    }

    .pb-filter__dropdown {
        position: static;
        display: none;
        max-height: none;
        width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0 16px 12px;
        background: #fdf2f8;
        z-index: auto;
        overflow: visible;
    }
    .pb-filter--open .pb-filter__dropdown {
        display: block;
    }
    .pb-filter--open::before {
        display: none;
    }

    .pb-filter__option {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 6px;
    }

    .pb-filter__dropdown--price {
        padding: 12px 16px;
    }

    .pb-filter__dropdown--search {
        padding: 12px 16px;
    }
    .pb-filter__search {
        font-size: 14px;
        padding: 12px 14px;
        border-radius: 10px;
        width: 100%;
    }

    /* Status balk: compact op mobiel */
    .pb-filters__status {
        padding: 10px 4px;
        margin-top: 0;
        flex-wrap: wrap;
    }
    .pb-filters__count {
        font-size: 12px;
        width: 100%;
        margin-bottom: 4px;
    }
    .pb-filters__active-tags {
        flex-wrap: wrap;
    }
    .pb-filters__tag {
        font-size: 11px;
    }
    .pb-filters__clear {
        font-size: 12px;
    }

    /* Footer onderaan panel */
    .pb-filters__mobile-footer {
        display: flex;
        gap: 10px;
        padding: 14px 20px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid #f0f0f0;
        background: #fff;
        flex-shrink: 0;
    }
    .pb-filters__mobile-reset {
        flex: 1;
        padding: 14px;
        border: 1.5px solid #ddd;
        border-radius: 10px;
        background: #fff;
        color: #666;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
    }
    .pb-filters__mobile-apply {
        flex: 2;
        padding: 14px;
        border: none;
        border-radius: 10px;
        background: #d4167d;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
    }
    .pb-filters__mobile-apply:active {
        background: #a81264;
    }
}

/* ── Feature tags op kaarten ── */

.photobooth-vergelijker-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 8px 0;
}

.photobooth-vergelijker-card__feature-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    background: #fce4f0;
    color: #a81264;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
}

.photobooth-vergelijker-card__feature-tag--more {
    background: #f3e5f5;
    color: #7b1fa2;
}

/* ── Features op pakketdetailpagina (quote-form) ── */

.photobooth-quote__features {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.photobooth-quote__features-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1.25rem;
}

.photobooth-quote__features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .photobooth-quote__features-grid {
        grid-template-columns: 1fr;
    }
}

.photobooth-quote__features-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f0f0f0;
}

.photobooth-quote__features-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.photobooth-quote__features-section h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 0.75rem 0;
}

.photobooth-quote__specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.photobooth-quote__spec {
    display: flex;
    flex-direction: column;
    padding: 10px 14px;
    background: #f9f5fb;
    border-radius: 8px;
    border: 1px solid #f0e6f6;
}

.photobooth-quote__spec-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 3px;
}

.photobooth-quote__spec-value {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
}

.photobooth-quote__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 6px;
}

.photobooth-quote__check-item {
    font-size: 14px;
    color: #2d7a3a;
    padding: 6px 0;
    line-height: 1.4;
}

.photobooth-quote__event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.photobooth-quote__event-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    background: #fce4f0;
    color: #a81264;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 600px) {
    .photobooth-quote__specs-grid {
        grid-template-columns: 1fr;
    }
    .photobooth-quote__checklist {
        grid-template-columns: 1fr;
    }
}

/* ── Aanbieders overzichtspagina ── */

.photobooth-providers-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pb-providers__hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.pb-providers__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 0.75rem;
}

.pb-providers__subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pb-providers__search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pb-providers__search {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fafafa;
    transition: all 0.2s;
}

.pb-providers__search:focus {
    outline: none;
    border-color: #d4167d;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(233,30,140,0.1);
}

.pb-providers__result-count {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    white-space: nowrap;
}

/* Grid */

.pb-providers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

/* Kaart */

.pb-provider-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pb-provider-card:hover {
    border-color: #d4167d;
    box-shadow: 0 8px 24px rgba(233,30,140,0.12);
    transform: translateY(-3px);
}

.pb-provider-card__header {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #fce4f0 0%, #f3e5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-provider-card__image {
    width: 100%;
    height: 100%;
}

.pb-provider-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pb-provider-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #d4167d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.pb-provider-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.pb-provider-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

.pb-provider-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #777;
}

.pb-provider-card__packages {
    white-space: nowrap;
}

.pb-provider-card__cities {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.pb-provider-card__links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #999;
}

.pb-provider-card__links span {
    padding: 3px 8px;
    background: #f5f5f5;
    border-radius: 4px;
}

.pb-provider-card__cta {
    margin-top: auto;
    padding-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #d4167d;
    transition: color 0.2s;
}

.pb-provider-card:hover .pb-provider-card__cta {
    color: #a81264;
}

/* Hidden state */

.pb-provider-card--hidden {
    display: none !important;
}

/* Lege staat */

.pb-providers__empty,
.pb-providers__none {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
}

.pb-providers__empty p,
.pb-providers__none p {
    font-size: 15px;
    color: #666;
    margin: 0 0 1rem;
}

.pb-providers__register-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #d4167d;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.pb-providers__register-btn:hover {
    background: #a81264;
    color: #fff;
}

/* CTA sectie */

.pb-providers__cta-section {
    text-align: center;
    padding: 3rem 2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, #fce4f0 0%, #f3e5f5 100%);
    border-radius: 16px;
}

.pb-providers__cta-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
}

.pb-providers__cta-section p {
    color: #555;
    font-size: 1rem;
    margin: 0 0 1.25rem;
}

.pb-providers__cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #d4167d;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(233,30,140,0.3);
}

.pb-providers__cta-btn:hover {
    background: #a81264;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233,30,140,0.4);
}

@media (max-width: 768px) {
    .pb-providers__grid {
        grid-template-columns: 1fr;
    }
    .pb-providers__title {
        font-size: 1.6rem;
    }
    .pb-providers__search-bar {
        flex-direction: column;
    }
}
