/**
 * Frontend CSS voor Leveranciers Registratie
 * Styled met Hart van Liefde kleuren: goud, beige, roze accenten
 */

.leveranciers-registratie-form,
.leveranciers-dienst-form {
    max-width: 900px;
    margin: 0 auto;
    background: #faf9f7;
    padding: 2em;
    border-radius: 8px;
}

.leveranciers-registratie-form h2,
.leveranciers-dienst-form h2 {
    color: #2c2c2c;
    font-family: serif;
    font-size: 2em;
    margin-bottom: 1em;
    text-align: center;
}

/* Stappen indicator */
.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2em;
    padding: 1.5em 0;
    position: relative;
    gap: 0.5em;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Verbindingslijn tussen stappen - subtiel en elegant */
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 25px);
    width: calc(100% - 50px);
    height: 2px;
    background: #e8e5e0;
    z-index: 0;
    border-radius: 1px;
    transition: background 0.3s ease;
}

.step-item.completed:not(:last-child)::after {
    background: #c5a36e;
    opacity: 0.4;
}

.step-item.active:not(:last-child)::after {
    background: linear-gradient(to right, #c5a36e 30%, #e8e5e0 30%);
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e8e5e0;
    color: #8b7355;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5em;
    transition: all 0.3s;
    border: 2px solid #e8e5e0;
    font-size: 1.1em;
}

.step-label {
    font-size: 0.85em;
    color: #8b7355;
    text-align: center;
    max-width: 100px;
    font-weight: 500;
}

.step-item.active .step-number {
    background: #c5a36e;
    color: white;
    border-color: #c5a36e;
    box-shadow: 0 2px 8px rgba(197, 163, 110, 0.3);
}

.step-item.completed .step-number {
    background: #c5a36e;
    color: white;
    border-color: #c5a36e;
}

.step-item.active .step-label {
    color: #c5a36e;
    font-weight: 600;
}

.step-item.completed .step-label {
    color: #8b7355;
}

/* Form stappen */
.form-step {
    display: none !important;
    animation: fadeIn 0.3s;
}

.form-step.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Zorg dat eerste stap zichtbaar is bij laden */
.leveranciers-dienst-form .form-step[data-step="1"].active,
.leveranciers-dienst-form .form-step.active[data-step="1"] {
    display: block !important;
    visibility: visible !important;
}

/* Stappen 3, 4, 5 (Foto's, Beschrijving, Overige) expliciet zichtbaar wanneer actief */
.leveranciers-dienst-form .form-step[data-step="3"].active,
.leveranciers-dienst-form .form-step[data-step="4"].active,
.leveranciers-dienst-form .form-step[data-step="5"].active,
.leveranciers-dienst-form .form-step.active[data-step="3"],
.leveranciers-dienst-form .form-step.active[data-step="4"],
.leveranciers-dienst-form .form-step.active[data-step="5"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 200px;
}

.leveranciers-dienst-form .form-step .form-section {
    display: block !important;
}

/* Alleen wanneer NIET single-page: verberg alles behalve stap 2 (legacy dienst-toevoegen zonder class) */
.leveranciers-dienst-form:not(.dienst-toevoegen-single) #leverancier-dienst-form .form-step:not([data-step="2"]) {
    display: none !important;
}

.leveranciers-dienst-form:not(.dienst-toevoegen-single) #leverancier-dienst-form .form-step[data-step="2"] {
    display: block !important;
}

/* Pakket bewerken + dienst toevoegen: alles op één pagina onder elkaar, alle secties zichtbaar */
.dienst-bewerken-single .form-step,
.dienst-toevoegen-single .form-step {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom: 1px solid #e5e5e5;
}
.dienst-bewerken-single .form-step:last-of-type,
.dienst-toevoegen-single .form-step:last-of-type {
    border-bottom: none;
}

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

/* Stap navigatie */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
    padding-top: 1.5em;
    border-top: 2px solid #ddd;
}

.step-navigation .button {
    padding: 0.75em 2em;
    font-size: 1em;
}

.step-prev {
    background: #6c757d;
    color: white;
    border: none;
}

.step-prev:hover {
    background: #5a6268;
    color: white;
}

.step-next {
    background: #c5a36e;
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.step-next:hover {
    background: #a8905d;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(197, 163, 110, 0.3);
}

.step-next:active {
    transform: translateY(0);
}

.step-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.leveranciers-registratie-form .form-section,
.leveranciers-dienst-form .form-section {
    margin-bottom: 2em;
    padding: 2em;
    background: #fff;
    border: 1px solid #e8e5e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.leveranciers-registratie-form h3,
.leveranciers-dienst-form h3 {
    margin-top: 0;
    color: #2c2c2c;
    font-family: serif;
    font-size: 1.5em;
    border-bottom: 2px solid #c5a36e;
    padding-bottom: 0.5em;
    margin-bottom: 1.5em;
}

.form-row {
    margin-bottom: 1.5em;
}

.form-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #2c2c2c;
    font-size: 0.95em;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="url"],
.form-row input[type="password"],
.form-row input[type="file"],
.form-row input[type="number"],
.form-row input[type="tel"],
.form-row textarea {
    width: 100%;
    padding: 0.75em 1em;
    border: 1px solid #e8e5e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.form-row input[type="text"]:focus,
.form-row input[type="email"]:focus,
.form-row input[type="url"]:focus,
.form-row input[type="password"]:focus,
.form-row input[type="date"]:focus,
.form-row input[type="number"]:focus,
.form-row input[type="tel"]:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #c5a36e;
    box-shadow: 0 0 0 3px rgba(197, 163, 110, 0.1);
}

/* Trouwdatum wrapper met checkbox */
.wedding-date-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75em;
}

.wedding-date-input {
    width: 100%;
    padding: 0.7em 1em;
    border: 2px solid #e8e5e0;
    border-radius: 6px;
    font-size: 0.95em;
    background: white;
    color: #2c2c2c;
    transition: all 0.3s ease;
    font-family: inherit;
}

.wedding-date-input:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5em;
    cursor: pointer;
    font-size: 0.9em;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.checkbox-label span {
    user-select: none;
}

/* Boekingsovereenkomst checkbox */
.agreement-checkbox {
    margin-top: 1em;
    padding: 1em;
    background: #fff8e8;
    border: 1px solid #e8e5e0;
    border-radius: 6px;
}

.agreement-checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.agreement-checkbox span {
    line-height: 1.5;
    color: #2c2c2c;
}

.agreement-checkbox a {
    color: #c5a36e;
    text-decoration: underline;
    font-weight: 500;
}

.agreement-checkbox a:hover {
    color: #a8905d;
    text-decoration: none;
}

.agreement-checkbox input[type="checkbox"]:required:invalid {
    border-color: #dc3545;
}

.agreement-checkbox input[type="checkbox"]:required:valid {
    border-color: #c5a36e;
}

.form-row textarea {
    resize: vertical;
}

.form-row input[type="checkbox"] {
    margin-right: 0.5em;
}

.form-actions {
    margin-top: 2em;
    padding-top: 1.5em;
    border-top: 2px solid #ddd;
}

.form-actions .button {
    margin-right: 1em;
}

.button-primary {
    background: #c5a36e !important;
    color: white !important;
    border: none !important;
    padding: 0.75em 2em !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

.button-primary:hover {
    background: #a8905d !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197, 163, 110, 0.4) !important;
}

#form-messages {
    margin-top: 1em;
    padding: 1em;
    border-radius: 4px;
}

#form-messages.success {
    background: #f0f8e8;
    color: #2c2c2c;
    border: 1px solid #c5a36e;
    border-left: 4px solid #c5a36e;
}

#form-messages.error {
    background: #fff5f5;
    color: #2c2c2c;
    border: 1px solid #f5c6cb;
    border-left: 4px solid #dc3545;
}

/* USP's */
#usps-container {
    margin-bottom: 1em;
}

.usp-row {
    display: flex;
    gap: 1em;
    margin-bottom: 0.5em;
    align-items: center;
}

.usp-row input {
    flex: 1;
}

.usp-row .remove-usp {
    padding: 0.5em 1em;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.usp-row .remove-usp:hover {
    background: #c82333;
}

#add-usp {
    margin-top: 0.5em;
}

/* Foto previews */
.image-preview {
    margin-top: 1em;
}

.image-preview img {
    max-width: 300px;
    height: auto;
    border: 2px solid #0073aa;
    border-radius: 4px;
    padding: 0.5em;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gallery-upload-area {
    margin-top: 1em;
}

.gallery-preview,
.gallery-items {
    margin-top: 1em;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.gallery-preview img,
.gallery-items img {
    max-width: 150px;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 4px;
    padding: 0.5em;
    background: #fff;
}

.gallery-item-preview {
    position: relative;
    display: inline-block;
}

.gallery-item-preview img {
    max-width: 150px;
    height: auto;
    border: 2px solid #0073aa;
    border-radius: 4px;
    padding: 0.5em;
    background: #fff;
}

.gallery-item-preview .remove-new-gallery-image {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.gallery-item-preview .remove-new-gallery-image:hover {
    background: #c82333;
}

.current-banner {
    margin-bottom: 1em;
    padding: 1em;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.current-banner img {
    max-width: 300px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.current-fotos {
    margin-bottom: 1em;
    padding: 1em;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.current-fotos p {
    margin-bottom: 0.5em;
    font-weight: 600;
}

#existing-gallery {
    margin-top: 1em;
}

.existing-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    margin-top: 0.5em;
}

.foto-item {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.foto-item img {
    display: block;
    max-width: 150px;
    width: 150px;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 4px;
    padding: 0.5em;
    background: #fff;
    object-fit: cover;
}

.foto-item .remove-gallery-image,
.remove-existing-image {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.foto-item .remove-gallery-image:hover,
.remove-existing-image:hover {
    background: #c82333;
}

.remove-image-btn {
    margin-top: 0.5em;
    background: #dc3545;
    color: white;
    border: none;
}

.remove-image-btn:hover {
    background: #c82333;
    color: white;
}

/* Categorieën */
.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1em;
    margin-top: 1em;
    padding: 1em;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.category-checkbox {
    display: flex;
    align-items: center;
    padding: 0.5em;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.category-checkbox:hover {
    background: #f0f0f0;
    border-color: #0073aa;
}

.category-checkbox input[type="checkbox"] {
    margin-right: 0.5em;
    cursor: pointer;
}

.category-checkbox input[type="checkbox"]:checked + span,
.category-checkbox:has(input[type="checkbox"]:checked) {
    background: #fff8e8;
    border-color: #c5a36e;
    font-weight: 600;
    color: #2c2c2c;
}

/* Regio's (zelfde stijl als categorieën) */
.product-regios {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1em;
    margin-top: 1em;
    padding: 1em;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.regio-checkbox {
    display: flex;
    align-items: center;
    padding: 0.5em;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.regio-checkbox:hover {
    background: #f0f0f0;
    border-color: #0073aa;
}
.regio-checkbox input[type="checkbox"] {
    margin-right: 0.5em;
    cursor: pointer;
}
.regio-checkbox input[type="checkbox"]:checked + span,
.regio-checkbox:has(input[type="checkbox"]:checked) {
    background: #fff8e8;
    border-color: #c5a36e;
    font-weight: 600;
    color: #2c2c2c;
}

/* Mobiel: registratie & leveranciersformulieren — minder nest-padding, meer bruikbare breedte */
@media (max-width: 768px) {
    .leveranciers-registratie-form,
    .leveranciers-dienst-form {
        max-width: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0.75rem 0.5rem;
        border-radius: 6px;
        box-sizing: border-box;
    }

    .leveranciers-registratie-form h2,
    .leveranciers-dienst-form h2 {
        font-size: 1.45rem;
        margin-bottom: 0.65rem;
        line-height: 1.2;
    }

    .leveranciers-registratie-form .form-section,
    .leveranciers-dienst-form .form-section {
        padding: 0.85rem 0.65rem;
        margin-bottom: 1rem;
        border-radius: 6px;
    }

    .leveranciers-registratie-form h3,
    .leveranciers-dienst-form h3 {
        font-size: 1.2rem;
        margin-bottom: 0.85rem;
        padding-bottom: 0.35rem;
    }

    .leveranciers-registratie-form .form-row,
    .leveranciers-dienst-form .form-row {
        margin-bottom: 1rem;
    }

    .product-categories,
    .product-regios {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.5rem;
        margin-top: 0.5rem;
    }

    .category-checkbox,
    .regio-checkbox {
        padding: 0.45rem 0.5rem;
        min-height: 0;
    }

    .step-navigation {
        margin-top: 1.1rem;
        padding-top: 0.85rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .step-navigation .button {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }

    .agreement-checkbox {
        padding: 0.65rem;
        margin-top: 0.65rem;
    }

    .leveranciers-dashboard {
        padding: 0.85rem 0.5rem;
        border-radius: 6px;
    }

    .leveranciers-dashboard .form-section {
        padding: 0.85rem 0.65rem;
    }
}

@media (max-width: 480px) {
    .leveranciers-registratie-form,
    .leveranciers-dienst-form {
        padding: 0.55rem 0.35rem;
    }

    .leveranciers-registratie-form .form-section,
    .leveranciers-dienst-form .form-section {
        padding: 0.65rem 0.5rem;
    }

    .product-categories,
    .product-regios {
        padding: 0.4rem;
        gap: 0.4rem;
    }
}

.form-row .description {
    font-size: 0.9em;
    color: #8b7355;
    font-style: italic;
    margin-bottom: 0.5em;
    font-weight: 400;
}

/* Pakketten */
.pakket-item {
    margin-bottom: 1.5em;
    padding: 1.5em;
    background: white;
    border: 2px solid #ddd;
    border-radius: 4px;
}

.pakket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #c5a36e;
}

.pakket-header h4 {
    margin: 0;
    color: #c5a36e;
    font-family: serif;
}

.pakket-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}

.form-row-inline {
    display: flex;
    flex-direction: column;
}

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

.form-row-inline label {
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #555;
    font-size: 0.9em;
}

.form-row-inline input,
.form-row-inline textarea {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.remove-pakket {
    background: #dc3545;
    color: white;
    border: none;
}

.remove-pakket:hover {
    background: #c82333;
    color: white;
}

#add-pakket {
    margin-top: 1em;
    background: #c5a36e;
    color: white;
    border: none;
    font-weight: 600;
}

#add-pakket:hover {
    background: #a8905d;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(197, 163, 110, 0.3);
}

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

    .pakket-item {
        padding: 0.9em;
        margin-bottom: 1em;
        border-radius: 8px;
    }

    .pakket-header {
        align-items: flex-start;
        gap: 0.6em;
        margin-bottom: 0.75em;
        padding-bottom: 0.45em;
    }

    .pakket-header h4 {
        font-size: 1.15em;
        line-height: 1.25;
        margin-right: 0.5em;
    }

    .pakket-fields {
        gap: 0.7em;
    }

    .form-row-inline label {
        margin-bottom: 0.35em;
        font-size: 0.9em;
    }

    .form-row-inline input,
    .form-row-inline textarea {
        padding: 0.62em 0.68em;
        font-size: 16px; /* voorkomt iOS zoom en leest rustiger */
        border-radius: 6px;
    }

    .remove-pakket {
        padding: 0.38em 0.68em !important;
        font-size: 0.78em !important;
        line-height: 1.2;
        border-radius: 6px !important;
        min-height: 0 !important;
        align-self: flex-start;
        width: auto !important;
    }

    #add-pakket {
        width: 100%;
        padding: 0.62em 0.9em;
        font-size: 0.9em;
        border-radius: 6px;
    }
}

/* Pakketten display op product pagina */
.product-pakketten {
    margin: 1.5em 0;
}

.pakket-item-display {
    margin-bottom: 1.5em;
    padding: 1.5em;
    background: #fff8e8;
    border: 2px solid #c5a36e;
    border-radius: 8px;
}

.pakket-item-display h4 {
    margin: 0 0 0.5em 0;
    color: #c5a36e;
    font-size: 1.2em;
    font-family: serif;
}

.pakket-item-display p {
    margin: 0.5em 0;
    color: #555;
}

/* Mijn diensten */
.leveranciers-mijn-diensten {
    margin-top: 2em;
}

.leveranciers-mijn-diensten .button {
    margin-bottom: 1.5em;
}

/* Duidelijke knop voor pakketten beheren - compact voor tabel */
.leveranciers-mijn-diensten .pakketten-beheren-btn {
    background: #c5a36e !important;
    color: white !important;
    padding: 0.5em 1em !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    font-size: 0.9em !important;
    white-space: nowrap !important;
    min-width: auto !important;
}

.leveranciers-mijn-diensten .pakketten-beheren-btn:hover {
    background: #a8905d !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(197, 163, 110, 0.3) !important;
    color: white !important;
}

/* Grote knop voor wanneer er geen producten zijn */
.leveranciers-mijn-diensten .pakketten-beheren-btn-large {
    background: #c5a36e !important;
    color: white !important;
    padding: 0.9em 1.8em !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    font-size: 1em !important;
}

.leveranciers-mijn-diensten .pakketten-beheren-btn-large:hover {
    background: #a8905d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(197, 163, 110, 0.4) !important;
    color: white !important;
}

/* Zorg dat tabel cellen niet te breed worden */
.leveranciers-mijn-diensten table td {
    vertical-align: middle;
}

.leveranciers-mijn-diensten table td:last-child {
    white-space: nowrap;
    width: auto;
    min-width: 120px;
}

/* Nieuwe dienst knop */
.leveranciers-mijn-diensten .nieuwe-dienst-btn,
.leveranciers-mijn-diensten a.nieuwe-dienst-btn,
.leveranciers-mijn-diensten .button.nieuwe-dienst-btn {
    background: #c5a36e !important;
    color: white !important;
    padding: 0.7em 1.5em !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    font-size: 1em !important;
    border: none !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.leveranciers-mijn-diensten .nieuwe-dienst-btn:hover,
.leveranciers-mijn-diensten a.nieuwe-dienst-btn:hover,
.leveranciers-mijn-diensten .button.nieuwe-dienst-btn:hover {
    background: #a8905d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(197, 163, 110, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Action hint tekst */
.leveranciers-mijn-diensten .action-hint {
    color: #666;
    font-size: 0.9em;
    font-style: italic;
    margin: 0;
}

/* Mijn diensten actions container */
.leveranciers-mijn-diensten .mijn-diensten-actions {
    margin-bottom: 1.5em;
    display: flex;
    gap: 1em;
    align-items: center;
    flex-wrap: wrap;
    padding: 1em;
    background: #fff8e8;
    border-radius: 6px;
    border: 1px solid #e8e5e0;
}

@media (max-width: 768px) {
    .leveranciers-mijn-diensten .mijn-diensten-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .leveranciers-mijn-diensten .action-hint {
        font-size: 0.85em;
    }
}

/* Dashboard */
.leveranciers-dashboard {
    max-width: 100%;
    width: 100%;
    margin: 0;
    background: #faf9f7;
    padding: 2em;
    border-radius: 8px;
}

.leveranciers-dashboard h2 {
    color: #2c2c2c;
    font-family: serif;
    font-size: 2em;
    margin-bottom: 1.5em;
    text-align: center;
}

/* Dashboard Tabs */
.dashboard-tabs {
    display: flex;
    gap: 1em;
    margin-bottom: 2em;
    border-bottom: 2px solid #e0d9c8;
}

.tab-button {
    padding: 1em 2em;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-button:hover {
    color: #c5a36e;
}

.tab-button.active {
    color: #c5a36e;
    border-bottom-color: #c5a36e;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Dashboard Sections */
.dashboard-section {
    background: white;
    padding: 2em;
    border-radius: 8px;
    margin-bottom: 2em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5em;
    padding-bottom: 1em;
    border-bottom: 2px solid #e0d9c8;
}

.section-header h3 {
    color: #2c2c2c;
    font-family: serif;
    font-size: 1.5em;
    margin: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5em;
    margin-top: 1.5em;
}

.product-card {
    background: white;
    border: 2px solid #e0d9c8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #c5a36e;
    box-shadow: 0 4px 8px rgba(197, 163, 110, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .product-header,
.product-card .product-info,
.product-card .product-actions {
    padding: 1.5em;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #e0d9c8;
}

.product-header h4 {
    color: #2c2c2c;
    font-family: serif;
    font-size: 1.2em;
    margin: 0;
    flex: 1;
}

.status-badge {
    padding: 0.3em 0.8em;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 500;
    white-space: nowrap;
}

.status-badge.status-publish {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-draft {
    background: #e2e3e5;
    color: #383d41;
}

.product-info {
    margin-bottom: 1em;
}

.product-price {
    font-size: 1.3em;
    font-weight: 600;
    color: #c5a36e;
    margin: 0.5em 0;
}

.product-date {
    color: #666;
    font-size: 0.9em;
    margin: 0.5em 0;
}

.pakketten-info {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #e0d9c8;
}

.pakketten-info strong {
    color: #2c2c2c;
    display: block;
    margin-bottom: 0.5em;
}

.pakketten-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pakketten-list li {
    padding: 0.3em 0;
    color: #666;
    font-size: 0.9em;
}

.product-actions {
    display: flex;
    gap: 0.5em;
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #e0d9c8;
}

.product-actions .button {
    flex: 1;
    padding: 0.6em 1em;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
}

.button-secondary {
    background: #f0f0f0;
    color: #2c2c2c;
}

.button-secondary:hover {
    background: #e0e0e0;
}

.button-danger {
    background: #dc3545;
    color: white;
}

.button-danger:hover {
    background: #c82333;
}

.no-products {
    text-align: center;
    padding: 2em;
    color: #666;
    font-style: italic;
}

/* Archief lege status: binnenkort nieuwe diensten */
.leveranciers-empty-state {
    padding: 3em 2em;
    max-width: 36em;
    margin: 0 auto;
    font-style: normal;
}
.leveranciers-empty-state .empty-state-lead {
    font-size: 1.15em;
    color: #2c2c2c;
    margin-bottom: 1em;
    line-height: 1.5;
}
.leveranciers-empty-state .empty-state-cta {
    color: #555;
    line-height: 1.6;
}
.leveranciers-empty-state .empty-state-cta a {
    color: #c5a36e;
    text-decoration: underline;
}
.leveranciers-empty-state .empty-state-cta a:hover {
    color: #a88a5c;
}

/* Account Form */
.leveranciers-dashboard .form-section {
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom: 1px solid #e0d9c8;
}

.leveranciers-dashboard .form-section:last-of-type {
    border-bottom: none;
}

.leveranciers-dashboard .form-section h4 {
    color: #2c2c2c;
    font-family: serif;
    font-size: 1.3em;
    margin-bottom: 1em;
}

.leveranciers-dashboard .form-row {
    margin-bottom: 1.5em;
}

.leveranciers-dashboard .form-row label {
    display: block;
    margin-bottom: 0.5em;
    color: #2c2c2c;
    font-weight: 500;
}

.leveranciers-dashboard .form-row input[type="text"],
.leveranciers-dashboard .form-row input[type="url"],
.leveranciers-dashboard .form-row input[type="email"],
.leveranciers-dashboard .form-row textarea {
    width: 100%;
    padding: 0.8em;
    border: 2px solid #e0d9c8;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.leveranciers-dashboard .form-row input:focus,
.leveranciers-dashboard .form-row textarea:focus {
    outline: none;
    border-color: #c5a36e;
}

.leveranciers-dashboard .form-row input[type="checkbox"] {
    margin-right: 0.5em;
}

.usp-row {
    margin-bottom: 0.8em;
}

.usp-row input {
    width: 100%;
}

.form-actions {
    margin-top: 2em;
    padding-top: 2em;
    border-top: 2px solid #e0d9c8;
}

.form-actions .button-primary {
    background: #c5a36e;
    color: white;
    padding: 1em 2em;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-actions .button-primary:hover {
    background: #a8905d;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(197, 163, 110, 0.3);
}

.form-actions .button-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Messages */
.leveranciers-message {
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 4px;
}

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

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

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
    }
    
    .dashboard-tabs {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
        text-align: left;
    }
}

.leveranciers-mijn-diensten table {
    width: 100%;
}

.leveranciers-mijn-diensten .status {
    padding: 0.25em 0.75em;
    border-radius: 3px;
    font-size: 0.9em;
    font-weight: 600;
}

.leveranciers-mijn-diensten .status-pending {
    background: #fff3cd;
    color: #856404;
}

.leveranciers-mijn-diensten .status-publish {
    background: #d4edda;
    color: #155724;
}

.leveranciers-mijn-diensten .status-draft {
    background: #e2e3e5;
    color: #383d41;
}

/* Messages */
.leveranciers-message {
    padding: 1em;
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 4px;
    margin-bottom: 1em;
}

.leveranciers-message a {
    color: #0c5460;
    text-decoration: underline;
}

/* Loading state */
.form-loading {
    opacity: 0.6;
    pointer-events: none;
}

.form-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   WooCommerce My Account Styling
   ============================================ */

/* My Account Container - alleen binnen .woocommerce-account */
.woocommerce-account {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0px;
}

/* My Account Layout - Side by Side - alleen binnen .woocommerce-account */
.woocommerce-account > .woocommerce {
    display: flex;
    gap: 2em;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* My Account Navigation - alleen binnen .woocommerce-account */
.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #faf9f7;
    border-radius: 8px;
    padding: 1em;
    border: 1px solid #e8e5e0;
    flex: 0 0 250px;
    min-width: 200px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3em;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: flex;
    align-items: center;
    gap: 0.45em;
    padding: 0.7em 1em;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
    font-size: 0.95em;
}

/* WordPress Dashicons in Mijn account-menu (dashicons wordt op Mijn account ingeladen) */
.woocommerce-account .woocommerce-MyAccount-navigation li a::before {
    font-family: dashicons;
    display: inline-block;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    speak: never;
    text-decoration: inherit;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 1.15em;
    height: 1.15em;
    font-size: 1.05em;
    flex-shrink: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard a::before {
    content: "\f226";
}

.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--orders a::before {
    content: "\f174";
}

.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--mijn-diensten a::before {
    content: "\f312";
}

.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--boekingen a::before {
    content: "\f331";
}

.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--mijn-agenda a::before {
    content: "\f508";
}

.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-address a::before {
    content: "\f230";
}

.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--payment-methods a::before {
    content: "\f526";
}

.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-account a::before {
    content: "\f110";
}

.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--mollie-connect a::before {
    content: "\f18e";
}

.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a::before {
    content: "\f14a";
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: #fff;
    color: #c5a36e;
    border-color: #e8e5e0;
    transform: translateX(5px);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: #c5a36e;
    color: white;
    border-color: #c5a36e;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(197, 163, 110, 0.3);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:hover {
    background: #a8905d;
    transform: translateX(0);
}

/* My Account Content */
.woocommerce-MyAccount-content {
    background: #faf9f7;
    border-radius: 8px;
    padding: 1.5em;
    border: 1px solid #e8e5e0;
    min-height: 400px;
    flex: 1;
    min-width: 0; /* Allows flex item to shrink below content size */
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    color: #2c2c2c;
    font-family: serif;
    margin-top: 0;
    margin-bottom: 1em;
    padding-bottom: 0.4em;
    border-bottom: 2px solid #c5a36e;
}

.woocommerce-MyAccount-content h2 {
    font-size: 1.75em;
}

.woocommerce-MyAccount-content h3 {
    font-size: 1.3em;
}

.woocommerce-MyAccount-content p {
    color: #2c2c2c;
    line-height: 1.5;
    margin-bottom: 0.75em;
}

/* Intro text on address page */
.woocommerce-MyAccount-content > p:first-of-type {
    margin-bottom: 0.75em;
    font-size: 0.95em;
    color: #666;
}

/* My Account Tables */
.woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 1.5em;
}

.woocommerce-MyAccount-content table thead {
    background: #c5a36e;
    color: white;
}

.woocommerce-MyAccount-content table thead th {
    padding: 0.75em 1em;
    text-align: left;
    font-weight: 600;
    font-family: serif;
    font-size: 1em;
}

.woocommerce-MyAccount-content table tbody tr {
    border-bottom: 1px solid #e8e5e0;
    transition: background 0.3s ease;
}

.woocommerce-MyAccount-content table tbody tr:hover {
    background: #fff8e8;
}

.woocommerce-MyAccount-content table tbody tr:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-content table tbody td {
    padding: 0.9em 1em;
    color: #2c2c2c;
    vertical-align: middle;
    font-size: 0.95em;
}

.woocommerce-MyAccount-content table tbody td strong {
    color: #2c2c2c;
    font-weight: 600;
}

/* Status Badges in Tables */
.woocommerce-MyAccount-content .status {
    display: inline-block;
    padding: 0.4em 1em;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce-MyAccount-content .status-pending {
    background: #fff3cd;
    color: #856404;
}

.woocommerce-MyAccount-content .status-publish,
.woocommerce-MyAccount-content .status-completed {
    background: #d4edda;
    color: #155724;
}

.woocommerce-MyAccount-content .status-draft {
    background: #e2e3e5;
    color: #383d41;
}

.woocommerce-MyAccount-content .status-processing {
    background: #cfe2ff;
    color: #084298;
}

.woocommerce-MyAccount-content .status-on-hold {
    background: #fff3cd;
    color: #856404;
}

.woocommerce-MyAccount-content .status-cancelled,
.woocommerce-MyAccount-content .status-failed {
    background: #f8d7da;
    color: #721c24;
}

/* Buttons in My Account */
.woocommerce-MyAccount-content .button {
    display: inline-block;
    padding: 0.6em 1.2em;
    background: #c5a36e;
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
}

.woocommerce-MyAccount-content .button:hover {
    background: #a8905d;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(197, 163, 110, 0.3);
    color: white !important;
}

.woocommerce-MyAccount-content .button.button-primary {
    background: #c5a36e !important;
    color: white !important;
}

.woocommerce-MyAccount-content .button.button-primary:hover {
    background: #a8905d !important;
    color: white !important;
}

.woocommerce-MyAccount-content .button.alt {
    background: #6c757d;
    color: white !important;
}

.woocommerce-MyAccount-content .button.alt:hover {
    background: #5a6268;
    color: white !important;
}

/* Forms in My Account */
.woocommerce-MyAccount-content form {
    background: white;
    padding: 1.5em;
    border-radius: 8px;
    border: 1px solid #e8e5e0;
    margin-bottom: 1.5em;
}

.woocommerce-MyAccount-content .form-row {
    margin-bottom: 1em;
}

.woocommerce-MyAccount-content .form-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4em;
    color: #2c2c2c;
    font-size: 0.9em;
}

.woocommerce-MyAccount-content .form-row .required {
    color: #dc3545;
}

.woocommerce-MyAccount-content .form-row input[type="text"],
.woocommerce-MyAccount-content .form-row input[type="email"],
.woocommerce-MyAccount-content .form-row input[type="password"],
.woocommerce-MyAccount-content .form-row input[type="tel"],
.woocommerce-MyAccount-content .form-row input[type="url"],
.woocommerce-MyAccount-content .form-row textarea,
.woocommerce-MyAccount-content .form-row select {
    width: 100%;
    padding: 0.6em 0.9em;
    border: 1px solid #e8e5e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-content .form-row input:focus,
.woocommerce-MyAccount-content .form-row textarea:focus,
.woocommerce-MyAccount-content .form-row select:focus {
    outline: none;
    border-color: #c5a36e;
    box-shadow: 0 0 0 3px rgba(197, 163, 110, 0.1);
}

.woocommerce-MyAccount-content .form-row textarea {
    resize: vertical;
    min-height: 100px;
}

/* Addresses */
.woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1em;
    margin-top: 1em;
}

.woocommerce-Address {
    background: white;
    padding: 1em;
    border-radius: 8px;
    border: 1px solid #e8e5e0;
}

.woocommerce-Address-title {
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #c5a36e;
}

.woocommerce-Address-title h3 {
    margin: 0;
    color: #2c2c2c;
    font-family: serif;
    font-size: 1.15em;
}

.woocommerce-Address-title .edit {
    float: right;
    font-size: 0.8em;
    margin-top: 0.2em;
}

.woocommerce-Address address {
    color: #2c2c2c;
    font-style: normal;
    line-height: 1.5;
    font-size: 0.95em;
    margin: 0.5em 0;
}

.woocommerce-Address p {
    margin: 0.5em 0;
    font-size: 0.9em;
    color: #666;
}

.woocommerce-Address a {
    font-size: 0.9em;
    margin-top: 0.5em;
    display: inline-block;
}

/* Orders Table */
.woocommerce-orders-table {
    margin-bottom: 1.5em;
}

.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a {
    color: #c5a36e;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a:hover {
    text-decoration: underline;
}

/* Actieknoppen in boekingen/orders-tabel zichtbaar (niet wit op wit) */
.woocommerce-orders-table .button,
.woocommerce-orders-table .woocommerce-button,
.woocommerce-orders-table a.button,
.woocommerce-orders-table tfoot .button,
.my_account_orders .button,
.my_account_orders .woocommerce-button,
.my_account_orders a.button {
    background: #c5a36e !important;
    color: #fff !important;
    border: 1px solid #a8905d !important;
    padding: 0.5em 1em;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 0.2em 0.2em 0.2em 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.woocommerce-orders-table .button:hover,
.woocommerce-orders-table .woocommerce-button:hover,
.woocommerce-orders-table a.button:hover,
.my_account_orders .button:hover,
.my_account_orders a.button:hover {
    background: #a8905d !important;
    color: #fff !important;
    border-color: #8b7355 !important;
}

/* Leveranciers Mijn boekingen: Details/Bevestig knoppen */
.leveranciers-bookings .booking-actions .button,
.leveranciers-bookings .action-buttons .button {
    background: #c5a36e !important;
    color: #fff !important;
    border: 1px solid #a8905d !important;
    padding: 0.5em 1em;
    border-radius: 6px;
    font-weight: 600;
    margin: 0.2em 0.2em 0.2em 0;
}

.leveranciers-bookings .booking-actions .button:hover,
.leveranciers-bookings .action-buttons .button:hover {
    background: #a8905d !important;
    color: #fff !important;
}

/* Dashboard */
.woocommerce-MyAccount-content .woocommerce-info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
    padding: 0.75em 1em;
    border-radius: 6px;
    margin-bottom: 1em;
    border-left: 4px solid #c5a36e;
    font-size: 0.95em;
}

.woocommerce-MyAccount-content .woocommerce-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 0.75em 1em;
    border-radius: 6px;
    margin-bottom: 1em;
    border-left: 4px solid #c5a36e;
    font-size: 0.95em;
}

.woocommerce-MyAccount-content .woocommerce-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 0.75em 1em;
    border-radius: 6px;
    margin-bottom: 1em;
    border-left: 4px solid #dc3545;
    font-size: 0.95em;
}

/* Orderdetail: boekingstatus + knoppen — neutrale kaart (geen blauw info-blok / geen vreemde mark-up op “status”) */
.woocommerce-MyAccount-content .leveranciers-booking-customer-note {
    margin: 1.5em 0;
    padding: 1.15em 1.25em;
    background: #faf9f7 !important;
    border: 1px solid #e8e5e0;
    border-left: 4px solid #c5a36e;
    border-radius: 8px;
    box-shadow: none;
    color: #2c2c2c !important;
    font-size: inherit;
    position: relative;
}

.woocommerce-MyAccount-content .leveranciers-booking-customer-note::before,
.woocommerce-MyAccount-content .leveranciers-booking-customer-note::after {
    content: none !important;
    display: none !important;
}

/* Ook binnen een per ongeluk geplaatst .woocommerce-info-omhulsel: geen blauwgroene tekstkleur */
.woocommerce-MyAccount-content .woocommerce-info .leveranciers-booking-customer-note,
.woocommerce-MyAccount-content .woocommerce-message .leveranciers-booking-customer-note {
    background: #faf9f7 !important;
    color: #2c2c2c !important;
    border: 1px solid #e8e5e0;
    border-left: 4px solid #c5a36e;
}

.woocommerce-MyAccount-content .leveranciers-booking-customer-note p,
.woocommerce-MyAccount-content .leveranciers-booking-customer-note strong,
.woocommerce-MyAccount-content .leveranciers-booking-customer-note .leveranciers-booking-customer-note__label,
.woocommerce-MyAccount-content .leveranciers-booking-customer-note .leveranciers-booking-customer-note__value {
    color: #2c2c2c !important;
}

.woocommerce-MyAccount-content .leveranciers-booking-customer-note .leveranciers-booking-customer-note__value {
    font-weight: 600;
}

/* Knoppen: geen onderstreepte link-stijl van Mijn account-content */
.woocommerce-MyAccount-content .leveranciers-booking-customer-note__actions a.button {
    text-decoration: none !important;
}

/* Orderkopregel (Boeking #… / datum / status): geen gekleurde <mark>-achtergrond */
.woocommerce-account .woocommerce-MyAccount-content > p mark.order-number,
.woocommerce-account .woocommerce-MyAccount-content > p mark.order-date,
.woocommerce-account .woocommerce-MyAccount-content > p mark.order-status {
    background: transparent !important;
    color: inherit;
    font-weight: 700;
    padding: 0;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .oxy-woo-my-account .woocommerce-MyAccount-navigation ul li {
        list-style-type: none;
        padding: 0px;
        border-top: none;
    }

    /* Registratie: stapindicator leesbaar op mobiel */
    .steps-indicator {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.75em;
        padding: 0.75em 0 1em;
        margin-bottom: 1.25em;
        -webkit-overflow-scrolling: touch;
    }
    .steps-indicator::-webkit-scrollbar {
        height: 4px;
    }
    .step-item {
        flex: 0 0 auto;
        min-width: 88px;
    }
    .step-item:not(:last-child)::after {
        width: 36px;
        left: calc(100% - 8px);
        top: 17px;
    }
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.95em;
    }
    .step-label {
        max-width: 88px;
        font-size: 0.78em;
        line-height: 1.25;
        word-break: break-word;
    }

    .woocommerce-account {
        padding: 0;
    }

    .woocommerce-account > .woocommerce {
        flex-direction: column;
        gap: 1em;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        padding: 0.75em;
        margin-bottom: 0;
        flex: 0 0 auto;
        width: 100%;
        position: relative;
        padding-left: 2.1em;
        padding-right: 2.1em;
    }

    /* Mijn account menu: horizontaal swipebaar op mobiel */
    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.5em;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        padding-bottom: 0.25em;
        margin: 0;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
        height: 3px;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation li {
        flex: 0 0 auto;
        min-width: 155px;
        scroll-snap-align: start;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation li a {
        padding: 0.72em 0.9em;
        font-size: 0.95em;
        white-space: nowrap;
        text-align: center;
        justify-content: center;
        text-decoration: none !important;
        border-left: 0 !important;
        transform: none !important;
        margin: 0 !important;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation li a::before {
        font-size: 1em;
    }

    /* Theme-conflict fix: actieve tab mag niet anders "inspringen" */
    .woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
        border-left: 0 !important;
        margin-left: 0 !important;
        transform: none !important;
    }

    .myaccount-nav-scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 1.45em;
        height: 1.45em;
        border: 1px solid #dccba9;
        border-radius: 999px;
        background: #fff8e8;
        color: #8b7355;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1em;
        line-height: 1;
        padding: 0;
        z-index: 3;
    }

    .myaccount-nav-scroll-btn.left {
        left: 0.45em;
    }

    .myaccount-nav-scroll-btn.right {
        right: 0.45em;
    }

    .myaccount-nav-scroll-btn[disabled] {
        opacity: 0.35;
    }

    .woocommerce-MyAccount-content {
        padding: 1em;
    }

    .woocommerce-MyAccount-content form {
        padding: 0;
    }

    .woocommerce-MyAccount-content table {
        font-size: 0.85em;
    }

    .woocommerce-MyAccount-content table thead th,
    .woocommerce-MyAccount-content table tbody td {
        padding: 0.6em 0.75em;
    }

    .woocommerce-Addresses {
        grid-template-columns: 1fr;
        gap: 0.75em;
        margin-top: 0.75em;
    }

    .woocommerce-Address {
        padding: 0.75em;
    }

    .woocommerce-Address-title {
        margin-bottom: 0.4em;
        padding-bottom: 0.4em;
    }

    .woocommerce-Address-title h3 {
        font-size: 1.05em;
    }

    .woocommerce-Address address,
    .woocommerce-Address p {
        font-size: 0.9em;
        margin: 0.4em 0;
    }

    /* Make tables responsive */
    .woocommerce-orders-table,
    .shop_table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Integration with Leveranciers forms */
.woocommerce-MyAccount-content .leveranciers-dienst-form,
.woocommerce-MyAccount-content .leveranciers-mijn-diensten {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.woocommerce-MyAccount-content .leveranciers-mijn-diensten h2 {
    margin-top: 0;
}

/* ==========================================
   BOOKING POPUP STYLES
   ========================================== */

.leveranciers-booking-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.leveranciers-booking-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.booking-popup-open {
    overflow: hidden;
}

.booking-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.booking-popup-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.booking-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 2em;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.booking-popup-close:hover {
    background: #f0f0f0;
    color: #2c2c2c;
}

/* ==========================================
   BOOKING FORM STYLES (INLINE - COMPACT)
   ========================================== */

.leveranciers-booking-form-inline {
    max-width: 700px;
    margin: 1.5em auto;
    background: #faf9f7;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.booking-form-header {
    text-align: center;
    margin-bottom: 2em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #e8e5e0;
}

.booking-main-title {
    margin: 0 0 1em 0;
    color: #2c2c2c;
    font-size: 1.8em;
    font-weight: 600;
    line-height: 1.3;
    font-family: serif;
}

.booking-product-description {
    margin: 1em 0;
    color: #2c2c2c;
    font-size: 1em;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-product-price {
    margin: 1.5em 0 0 0;
    font-size: 1.5em;
    font-weight: 600;
    color: #2c2c2c;
}

.booking-product-price .woocommerce-Price-amount {
    font-size: 1.2em;
    color: #c5a36e;
}

.booking-product-name {
    margin: 0;
    color: #666;
    font-size: 0.95em;
}

.booking-calendar-compact {
    margin-bottom: 1em;
    background: white;
    padding: 0.75em;
    border-radius: 6px;
}

.calendar-legend-compact {
    display: flex;
    justify-content: center;
    gap: 0.75em;
    margin-top: 0.75em;
    font-size: 0.75em;
    flex-wrap: wrap;
}

.calendar-legend-compact .legend-color {
    width: 16px;
    height: 16px;
}

/* ==========================================
   BOOKING FORM STYLES (POPUP)
   ========================================== */

.leveranciers-booking-form {
    padding: 2em;
    background: white;
}

.leveranciers-booking-form h3 {
    margin-top: 0;
    margin-bottom: 1.5em;
    text-align: center;
}

/* Booking Steps Indicator */
.booking-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2em;
    padding: 1em 0;
    position: relative;
}

.booking-steps-indicator::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e8e5e0;
    z-index: 0;
}

.booking-step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.booking-step-item .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8e5e0;
    color: #8b7355;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5em;
    transition: all 0.3s;
    border: 2px solid #e8e5e0;
    font-size: 1em;
}

.booking-step-item.active .step-number {
    background: #c5a36e;
    color: white;
    border-color: #c5a36e;
    box-shadow: 0 2px 8px rgba(197, 163, 110, 0.3);
}

.booking-step-item.completed .step-number {
    background: #c5a36e;
    color: white;
    border-color: #c5a36e;
}

.booking-step-item .step-label {
    font-size: 0.85em;
    color: #8b7355;
    text-align: center;
    font-weight: 500;
}

.booking-step-item.active .step-label {
    color: #c5a36e;
    font-weight: 600;
}

/* Booking Form Steps */
.booking-form-step {
    display: none;
    animation: fadeIn 0.3s;
}

.booking-form-step.active {
    display: block;
}

.booking-form-step h4 {
    margin-top: 0;
    margin-bottom: 1.5em;
    color: #2c2c2c;
    font-size: 1.3em;
}

/* Compact styling for inline form */
.leveranciers-booking-form-inline .booking-form-step h4 {
    font-size: 1.1em;
    margin-bottom: 1em;
}

.leveranciers-booking-form-inline .form-row {
    margin-bottom: 1em;
}

.leveranciers-booking-form-inline .form-row label {
    font-size: 0.95em;
    margin-bottom: 0.4em;
}

.leveranciers-booking-form-inline .form-row input,
.leveranciers-booking-form-inline .form-row textarea {
    padding: 0.6em;
    font-size: 0.95em;
}

.leveranciers-booking-form-inline .booking-summary {
    padding: 1em;
    font-size: 0.95em;
}

.leveranciers-booking-form-inline .summary-item {
    padding: 0.5em 0;
    font-size: 0.9em;
}

.leveranciers-booking-form-inline .booking-steps-indicator {
    margin-bottom: 1em;
}

.leveranciers-booking-form-inline .booking-calendar-compact {
    margin-bottom: 1.5em;
}

.leveranciers-booking-form-inline .calendar-header {
    margin-bottom: 0.75em;
}

.leveranciers-booking-form-inline .calendar-header h4 {
    font-size: 1em;
    margin: 0;
}

.leveranciers-booking-form-inline .calendar-header .button {
    padding: 0.4em 0.8em;
    font-size: 0.85em;
}

.leveranciers-booking-form-inline .calendar-day {
    font-size: 0.8em;
    padding: 0.35em;
    min-height: 32px;
}

.leveranciers-booking-form-inline .calendar-weekday {
    font-size: 0.75em;
    padding: 0.4em 0;
}

.leveranciers-booking-form-inline .calendar-days {
    gap: 3px;
}

.leveranciers-booking-form-inline .selected-dates {
    margin: 0.75em 0;
    padding: 0.6em;
    font-size: 0.9em;
}

.leveranciers-booking-form-inline .booking-step-navigation {
    margin-top: 1em;
    padding-top: 0.75em;
}

.booking-step-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    margin-top: 2em;
    padding-top: 1.5em;
    border-top: 1px solid #e8e5e0;
}

.booking-step-navigation .button {
    flex: 1;
    padding: 0.75em 1.5em;
}

.booking-step-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Sticky "Verder"-knop onderaan viewport – altijd zichtbaar op lange boekingspagina */
.booking-sticky-next-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 0.75em 1em;
    border-top: 1px solid #e8e5e0;
}
.booking-sticky-next-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.booking-sticky-next {
    width: 100%;
    max-width: 360px;
    padding: 0.9em 1.5em;
    font-size: 1.05em;
    font-weight: 600;
    background: #c5a36e;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.booking-sticky-next:hover:not(:disabled) {
    background: #a8905d;
}
.booking-sticky-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Ruimte onderaan zodat content niet onder sticky bar verdwijnt */
.leveranciers-booking-form-inline {
    padding-bottom: 4.5em;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Booking Summary */
.booking-summary {
    background: #faf9f7;
    padding: 1.5em;
    border-radius: 8px;
    margin-bottom: 1.5em;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75em 0;
    border-bottom: 1px solid #e8e5e0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item strong {
    color: #2c2c2c;
    font-weight: 600;
}

.summary-item span {
    color: #666;
    text-align: right;
}

.leveranciers-booking-form h3 {
    color: #2c2c2c;
    font-family: serif;
    font-size: 1.8em;
    margin-bottom: 1.5em;
    text-align: center;
}

/* Boeking: alleen datumstap op productpagina */
.booking-steps-single .booking-step-item {
    margin: 0;
}
.booking-steps-single .booking-step-item::after {
    display: none;
}
.leveranciers-booking-date-only .booking-step-navigation {
    margin-top: 1em;
}

/* Boeking afronden-pagina (na datumkeuze doorverwezen) */
.leveranciers-booking-afronden {
    max-width: 560px;
    margin: 0 auto 2em;
}
.leveranciers-booking-afronden .booking-afronden-title {
    margin-bottom: 0.75em;
    font-size: 1.5em;
}
.leveranciers-booking-afronden .booking-afronden-summary {
    background: #faf9f7;
    padding: 1.25em 1.5em;
    border-radius: 8px;
    margin-bottom: 1.5em;
    border: 1px solid #e8e5e0;
}
.leveranciers-booking-afronden .booking-afronden-dates {
    margin: 0.5em 0;
}
.leveranciers-booking-afronden .booking-afronden-intro {
    margin-bottom: 1.5em;
    color: #555;
}
.leveranciers-booking-afronden .booking-afronden-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    margin-top: 1.5em;
    align-items: center;
}
.leveranciers-booking-afronden .booking-afronden-actions .button-primary {
    margin-left: auto;
}
#booking-messages-afronden {
    margin-top: 1em;
}

/* Calendar Styles */
.booking-calendar {
    margin-bottom: 2em;
    background: white;
    padding: 1.5em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5em;
}

.calendar-header h4 {
    font-size: 1.3em;
    color: #2c2c2c;
    margin: 0;
    font-weight: 600;
}

.calendar-header .button {
    background: #c5a36e;
    color: white;
    border: none;
    padding: 0.5em 1em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.calendar-header .button:hover {
    background: #a8905d;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-weekday {
    text-align: center;
    font-weight: 600;
    color: #8b7355;
    font-size: 0.9em;
    padding: 0.5em 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8e5e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    background: white;
    color: #2c2c2c;
}

.calendar-day.empty {
    border: none;
    background: transparent;
    cursor: default;
}

.calendar-day.past {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.blocked {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
    position: relative;
}

.calendar-day.blocked::after {
    content: '✕';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.7em;
    color: #dc3545;
}

.calendar-day.available {
    background: white;
    color: #2c2c2c;
}

.calendar-day.available:hover {
    background: #c5a36e;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(197, 163, 110, 0.3);
}

.calendar-day.selected {
    background: #c5a36e;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(197, 163, 110, 0.4);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-top: 1.5em;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.9em;
    color: #666;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #e8e5e0;
}

.legend-color.available {
    background: white;
}

.legend-color.blocked {
    background: #f0f0f0;
}

.legend-color.selected {
    background: #c5a36e;
}

.legend-color.past {
    background: #f5f5f5;
}

/* Booking Form */
#booking-form {
    margin-top: 2em;
}

.leveranciers-booking-form .form-row {
    margin-bottom: 1.5em;
}

.leveranciers-booking-form .form-row label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: #2c2c2c;
}

.leveranciers-booking-form .form-row input[type="text"],
.leveranciers-booking-form .form-row input[type="email"],
.leveranciers-booking-form .form-row input[type="tel"],
.leveranciers-booking-form .form-row textarea {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #e8e5e0;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.leveranciers-booking-form .form-row input:focus,
.leveranciers-booking-form .form-row textarea:focus {
    outline: none;
    border-color: #c5a36e;
    box-shadow: 0 0 0 3px rgba(197, 163, 110, 0.1);
}

.selected-dates {
    background: #fff8e8;
    padding: 1em;
    border-radius: 6px;
    border: 1px solid #e8e5e0;
    margin: 1.5em 0;
}

.selected-dates p {
    margin: 0;
    color: #666;
}

.selected-dates strong {
    color: #2c2c2c;
}

#submit-booking {
    width: 100%;
    padding: 1em;
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 1em;
}

#booking-messages {
    margin-top: 1.5em;
}

#booking-messages.success {
    background: #d4edda;
    color: #155724;
    padding: 1em;
    border-radius: 4px;
    border: 1px solid #c3e6cb;
}

#booking-messages.error {
    background: #f8d7da;
    color: #721c24;
    padding: 1em;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
}

/* Bookings Overview */
.leveranciers-bookings {
    max-width: 100%;
}

.leveranciers-bookings .status {
    padding: 0.3em 0.8em;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 500;
    display: inline-block;
}

.leveranciers-bookings .status-pending {
    background: #fff3cd;
    color: #856404;
}

.leveranciers-bookings .status-confirmed {
    background: #d4edda;
    color: #155724;
}

.leveranciers-bookings .status-paid {
    background: #cce5ff;
    color: #004085;
}

.leveranciers-bookings .status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* Booking Action Buttons */
.leveranciers-bookings .confirm-booking,
.leveranciers-bookings .cancel-booking {
    margin-right: 0.5em;
    margin-bottom: 0.5em;
    padding: 0.6em 1.2em !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    font-size: 0.9em !important;
    text-decoration: none !important;
    min-width: 100px;
}

.leveranciers-bookings .confirm-booking {
    background: #28a745 !important;
    color: white !important;
}

.leveranciers-bookings .confirm-booking:hover {
    background: #218838 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    color: white !important;
}

.leveranciers-bookings .cancel-booking {
    background: #dc3545 !important;
    color: white !important;
}

.leveranciers-bookings .cancel-booking:hover {
    background: #c82333 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    color: white !important;
}

.leveranciers-bookings .confirm-booking:disabled,
.leveranciers-bookings .cancel-booking:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Status text styling */
.leveranciers-bookings .status-text {
    color: #666;
    font-size: 0.9em;
    font-weight: 500;
    padding: 0.4em 0.8em;
    display: inline-block;
    border-radius: 4px;
}

.leveranciers-bookings .status-text.confirmed {
    color: #155724;
    background: #d4edda;
}

.leveranciers-bookings .status-text.cancelled {
    color: #721c24;
    background: #f8d7da;
}

.leveranciers-bookings .status-text.paid {
    color: #004085;
    background: #cce5ff;
}

/* Contact kolom: E-mail / Bel knoppen */
.leveranciers-bookings .booking-contact-cell .contact-email-btn,
.leveranciers-bookings .booking-contact-cell .contact-phone-btn {
    display: inline-block;
    margin-right: 0.35em;
    margin-bottom: 0.25em;
    padding: 0.4em 0.75em;
    font-size: 0.85em;
    text-decoration: none;
    border-radius: 4px;
    white-space: nowrap;
}
.leveranciers-bookings .booking-contact-cell .contact-email-btn {
    background: #c5a36e;
    color: #fff;
    border: none;
}
.leveranciers-bookings .booking-contact-cell .contact-email-btn:hover {
    background: #b8925c;
    color: #fff;
}
.leveranciers-bookings .booking-contact-cell .contact-phone-btn {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}
.leveranciers-bookings .booking-contact-cell .contact-phone-btn:hover {
    background: #e5e5e5;
    color: #333;
}
.leveranciers-bookings .booking-contact-cell .no-contact {
    color: #999;
}

/* Action buttons container */
.leveranciers-bookings .booking-actions {
    white-space: nowrap;
}

.leveranciers-bookings .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    align-items: flex-start;
}

/* Table improvements for better visibility */
.leveranciers-bookings table {
    width: 100%;
    border-collapse: collapse;
}

.leveranciers-bookings table th {
    background: #c5a36e;
    color: white;
    padding: 1em;
    text-align: left;
    font-weight: 600;
    font-size: 0.95em;
}

.leveranciers-bookings table td {
    padding: 1em;
    border-bottom: 1px solid #e8e5e0;
    vertical-align: middle;
}

.leveranciers-bookings table tbody tr:hover {
    background: #faf9f7;
}

.leveranciers-bookings table tbody tr:last-child td {
    border-bottom: none;
}

/* Booking Details Modal */
.booking-details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.booking-details-modal.active {
    display: flex;
}

.booking-details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.booking-details-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-details-header {
    padding: 1.5em;
    border-bottom: 1px solid #e8e5e0;
    position: relative;
}

.booking-details-header h3 {
    margin: 0;
    color: #2c2c2c;
    font-size: 1.5em;
}

.booking-details-close {
    position: absolute;
    top: 1em;
    right: 1em;
    background: transparent;
    border: none;
    font-size: 2em;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.booking-details-close:hover {
    background: #f0f0f0;
    color: #2c2c2c;
}

.booking-details-body {
    padding: 1.5em;
}

.booking-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
}

.booking-details-grid .detail-section {
    padding: 1em;
    background: #faf9f7;
    border-radius: 8px;
    border: 1px solid #e8e5e0;
}

.booking-details-grid .detail-section.full-width {
    grid-column: 1 / -1;
}

.booking-details-grid .detail-section h4 {
    margin: 0 0 0.75em 0;
    color: #c5a36e;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-details-grid .detail-section p {
    margin: 0.5em 0;
    color: #2c2c2c;
    line-height: 1.6;
}

.booking-details-grid .detail-section p strong {
    color: #2c2c2c;
    font-weight: 600;
}

.booking-details-grid .detail-section .notes {
    white-space: pre-wrap;
    background: white;
    padding: 1em;
    border-radius: 4px;
    border: 1px solid #e8e5e0;
    margin-top: 0.5em;
}

.booking-details-grid .detail-section a {
    color: #c5a36e;
    text-decoration: none;
}

.booking-details-grid .detail-section a:hover {
    text-decoration: underline;
}

.booking-details-grid .detail-section .status {
    display: inline-block;
    padding: 0.4em 0.8em;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 500;
}

/* Annuleren-sectie in boekingdetails met waarschuwing */
.booking-details-grid .booking-contact-actions {
    margin-top: 0.5em;
}
.booking-details-grid .booking-contact-actions .booking-detail-buttons {
    margin: 0.5em 0 0 0;
}
.booking-details-grid .booking-contact-actions .contact-email-btn,
.booking-details-grid .booking-contact-actions .contact-phone-btn {
    display: inline-block;
    margin-right: 0.5em;
    margin-bottom: 0.25em;
    padding: 0.5em 1em;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95em;
}
.booking-details-grid .booking-contact-actions .contact-email-btn {
    background: #c5a36e;
    color: #fff;
    border: none;
}
.booking-details-grid .booking-contact-actions .contact-email-btn:hover {
    background: #b8925c;
    color: #fff;
}
.booking-details-grid .booking-contact-actions .contact-phone-btn {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}
.booking-details-grid .booking-contact-actions .contact-phone-btn:hover {
    background: #eee;
    color: #333;
}

.booking-details-actions {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #e8e5e0;
}
.booking-cancel-warning {
    background: #fff8e8;
    border-left: 4px solid #c5a36e;
    padding: 0.75em 1em;
    margin: 0 0 1em 0;
    border-radius: 4px;
    font-size: 0.95em;
    color: #5c4a2e;
}
.booking-details-actions .cancel-booking {
    background: #dc3545 !important;
    color: white !important;
    border: none;
    padding: 0.5em 1em;
    border-radius: 4px;
    cursor: pointer;
}
.booking-details-actions .cancel-booking:hover {
    background: #c82333 !important;
}

/* View Details Button */
.leveranciers-bookings .view-booking-details {
    background: #c5a36e !important;
    color: white !important;
    padding: 0.6em 1.2em !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    font-size: 0.9em !important;
    margin-bottom: 0.5em !important;
    width: 100%;
}

.leveranciers-bookings .view-booking-details:hover {
    background: #a8905d !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(197, 163, 110, 0.3);
    color: white !important;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-details-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-details-grid .detail-section.full-width {
        grid-column: 1;
    }
    
    .booking-details-content {
        width: 95%;
        max-height: 95vh;
    }

    /* Leveranciers boekingen: nette card-weergave op mobiel */
    .leveranciers-bookings .shop_table_responsive thead {
        display: none;
    }

    .leveranciers-bookings .shop_table_responsive tbody tr {
        display: block;
        border: 1px solid #e8e5e0;
        border-radius: 10px;
        margin-bottom: 0.9em;
        overflow: hidden;
        background: #fff;
    }

    .leveranciers-bookings .shop_table_responsive tbody td {
        display: flex;
        justify-content: space-between;
        gap: 0.8em;
        text-align: right;
        padding: 0.65em 0.85em;
        border-bottom: 1px solid #f1efeb;
    }

    .leveranciers-bookings .shop_table_responsive tbody td:last-child {
        border-bottom: none;
    }

    .leveranciers-bookings .shop_table_responsive tbody td::before {
        content: attr(data-title) ": ";
        float: none !important;
        margin: 0;
        color: #6b6b6b;
        font-weight: 600;
        text-align: left;
        flex: 0 0 auto;
    }

    .leveranciers-bookings .booking-actions {
        white-space: normal;
    }

    .leveranciers-bookings .booking-actions .action-buttons {
        width: 100%;
        align-items: stretch;
    }

    /* Oxygen / page builder: li rond tabellen geeft soms bullets; geen markers naast shop-tabel */
    .woocommerce-MyAccount-content li:has(> table.shop_table_responsive) {
        list-style: none;
        padding-left: 0;
    }
}

/* Booking Button Styles */
.leveranciers-booking-button-wrapper {
    margin: 1.5em 0;
    clear: both;
}

.leveranciers-booking-button {
    background: #c5a36e !important;
    color: white !important;
    padding: 1em 2em !important;
    font-size: 1.1em !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100%;
    max-width: 300px;
    display: inline-block;
    text-align: center;
    text-decoration: none !important;
}

.leveranciers-booking-button:hover {
    background: #a8905d !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 163, 110, 0.4);
    color: white !important;
}

.leveranciers-booking-button:active {
    transform: translateY(0);
}

/* Login/Register Buttons */
.booking-login-wrapper {
    background: white !important;
    padding: 2em !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    margin: 2em 0 !important;
}

.booking-login-message {
    margin-bottom: 1em;
    color: #666;
    font-size: 0.95em;
    text-align: center;
}

.booking-auth-buttons {
    display: flex;
    gap: 1em;
    justify-content: center;
    flex-wrap: wrap;
}

.leveranciers-login-button,
.leveranciers-register-button {
    background: #c5a36e !important;
    color: white !important;
    padding: 0.9em 1.8em !important;
    font-size: 1em !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

.leveranciers-login-button:hover,
.leveranciers-register-button:hover {
    background: #a8905d !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 163, 110, 0.4);
    color: white !important;
}

.leveranciers-register-button {
    background: #8b7355 !important;
}

.leveranciers-register-button:hover {
    background: #6d5a42 !important;
}

/* Leveranciers profielfoto shortcode */
.leverancier-profielfoto {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45em;
    text-align: center;
}
.leverancier-profielfoto .leverancier-profielfoto-img {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #e8e5e0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}
.leverancier-profielfoto .leverancier-profielfoto-name {
    font-size: 0.9em;
    color: #2c2c2c;
    font-weight: 600;
}
.leverancier-profielfoto-fallback {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
}

/* Hide normal add to cart for leverancier products */
.single-product form.cart {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-popup-content {
        width: min(95vw, 460px);
        max-height: 88vh;
        border-radius: 8px;
    }
    
    .leveranciers-booking-form {
        padding: 1em 1em 1.6em;
        overflow-y: auto;
        max-height: calc(88vh - 24px);
    }
    
    .booking-steps-indicator {
        margin-bottom: 1.5em;
    }
    
    .booking-step-item .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9em;
    }
    
    .booking-step-item .step-label {
        font-size: 0.75em;
    }
    
    .calendar-header {
        flex-direction: column;
        gap: 1em;
    }
    
    .calendar-header h4 {
        order: -1;
        font-size: 1.1em;
    }
    
    .calendar-header .button {
        padding: 0.4em 0.8em;
        font-size: 0.9em;
    }
    
    .calendar-legend {
        flex-direction: column;
        gap: 0.5em;
        font-size: 0.85em;
    }
    
    .calendar-day {
        font-size: 0.9em;
        padding: 0.35em 0.2em;
        min-height: 34px;
    }
    
    .booking-step-navigation {
        flex-direction: column;
    }
    
    .booking-step-navigation .button {
        width: 100%;
    }

    /* Ruimte onderaan zodat sticky/WhatsApp niet over knoppen valt */
    .booking-sticky-nav,
    .booking-step-navigation {
        padding-bottom: max(10px, env(safe-area-inset-bottom));
    }
    
    .booking-summary {
        padding: 1em;
    }
    
    .summary-item {
        flex-direction: column;
        gap: 0.25em;
    }
    
    .summary-item span {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .booking-popup-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .leveranciers-booking-form {
        padding: 1em;
    }
    
    .booking-steps-indicator::before {
        display: none;
    }
    
    .booking-step-item .step-label {
        display: none;
    }
    
    .booking-auth-buttons {
        flex-direction: column;
    }
    
    .leveranciers-login-button,
    .leveranciers-register-button {
        width: 100%;
        min-width: auto;
    }
    
    .leveranciers-booking-button {
        width: 100%;
        max-width: 100%;
    }
}

/* Producten Grid met Filters */
.leveranciers-producten-grid-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2em 1em;
}

.leveranciers-product-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5em;
    margin-bottom: 2em;
    padding: 1.5em;
    background: #faf9f7;
    border-radius: 8px;
    border: 1px solid #e8e5e0;
}

.filter-toggle-mobile {
    display: none;
}

/* Voorkom dat regio-dropdown (lange tekst) de rij laat wrappen: kolommen mogen inkrimpen */
.leveranciers-product-filters .filter-group {
    min-width: 0;
}

.leveranciers-product-filters .filter-group select {
    max-width: 100%;
    min-width: 0;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.filter-group label {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.9em;
    margin-bottom: 0.3em;
}

.filter-group input[type="text"],
.filter-group select {
    padding: 0.7em 1em;
    border: 2px solid #e8e5e0;
    border-radius: 6px;
    font-size: 0.95em;
    background: white;
    color: #2c2c2c;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-group input[type="text"]:focus,
.filter-group select:focus {
    outline: none;
    border-color: #c5a36e;
    box-shadow: 0 0 0 3px rgba(197, 163, 110, 0.1);
}

.filter-group input[type="text"]::placeholder {
    color: #999;
}

.filter-actions {
    display: flex;
    align-items: flex-end;
}

.filter-actions .button {
    padding: 0.7em 1.5em;
    background: #e8e5e0;
    color: #2c2c2c;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-actions .button:hover {
    background: #d4d0c5;
    transform: translateY(-1px);
}

.leveranciers-products-loading {
    text-align: center;
    padding: 2em;
    color: #666;
    font-style: italic;
}

.leveranciers-products-grid-container {
    transition: opacity 0.3s ease;
}

.leveranciers-products-grid {
    display: grid;
    gap: 1.5em;
    margin-bottom: 2em;
}

.leveranciers-product-card {
    background: white;
    border: 2px solid #e0d9c8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.leveranciers-product-card:hover {
    border-color: #c5a36e;
    box-shadow: 0 4px 12px rgba(197, 163, 110, 0.2);
    transform: translateY(-2px);
}

.leveranciers-product-card .product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.leveranciers-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leveranciers-product-card:hover .product-image img {
    transform: scale(1.05);
}

.leveranciers-product-card .product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.leveranciers-product-card .product-header {
    padding: 1.2em;
    border-bottom: 1px solid #e8e5e0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1em;
}

.leveranciers-product-card .product-header h4 {
    margin: 0;
    flex: 1;
    font-family: serif;
    font-size: 1.15em;
    line-height: 1.4;
}

.leveranciers-product-card .product-header h4 a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.leveranciers-product-card .product-header h4 a:hover {
    color: #c5a36e;
}

.product-category-badge {
    padding: 0.3em 0.8em;
    background: #f0f0f0;
    color: #666;
    border-radius: 4px;
    font-size: 0.75em;
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leveranciers-product-card .product-info {
    padding: 0 1.2em;
    flex: 1;
}

.leveranciers-product-card .product-price {
    font-size: 1.4em;
    font-weight: 600;
    color: #c5a36e;
    margin: 0.8em 0;
}

.leveranciers-product-card .product-description {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 1em;
}

.leveranciers-product-card .product-actions {
    padding: 1.2em;
    border-top: 1px solid #e8e5e0;
    margin-top: auto;
}

.leveranciers-product-card .product-actions .button {
    width: 100%;
    padding: 0.8em 1.5em;
    background: #c5a36e;
    color: white;
    border: none;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.leveranciers-product-card .product-actions .button:hover {
    background: #a8905d;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(197, 163, 110, 0.3);
}

.leveranciers-products-pagination {
    margin-top: 2em;
    text-align: center;
}

.products-pagination {
    display: inline-flex;
    gap: 0.5em;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    padding: 0.6em 1em;
    background: white;
    border: 2px solid #e8e5e0;
    border-radius: 6px;
    color: #2c2c2c;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
    min-width: 40px;
}

.pagination-btn:hover {
    border-color: #c5a36e;
    color: #c5a36e;
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: #c5a36e;
    border-color: #c5a36e;
    color: white;
}

.pagination-dots {
    padding: 0.6em 0.5em;
    color: #999;
}

/* Desktop: filters altijd op één rij (voorkomt "enter" bij lange regio-naam) */
@media (min-width: 769px) {
    .leveranciers-product-filters {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* Responsive voor filters */
@media (max-width: 768px) {
    .filter-toggle-mobile {
        display: block;
        width: 100%;
        margin: 0 0 0.75em 0;
        background: #fff !important;
        color: #2c2c2c !important;
        border: 1px solid #e8e5e0 !important;
        text-align: left;
        padding: 0.75em 0.9em !important;
        border-radius: 8px;
        font-weight: 600;
        position: relative;
        padding-right: 2.2em !important;
    }
    .filter-toggle-mobile::after {
        content: '▾';
        position: absolute;
        right: 0.9em;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1em;
        color: #8b7355;
        transition: transform 0.2s ease;
    }
    .filter-toggle-mobile[aria-expanded="true"]::after {
        transform: translateY(-50%) rotate(180deg);
    }
    .leveranciers-product-filters {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1em;
        padding: 1em;
        margin-bottom: 1.25em;
    }
    /* Mobiel: zoekveld altijd zichtbaar, overige filters inklapbaar */
    .leveranciers-product-filters .filter-group,
    .leveranciers-product-filters .filter-actions {
        display: none;
    }
    .leveranciers-product-filters .filter-group.filter-search {
        display: flex;
    }
    .leveranciers-product-filters.is-open .filter-group,
    .leveranciers-product-filters.is-open .filter-actions {
        display: flex;
    }
    .leveranciers-product-filters.is-open .filter-group.filter-search {
        display: flex;
    }
    
    .filter-actions {
        margin-top: 0.5em;
    }
    
    .filter-actions .button {
        width: 100%;
    }
    
    .leveranciers-products-grid {
        grid-template-columns: 1fr !important;
    }
    
    .products-pagination {
        gap: 0.3em;
    }
    
    .pagination-btn {
        padding: 0.5em 0.8em;
        font-size: 0.85em;
        min-width: 35px;
    }
}

/* Archief Header */
.leveranciers-producten-archief-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2em 1em;
}

.leveranciers-archief-header {
    margin-bottom: 2em;
    padding-bottom: 1.5em;
    border-bottom: 2px solid #e8e5e0;
}

.archief-title {
    font-family: serif;
    font-size: 2em;
    color: #2c2c2c;
    margin: 0 0 0.5em 0;
    font-weight: 600;
}

.archief-description {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 1em;
}

.archief-results-count {
    color: #999;
    font-size: 0.9em;
    font-style: italic;
}

.leveranciers-archief-grid {
    margin-top: 2em;
}

/* Archief Pagination */
.leveranciers-producten-archief-wrapper .leveranciers-products-pagination {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid #e8e5e0;
}

.leveranciers-producten-archief-wrapper .page-numbers {
    display: inline-flex;
    gap: 0.5em;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.leveranciers-producten-archief-wrapper .page-numbers li {
    margin: 0;
}

.leveranciers-producten-archief-wrapper .page-numbers a,
.leveranciers-producten-archief-wrapper .page-numbers span {
    padding: 0.6em 1em;
    background: white;
    border: 2px solid #e8e5e0;
    border-radius: 6px;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
    min-width: 40px;
    display: inline-block;
    text-align: center;
}

.leveranciers-producten-archief-wrapper .page-numbers a:hover {
    border-color: #c5a36e;
    color: #c5a36e;
    transform: translateY(-1px);
}

.leveranciers-producten-archief-wrapper .page-numbers .current {
    background: #c5a36e;
    border-color: #c5a36e;
    color: white;
}

.leveranciers-producten-archief-wrapper .page-numbers .dots {
    border: none;
    background: transparent;
    padding: 0.6em 0.5em;
    color: #999;
}

/* Responsive voor archief */
@media (max-width: 768px) {
    .leveranciers-archief-header {
        margin-bottom: 1.5em;
        padding-bottom: 1em;
    }
    
    .archief-title {
        font-size: 1.5em;
    }
    
    .archief-description {
        font-size: 0.9em;
    }
}

/* Validatie foutmeldingen */
.field-error {
    display: block;
    margin-top: 0.5em;
    font-size: 0.875em;
    color: #dc3545;
    line-height: 1.4;
}

input.error-field,
textarea.error-field,
select.error-field {
    border-color: #dc3545 !important;
    background-color: #fff5f5;
}

input.error-field:focus,
textarea.error-field:focus,
select.error-field:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

#form-messages.error {
    background: #fff5f5;
    border: 2px solid #dc3545;
    color: #721c24;
    padding: 1em;
    border-radius: 6px;
    margin: 1em 0;
}

#form-messages.success {
    background: #f0f9f4;
    border: 2px solid #28a745;
    color: #155724;
    padding: 1em;
    border-radius: 6px;
    margin: 1em 0;
}

/* Agenda: specifieke niet-beschikbare periodes */
.leveranciers-agenda .blocked-dates-list {
    margin-bottom: 1em;
}
.leveranciers-agenda .blocked-date-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5em 1em;
    margin-bottom: 0.75em;
}
.leveranciers-agenda .blocked-date-row .blocked-date-label {
    margin-bottom: 0;
    font-weight: 500;
}
.leveranciers-agenda .blocked-date-row input[type="date"] {
    width: auto;
    min-width: 140px;
}
.leveranciers-agenda .blocked-date-row .remove-blocked-date {
    margin-left: 0.5em;
}

/* LGBTQ+ vriendelijk-badge (shortcode [leveranciers_lgbt_badge] in header/content) */
.leveranciers-lgbt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #333;
}
.leveranciers-lgbt-badge .leveranciers-lgbt-flag {
    width: 20px;
    height: 14px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
}
