/**
 * DVAH Public Styles
 * Full-width layout inspired by ViaViela.nl
 */

/* Variables - scoped to DVAH elements to avoid Elementor conflicts */
.dvah-search-page,
.dvah-single-profile,
.dvah-location-page,
.dvah-single-zoekopdracht,
.dvah-profile-form-container {
    --dvah-primary: #0073aa;
    --dvah-primary-hover: #005a87;
    --dvah-primary-light: #e8f4fc;
    --dvah-secondary: #23282d;
    --dvah-success: #46b450;
    --dvah-error: #dc3232;
    --dvah-border: #e5e5e5;
    --dvah-border-light: #f0f0f0;
    --dvah-bg-light: #f9f9f9;
    --dvah-bg-page: #f5f5f5;
    --dvah-text: #333;
    --dvah-text-light: #666;
    --dvah-text-muted: #999;
    --dvah-radius: 8px;
    --dvah-radius-lg: 12px;
    --dvah-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --dvah-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
    --dvah-sidebar-width: 280px;
}

/* Elementor compatibility - contained width, not full viewport */
.elementor-widget-shortcode .dvah-search-page,
.elementor-widget-shortcode .dvah-location-page {
    width: 100%;
    max-width: 100%;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

.dvah-search-page,
.dvah-single-profile,
.dvah-location-page,
.dvah-single-zoekopdracht {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: var(--dvah-text);
    line-height: 1.6;
    background: #fff;
    box-sizing: border-box;
}

/* Reset box-sizing for all DVAH elements */
.dvah-search-page *,
.dvah-single-profile *,
.dvah-location-page *,
.dvah-single-zoekopdracht *,
.dvah-search-page *::before,
.dvah-single-profile *::before,
.dvah-location-page *::before,
.dvah-single-zoekopdracht *::before,
.dvah-search-page *::after,
.dvah-single-profile *::after,
.dvah-location-page *::after,
.dvah-single-zoekopdracht *::after {
    box-sizing: border-box;
}

/* Elementor form element resets */
.elementor-widget-shortcode .dvah-search-page input,
.elementor-widget-shortcode .dvah-search-page select,
.elementor-widget-shortcode .dvah-search-page button,
.elementor-widget-shortcode .dvah-search-page textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.dvah-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--dvah-radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dvah-btn:hover {
    transform: translateY(-1px);
}

.dvah-btn-primary {
    background: var(--dvah-primary);
    color: #fff;
}

.dvah-btn-primary:hover {
    background: var(--dvah-primary-hover);
    color: #fff;
}

.dvah-btn-secondary {
    background: #f0f0f0;
    color: var(--dvah-text);
}

.dvah-btn-secondary:hover {
    background: #e0e0e0;
}

.dvah-btn-outline {
    background: #fff;
    color: var(--dvah-text);
    border: 1px solid var(--dvah-border);
}

.dvah-btn-outline:hover {
    background: var(--dvah-bg-light);
    border-color: var(--dvah-primary);
    color: var(--dvah-primary);
}

.dvah-btn-text {
    background: none;
    color: var(--dvah-primary);
    padding: 5px 10px;
}

/* ==========================================================================
   Search Page Layout
   ========================================================================== */

.dvah-search-page {
    /* Content determines height, no forced minimum */
}

/* Search Bar */
.dvah-search-bar {
    background: #fff;
    border-bottom: 1px solid var(--dvah-border);
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Elementor: sticky doesn't work well, use relative instead */
.elementor-widget-shortcode .dvah-search-bar {
    position: relative;
}

.dvah-search-bar-inner {
    display: flex;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.dvah-search-input-wrap {
    flex: 1;
    position: relative;
}

.dvah-search-input-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dvah-text-muted);
}

.dvah-search-input-wrap input {
    width: 100%;
    padding: 12px 14px 12px 44px !important;
    border: 2px solid var(--dvah-border);
    border-radius: var(--dvah-radius);
    font-size: 16px;
    transition: border-color 0.2s;
}

.dvah-search-input-wrap input:focus {
    outline: none;
    border-color: var(--dvah-primary);
}

.dvah-search-radius-wrap select {
    padding: 12px 14px;
    border: 2px solid var(--dvah-border);
    border-radius: var(--dvah-radius);
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    min-width: 140px;
}

.dvah-search-radius-wrap select:focus {
    outline: none;
    border-color: var(--dvah-primary);
}

.dvah-search-btn {
    padding: 12px 24px;
}

/* Main Layout */
.dvah-search-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start; /* Prevent stretching */
}

/* Filters Sidebar */
.dvah-filters-sidebar {
    width: var(--dvah-sidebar-width);
    background: #fff;
    border-right: 1px solid var(--dvah-border);
    padding: 16px 20px;
    flex-shrink: 0;
    overflow-y: auto;
    align-self: flex-start; /* Don't stretch to fill height */
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
}

/* Elementor: disable sticky sidebar on desktop, it doesn't work well */
.elementor-widget-shortcode .dvah-filters-sidebar {
    position: relative;
    top: 0;
    max-height: none;
}

.dvah-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--dvah-border);
}

.dvah-filters-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.dvah-filters-close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--dvah-text-light);
}

.dvah-filter-section {
    margin-bottom: 16px;
}

.dvah-filter-section h4 {
    margin: 0 0 8px 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--dvah-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filter Select Dropdown */
.dvah-filter-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--dvah-border);
    border-radius: var(--dvah-radius);
    font-size: 14px;
    color: var(--dvah-text);
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.dvah-filter-select:focus {
    outline: none;
    border-color: var(--dvah-primary);
}

/* Radio & Checkbox Styles - Compact */
.dvah-radio-group,
.dvah-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dvah-radio,
.dvah-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 8px;
    margin: 0 -8px;
    border-radius: var(--dvah-radius);
    transition: background 0.2s;
}

.dvah-radio:hover,
.dvah-checkbox:hover {
    background: var(--dvah-bg-light);
}

.dvah-radio input,
.dvah-checkbox input {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--dvah-primary);
}

.dvah-checkbox-mark {
    display: none;
}

.dvah-checkbox-label,
.dvah-radio span {
    font-size: 13px;
    color: var(--dvah-text);
}

/* Collapsible checkbox list (show more/less) */
.dvah-collapsible-list .dvah-hidden-item {
    display: none;
}

.dvah-collapsible-list.dvah-expanded .dvah-hidden-item {
    display: flex;
}

.dvah-show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px;
    margin: 2px -8px 0;
    background: none;
    border: none;
    color: var(--dvah-primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.dvah-show-more-btn:hover {
    color: var(--dvah-primary-hover);
}

.dvah-show-more-btn svg {
    transition: transform 0.2s;
}

.dvah-collapsible-list.dvah-expanded .dvah-show-more-btn svg {
    transform: rotate(180deg);
}

.dvah-filter-actions {
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--dvah-border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Hide apply button on desktop - filters apply automatically */
.dvah-apply-filters {
    display: none;
}

.dvah-clear-filters {
    width: 100%;
}

/* Results Main Area */
.dvah-results-main {
    flex: 1;
    padding: 24px;
    min-width: 0;
    max-width: 900px;
    background: #fff;
}

.dvah-results-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dvah-results-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dvah-results-count {
    font-size: 15px;
    font-weight: 500;
    color: var(--dvah-text);
}

.dvah-mobile-filters {
    display: none;
}

/* Inline Map */
.dvah-inline-map {
    margin-bottom: 24px;
    border-radius: var(--dvah-radius-lg);
    overflow: hidden;
    box-shadow: var(--dvah-shadow);
    border: 1px solid var(--dvah-border);
    animation: dvah-map-slide-down 0.3s ease-out;
}

@keyframes dvah-map-slide-down {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Map Marker Popup */
.dvah-marker-popup {
    display: flex;
    gap: 12px;
    padding: 4px;
    max-width: 280px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.dvah-marker-photo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.dvah-marker-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.dvah-marker-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.dvah-marker-plaats {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dvah-marker-plaats::before {
    content: '';
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.dvah-marker-diensten {
    font-size: 12px;
    color: #888;
}

.dvah-marker-distance {
    font-size: 12px;
    color: #0073aa;
    font-weight: 500;
}

.dvah-marker-link {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background: #0073aa;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}

.dvah-marker-link:hover {
    background: #005a87;
    color: #fff !important;
    text-decoration: none !important;
}

/* Google Maps InfoWindow overrides */
.gm-style-iw {
    padding: 12px !important;
}

.gm-style-iw-d {
    overflow: visible !important;
}

/* Map Toggle Button - Active State */
.dvah-toggle-map {
    transition: all 0.2s ease;
}

.dvah-toggle-map.active {
    background: var(--dvah-primary);
    color: #fff;
    border-color: var(--dvah-primary);
}

.dvah-toggle-map.active:hover {
    background: var(--dvah-primary-dark);
    border-color: var(--dvah-primary-dark);
    color: #fff;
}

/* Results List */
.dvah-results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dvah-results-list.dvah-loading-active {
    opacity: 0.5;
    pointer-events: none;
}

/* ==========================================================================
   Profile Card (List Style)
   ========================================================================== */

.dvah-profile-card {
    display: flex;
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    max-width: 850px;
}

.dvah-profile-card:hover {
    box-shadow: var(--dvah-shadow-lg);
    transform: translateY(-2px);
}

.dvah-profile-photo {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--dvah-bg-light);
}

.dvah-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dvah-profile-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 56px;
    font-weight: 600;
}

.dvah-profile-content {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
}

.dvah-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.dvah-profile-name {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--dvah-text);
}

.dvah-profile-name a {
    color: inherit;
    text-decoration: none;
}

.dvah-profile-name a:hover {
    color: var(--dvah-primary);
}

.dvah-profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--dvah-text-light);
}

.dvah-profile-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dvah-profile-meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--dvah-text-muted);
}

.dvah-distance {
    color: var(--dvah-primary);
    font-weight: 500;
}

.dvah-profile-diensten {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.dvah-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.dvah-tag-dienst {
    background: var(--dvah-primary-light);
    color: var(--dvah-primary);
}

.dvah-tag-specialisatie {
    background: #f3e5f5;
    color: #7b1fa2;
}

.dvah-profile-bio {
    margin: 0 0 auto 0;
    font-size: 14px;
    color: var(--dvah-text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dvah-profile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--dvah-border-light);
}

.dvah-profile-tarief {
    font-size: 16px;
    font-weight: 600;
    color: var(--dvah-text);
}

.dvah-profile-actions .dvah-btn {
    min-width: 140px;
}

/* ==========================================================================
   CTA Card (Registration)
   ========================================================================== */

.dvah-cta-card {
    display: flex;
    background: linear-gradient(135deg, var(--dvah-primary-light) 0%, #f0f7ff 100%);
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    overflow: hidden;
    max-width: 850px;
    border: 2px dashed var(--dvah-primary);
}

.dvah-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    width: 100%;
}

.dvah-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--dvah-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.dvah-cta-icon svg {
    color: #fff;
    width: 28px;
    height: 28px;
}

.dvah-cta-text {
    flex: 1;
}

.dvah-cta-text h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--dvah-text);
}

.dvah-cta-text p {
    margin: 0;
    font-size: 14px;
    color: var(--dvah-text-light);
}

.dvah-cta-content .dvah-btn {
    flex-shrink: 0;
}

/* CTA Card Responsive */
@media (max-width: 640px) {
    .dvah-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }

    .dvah-cta-text h3 {
        font-size: 16px;
    }

    .dvah-cta-content .dvah-btn {
        width: 100%;
    }
}

/* ==========================================================================
   Loading & No Results
   ========================================================================== */

.dvah-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 20px;
    color: var(--dvah-text-light);
}

.dvah-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--dvah-border);
    border-top-color: var(--dvah-primary);
    border-radius: 50%;
    animation: dvah-spin 0.8s linear infinite;
}

@keyframes dvah-spin {
    to { transform: rotate(360deg); }
}

.dvah-spin {
    animation: dvah-spin 1s linear infinite;
}

.dvah-no-results {
    padding: 60px 20px;
}

.dvah-no-results-content {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.dvah-no-results-content svg {
    color: var(--dvah-text-muted);
    margin-bottom: 16px;
}

.dvah-no-results-content h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: var(--dvah-text);
}

.dvah-no-results-content p {
    margin: 0;
    color: var(--dvah-text-light);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.dvah-pagination {
    margin-top: 32px;
}

.dvah-pagination-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.dvah-pagination-info {
    color: var(--dvah-text-light);
    font-size: 14px;
}

.dvah-pagination-btn {
    min-width: 100px;
}

/* ==========================================================================
   Single Profile Page
   ========================================================================== */

#dvah-profile-wrapper.dvah-single-profile {
    padding: 24px;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    background: var(--dvah-bg-page);
    box-sizing: border-box;
}

/* Reset all child elements box-sizing */
#dvah-profile-wrapper.dvah-single-profile *,
#dvah-profile-wrapper.dvah-single-profile *::before,
#dvah-profile-wrapper.dvah-single-profile *::after {
    box-sizing: border-box;
}

.dvah-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
}

/* Profile Header */
.dvah-profile-header-section {
    grid-column: 1 / -1;
    display: flex;
    gap: 32px;
    padding: 32px;
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
}

.dvah-profile-photo-large {
    width: 200px;
    height: 200px;
    border-radius: var(--dvah-radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.dvah-profile-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dvah-profile-photo-placeholder-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 72px;
    font-weight: 600;
}

.dvah-profile-header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dvah-profile-title {
    margin: 0 0 12px 0;
    font-size: 32px;
    font-weight: 700;
}

.dvah-profile-location-large {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px 0;
    font-size: 16px;
    color: var(--dvah-text-light);
}

.dvah-profile-location-large svg {
    color: var(--dvah-primary);
}

.dvah-travel-radius {
    font-size: 14px;
}

.dvah-profile-diensten-large {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.dvah-profile-diensten-large .dvah-tag {
    font-size: 14px;
    padding: 6px 14px;
}

.dvah-profile-tarief-large {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

/* Share Button */
.dvah-share-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 16px;
}

.dvah-share-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 500;
    background: #fff !important;
    border: 2px solid var(--dvah-border) !important;
    border-radius: var(--dvah-radius) !important;
    color: var(--dvah-text) !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dvah-share-btn:hover {
    border-color: var(--dvah-primary) !important;
    color: var(--dvah-primary) !important;
    background: #fff !important;
}

.dvah-share-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.dvah-share-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--dvah-border);
    border-radius: var(--dvah-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

.dvah-share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dvah-share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--dvah-text);
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.15s ease;
    cursor: pointer;
}

.dvah-share-option:hover {
    background: var(--dvah-bg-light);
    text-decoration: none !important;
}

.dvah-share-option svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* WhatsApp green */
.dvah-share-option[data-share="whatsapp"] svg {
    color: #25D366;
}

/* Facebook blue */
.dvah-share-option[data-share="facebook"] svg {
    color: #1877F2;
}

/* LinkedIn blue */
.dvah-share-option[data-share="linkedin"] svg {
    color: #0A66C2;
}

/* X (Twitter) black */
.dvah-share-option[data-share="x"] svg {
    color: #000;
}

/* Copy link */
.dvah-share-option[data-share="copy"] svg {
    color: var(--dvah-text-muted);
}

/* Keep icon colors on hover */
.dvah-share-option:hover svg {
    color: inherit;
}
.dvah-share-option[data-share="whatsapp"]:hover svg { color: #25D366; }
.dvah-share-option[data-share="facebook"]:hover svg { color: #1877F2; }
.dvah-share-option[data-share="linkedin"]:hover svg { color: #0A66C2; }
.dvah-share-option[data-share="x"]:hover svg { color: #000; }

/* Profile Content Sections */
.dvah-profile-main {
    grid-column: 1;
}

.dvah-profile-section {
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    padding: 28px;
    margin-bottom: 24px;
}

.dvah-profile-section h2 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--dvah-primary);
}

.dvah-bio-content {
    font-size: 15px;
    line-height: 1.8;
}

.dvah-bio-content p {
    margin: 0 0 16px 0;
}

.dvah-bio-content p:last-child {
    margin-bottom: 0;
}

/* Lists */
.dvah-diensten-list,
.dvah-specialisaties-list,
.dvah-additional-info {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dvah-diensten-list li,
.dvah-specialisaties-list li,
.dvah-additional-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--dvah-border-light);
    font-size: 15px;
}

.dvah-diensten-list li:last-child,
.dvah-specialisaties-list li:last-child,
.dvah-additional-info li:last-child {
    border-bottom: none;
}

.dvah-diensten-list svg,
.dvah-specialisaties-list svg,
.dvah-additional-info svg {
    flex-shrink: 0;
    color: var(--dvah-success);
}

/* Beschikbaarheid Table */
.dvah-beschikbaarheid-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.dvah-beschikbaarheid-table th,
.dvah-beschikbaarheid-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid var(--dvah-border-light);
}

.dvah-beschikbaarheid-table th {
    font-weight: 600;
    background: var(--dvah-bg-light);
}

.dvah-beschikbaarheid-table td:first-child {
    text-align: left;
}

.dvah-availability-cell {
    min-width: 70px;
}

.dvah-available {
    color: var(--dvah-success);
}

.dvah-not-available {
    color: #ddd;
}

/* Sidebar */
.dvah-profile-sidebar {
    grid-column: 2;
}

.dvah-contact-box {
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    padding: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.dvah-contact-box h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
}

.dvah-contact-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    margin-bottom: 12px;
}

.dvah-phone-number {
    margin: 4px 0 16px;
    font-size: 14px;
    color: var(--dvah-text-light);
}

/* Profile Map */
.dvah-profile-map-small {
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    padding: 20px;
}

.dvah-profile-map-small h3 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
}

#dvah-profile-map {
    border-radius: var(--dvah-radius);
}

.dvah-map-note {
    margin: 12px 0 0;
    color: var(--dvah-text-muted);
    font-size: 12px;
    text-align: center;
}

/* Profile Footer */
.dvah-profile-back {
    grid-column: 1 / -1;
    padding-top: 16px;
}

.dvah-profile-back .dvah-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   Notices & Errors
   ========================================================================== */

.dvah-notice,
.dvah-error {
    padding: 16px 20px;
    border-radius: var(--dvah-radius);
    margin-bottom: 20px;
}

.dvah-notice {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

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

/* ==========================================================================
   Mobile Filter Overlay
   ========================================================================== */

.dvah-filters-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.dvah-filters-overlay.active {
    display: block;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    /* Hide sidebar from normal flow on mobile */
    .dvah-filters-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 300px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        z-index: 9999 !important;
        transition: left 0.3s ease !important;
        border-right: none !important;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        background: #fff !important;
    }

    /* Show sidebar when active */
    .dvah-filters-sidebar.active {
        left: 0 !important;
    }

    /* Show overlay when sidebar is active */
    .dvah-filters-overlay.active {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 9998 !important;
    }

    .dvah-filters-close {
        display: block !important;
    }

    .dvah-mobile-filters {
        display: flex !important;
        align-items: center;
        gap: 6px;
    }

    /* Results take full width on mobile */
    .dvah-results-main {
        padding: 16px;
        max-width: 100%;
        width: 100%;
    }

    /* Layout without sidebar space */
    .dvah-search-layout {
        flex-direction: column;
        display: block;
    }

    .dvah-profile-container {
        grid-template-columns: 1fr;
    }

    .dvah-profile-sidebar {
        grid-column: 1;
    }

    /* Filter actions at bottom of sidebar */
    .dvah-filter-actions {
        position: sticky;
        bottom: 0;
        background: #fff;
        margin: 24px -24px -24px;
        padding: 16px 24px;
        border-top: 1px solid var(--dvah-border);
    }

    .dvah-filter-actions .dvah-btn {
        width: 100%;
    }

    /* Show apply button on mobile */
    .dvah-apply-filters {
        display: block;
    }
}

@media (max-width: 768px) {
    /* Search Bar Mobile */
    .dvah-search-bar {
        padding: 12px 16px;
    }

    .dvah-search-bar-inner {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0;
    }

    .dvah-search-input-wrap {
        flex: 1 1 100%;
        margin-bottom: 4px;
    }

    .dvah-search-input-wrap input {
        padding: 14px 14px 14px 44px !important;
        font-size: 16px;
    }

    .dvah-search-radius-wrap {
        flex: 1 1 calc(50% - 5px);
    }

    .dvah-search-radius-wrap select {
        width: 100%;
        padding: 14px 12px;
        font-size: 14px;
    }

    .dvah-search-btn {
        flex: 1 1 calc(50% - 5px);
        padding: 14px 16px;
        font-size: 14px;
    }

    .dvah-search-btn svg {
        display: none;
    }

    /* Results Toolbar Mobile */
    .dvah-results-toolbar {
        flex-wrap: wrap;
        gap: 12px;
    }

    .dvah-results-info {
        flex: 1 1 100%;
        justify-content: space-between;
    }

    .dvah-results-count {
        font-size: 14px;
    }

    .dvah-toggle-map {
        padding: 8px 12px;
        font-size: 13px;
    }

    .dvah-toggle-map svg {
        width: 16px;
        height: 16px;
    }

    .dvah-mobile-filters {
        flex: 1;
        justify-content: center;
    }

    /* Results Main Mobile */
    .dvah-results-main {
        padding: 12px;
    }

    .dvah-results-list {
        gap: 12px;
    }

    /* Profile Card Mobile - Photo + Name/Plaats side by side, rest full width below */
    .dvah-profile-card {
        display: grid;
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 10px 12px;
        padding: 14px;
    }

    .dvah-profile-photo {
        grid-row: 1 / 3;
        grid-column: 1;
        width: 56px;
        height: 56px;
        border-radius: 8px;
        align-self: start;
    }

    .dvah-profile-photo img,
    .dvah-profile-photo .dvah-profile-photo-placeholder {
        border-radius: 8px;
    }

    .dvah-profile-photo-placeholder {
        font-size: 18px;
    }

    /* Let children participate in parent grid */
    .dvah-profile-content {
        display: contents;
    }

    /* Header (name) next to photo - top */
    .dvah-profile-header {
        grid-row: 1;
        grid-column: 2;
        display: flex;
        align-items: flex-start;
        margin-bottom: 0;
        min-height: auto;
    }

    .dvah-profile-name {
        font-size: 16px;
        line-height: 1.3;
        margin: 0;
    }

    /* Meta (plaats, afstand) next to photo - below name */
    .dvah-profile-meta {
        grid-row: 2;
        grid-column: 2;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    .dvah-profile-meta-item {
        font-size: 12px;
    }

    /* Diensten full width below */
    .dvah-profile-diensten {
        grid-row: 3;
        grid-column: 1 / -1;
        gap: 6px;
    }

    .dvah-profile-diensten .dvah-tag {
        font-size: 11px;
        padding: 3px 6px;
    }

    /* Bio full width */
    .dvah-profile-bio {
        grid-row: 4;
        grid-column: 1 / -1;
        font-size: 13px;
        -webkit-line-clamp: 2;
        margin: 0;
    }

    /* Footer full width */
    .dvah-profile-footer {
        grid-row: 5;
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding-top: 8px;
        border-top: 1px solid var(--dvah-border);
        margin-top: 2px;
    }

    .dvah-profile-tarief {
        font-size: 13px;
    }

    .dvah-profile-actions {
        flex-shrink: 0;
    }

    .dvah-profile-actions .dvah-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Inline Map Mobile */
    .dvah-inline-map {
        margin-bottom: 16px;
    }

    #dvah-search-map {
        height: 300px !important;
    }

    /* Pagination Mobile */
    .dvah-pagination {
        margin-top: 16px;
        padding: 16px 0;
    }

    .dvah-pagination-inner {
        gap: 4px;
    }

    .dvah-page-btn,
    .dvah-page-current {
        padding: 8px 12px;
        font-size: 13px;
    }

    /* Single Profile Mobile */
    .dvah-single-profile {
        padding: 16px;
    }

    .dvah-profile-header-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }

    .dvah-profile-photo-large {
        width: 150px;
        height: 150px;
    }

    .dvah-profile-title {
        font-size: 24px;
    }

    .dvah-profile-location-large {
        justify-content: center;
    }

    .dvah-profile-diensten-large {
        justify-content: center;
    }

    .dvah-profile-section {
        padding: 20px;
    }

    .dvah-beschikbaarheid-table {
        font-size: 12px;
    }

    .dvah-beschikbaarheid-table th,
    .dvah-beschikbaarheid-table td {
        padding: 8px 6px;
    }

    /* No Results Mobile */
    .dvah-no-results-content {
        padding: 32px 16px;
    }

    .dvah-no-results-content svg {
        width: 40px;
        height: 40px;
    }

    .dvah-no-results-content h3 {
        font-size: 18px;
    }

    .dvah-no-results-content p {
        font-size: 14px;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .dvah-search-bar-inner {
        gap: 8px;
    }

    .dvah-search-radius-wrap,
    .dvah-search-btn {
        flex: 1 1 100%;
    }

    .dvah-search-radius-wrap select {
        width: 100%;
    }

    .dvah-results-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .dvah-toggle-map {
        width: 100%;
        justify-content: center;
    }

    /* Profile card - slightly smaller photo on very small screens */
    .dvah-profile-card {
        grid-template-columns: 48px 1fr;
        gap: 0 10px;
        padding: 12px;
    }

    .dvah-profile-photo {
        width: 48px;
        height: 48px;
    }

    .dvah-profile-photo-placeholder {
        font-size: 16px;
    }

    .dvah-profile-header {
        min-height: 48px;
    }

    .dvah-profile-name {
        font-size: 15px;
    }

    .dvah-profile-bio {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }

    .dvah-profile-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .dvah-profile-actions .dvah-btn {
        width: 100%;
    }
}

/* ==========================================================================
   Profile Form Styles
   ========================================================================== */

.dvah-profile-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
}

.dvah-profile-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.dvah-form-section {
    background: #fff;
    margin-bottom: 20px;
    padding: 24px 28px;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    border: none;
}

.dvah-form-section:last-of-type {
    margin-bottom: 20px;
}

.dvah-form-section h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dvah-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--dvah-primary-light);
}

.dvah-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.dvah-form-field {
    margin-bottom: 16px;
}

.dvah-form-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
}

.dvah-form-field label .required {
    color: var(--dvah-error);
}

.dvah-form-field input,
.dvah-form-field textarea,
.dvah-form-field select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--dvah-border);
    border-radius: var(--dvah-radius);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.dvah-form-field input:focus,
.dvah-form-field textarea:focus,
.dvah-form-field select:focus {
    outline: none;
    border-color: var(--dvah-primary);
}

.dvah-field-description {
    margin: 6px 0 0 0;
    font-size: 12px;
    color: var(--dvah-text-muted);
}

/* Photo Upload */
.dvah-photo-upload {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.dvah-photo-preview {
    width: 120px;
    height: 120px;
    border-radius: var(--dvah-radius);
    overflow: hidden;
    background: var(--dvah-bg-light);
}

.dvah-photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dvah-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--dvah-text-muted);
    font-size: 12px;
    text-align: center;
    padding: 10px;
}

/* Checkbox Grid */
.dvah-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.dvah-checkbox-grid .dvah-checkbox {
    background: var(--dvah-bg-light);
    border-radius: var(--dvah-radius);
    margin: 0;
    padding: 10px 14px;
    transition: all 0.2s;
}

.dvah-checkbox-grid .dvah-checkbox:hover {
    background: var(--dvah-primary-light);
}

.dvah-checkbox-grid .dvah-checkbox input:checked + span {
    color: var(--dvah-primary);
    font-weight: 500;
}

/* Compact checkbox grid for long lists (e.g., specialisaties) */
.dvah-checkbox-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 6px;
}

.dvah-checkbox-grid-compact .dvah-checkbox {
    background: var(--dvah-bg-light);
    border-radius: var(--dvah-radius);
    margin: 0;
    padding: 8px 12px;
    transition: all 0.2s;
    font-size: 13px;
}

.dvah-checkbox-grid-compact .dvah-checkbox:hover {
    background: var(--dvah-primary-light);
}

.dvah-checkbox-grid-compact .dvah-checkbox input {
    width: 16px;
    height: 16px;
}

.dvah-checkbox-grid-compact .dvah-checkbox input:checked + span {
    color: var(--dvah-primary);
    font-weight: 500;
}

/* Checkbox Grid 3 columns */
.dvah-checkbox-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

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

@media (max-width: 480px) {
    .dvah-checkbox-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Checkbox Card styling for registration form */
.dvah-checkbox-card {
    display: block;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.dvah-checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.dvah-checkbox-card-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--dvah-bg-light, #f8f9fa);
    border: 2px solid transparent;
    border-radius: var(--dvah-radius, 8px);
    transition: all 0.2s ease;
}

.dvah-checkbox-card:hover .dvah-checkbox-card-content {
    background: var(--dvah-primary-light, #e8f4fc);
    border-color: var(--dvah-primary, #0073aa);
}

.dvah-checkbox-card input:checked + .dvah-checkbox-card-content {
    background: var(--dvah-primary-light, #e8f4fc);
    border-color: var(--dvah-primary, #0073aa);
}

.dvah-checkbox-card-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 2px solid var(--dvah-border, #ddd);
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dvah-checkbox-card-check svg {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
    color: #fff;
}

.dvah-checkbox-card input:checked + .dvah-checkbox-card-content .dvah-checkbox-card-check {
    background: var(--dvah-primary, #0073aa);
    border-color: var(--dvah-primary, #0073aa);
}

.dvah-checkbox-card input:checked + .dvah-checkbox-card-content .dvah-checkbox-card-check svg {
    opacity: 1;
    transform: scale(1);
}

.dvah-checkbox-card-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dvah-text, #333);
    line-height: 1.3;
}

.dvah-checkbox-card input:checked + .dvah-checkbox-card-content .dvah-checkbox-card-label {
    color: var(--dvah-primary, #0073aa);
}

/* Hoofd dienst select styling */
.dvah-hoofddienst-section .dvah-select,
#dvah-hoofd-dienst {
    width: 100%;
    max-width: 350px;
    padding: 12px 14px;
    border: 2px solid var(--dvah-border);
    border-radius: var(--dvah-radius);
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

#dvah-hoofd-dienst:focus {
    outline: none;
    border-color: var(--dvah-primary);
}

#dvah-hoofd-dienst option:disabled {
    color: #ccc;
}

/* Specialisaties section - can be hidden */
.dvah-specialisaties-section {
    display: none;
}

.dvah-specialisaties-section.dvah-visible {
    display: block;
}

/* Availability Table */
.dvah-availability-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.dvah-availability-table th,
.dvah-availability-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid var(--dvah-border-light);
}

.dvah-availability-table th {
    font-weight: 500;
    background: var(--dvah-bg-light);
}

.dvah-availability-table td:first-child {
    text-align: left;
}

.dvah-availability-table input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--dvah-primary);
}

/* Form Actions */
.dvah-form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 24px 28px;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
}

.dvah-btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

.dvah-form-message {
    font-size: 14px;
}

.dvah-form-message.dvah-success {
    color: var(--dvah-success);
}

.dvah-form-message.dvah-error {
    color: var(--dvah-error);
}

/* Checkbox large variant for visibility toggle */
.dvah-checkbox-large {
    background: var(--dvah-bg-light);
    padding: 16px 20px;
    border-radius: var(--dvah-radius);
    margin: 0;
}

.dvah-checkbox-large input {
    width: 20px;
    height: 20px;
}

.dvah-checkbox-large span {
    font-size: 15px;
}

@media (max-width: 768px) {
    .dvah-profile-form-container {
        padding: 12px;
    }

    .dvah-form-section {
        padding: 20px;
        margin-bottom: 16px;
    }

    .dvah-photo-upload {
        flex-direction: column;
        align-items: center;
    }

    .dvah-form-row {
        grid-template-columns: 1fr;
    }

    .dvah-checkbox-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .dvah-checkbox-grid .dvah-checkbox {
        padding: 8px 10px;
        font-size: 13px;
    }

    .dvah-availability-table {
        font-size: 12px;
    }

    .dvah-availability-table th,
    .dvah-availability-table td {
        padding: 8px 6px;
    }

    .dvah-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .dvah-form-actions .dvah-btn {
        width: 100%;
    }

    #dvah-hoofd-dienst {
        max-width: 100%;
    }
}

/* ==========================================================================
   Location Page
   ========================================================================== */

.dvah-location-page {
    min-height: 100vh;
    background: var(--dvah-bg-page);
}

.dvah-location-header {
    background: #fff;
    border-bottom: 1px solid var(--dvah-border);
    padding: 24px 0;
}

.dvah-location-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Breadcrumbs */
.dvah-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.dvah-breadcrumbs a {
    color: var(--dvah-text-light);
    text-decoration: none;
}

.dvah-breadcrumbs a:hover {
    color: var(--dvah-primary);
}

.dvah-breadcrumb-sep {
    color: var(--dvah-text-muted);
}

.dvah-breadcrumb-current {
    color: var(--dvah-text);
    font-weight: 500;
}

.dvah-location-title {
    margin: 0 0 8px 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--dvah-text);
}

.dvah-location-count {
    margin: 0 0 24px 0;
    color: var(--dvah-text-light);
    font-size: 16px;
}

/* Service Links */
.dvah-location-services {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--dvah-border-light);
}

.dvah-location-services h2 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dvah-text);
}

.dvah-location-service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dvah-location-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--dvah-bg-light);
    border-radius: 20px;
    color: var(--dvah-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.dvah-location-service-link:hover {
    background: var(--dvah-primary-light);
    color: var(--dvah-primary);
}

.dvah-location-service-count {
    color: var(--dvah-text-muted);
    font-size: 13px;
}

/* Location Content */
.dvah-location-content {
    /* Inherits from search page */
}

/* Nearby Places */
.dvah-location-nearby {
    background: #fff;
    padding: 32px 0;
    margin-top: 32px;
    border-top: 1px solid var(--dvah-border);
}

.dvah-location-nearby-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.dvah-location-nearby h2 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
}

.dvah-nearby-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dvah-nearby-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--dvah-bg-light);
    border-radius: var(--dvah-radius);
    color: var(--dvah-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.dvah-nearby-link:hover {
    background: var(--dvah-primary-light);
    color: var(--dvah-primary);
    transform: translateY(-1px);
}

.dvah-nearby-link span {
    color: var(--dvah-text-muted);
    font-size: 13px;
}

@media (max-width: 768px) {
    .dvah-location-header-inner {
        padding: 0 16px;
    }

    .dvah-location-title {
        font-size: 24px;
    }

    .dvah-location-nearby-inner {
        padding: 0 16px;
    }
}

/* ==========================================================================
   Service Landing Page
   ========================================================================== */

.dvah-service-page {
    background: #fff;
}

.dvah-service-header {
    background: linear-gradient(135deg, var(--dvah-primary-light) 0%, #fff 100%);
    padding: 48px 0 32px;
    border-bottom: 1px solid var(--dvah-border);
}

.dvah-service-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.dvah-service-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--dvah-text);
}

.dvah-service-count {
    font-size: 15px;
    color: var(--dvah-text-muted);
    margin: 0 0 16px 0;
}

.dvah-service-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dvah-text-secondary);
    margin: 0;
    max-width: 700px;
}

.dvah-service-content {
    /* Inherits from search page */
}

/* Service SEO Content */
.dvah-service-seo,
.dvah-location-seo,
.dvah-profile-seo {
    background: var(--dvah-bg-light);
    padding: 48px 0;
    border-top: 1px solid var(--dvah-border);
}

.dvah-service-seo-inner,
.dvah-location-seo-inner,
.dvah-profile-seo-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.dvah-service-article,
.dvah-location-article,
.dvah-profile-seo-content {
    background: #fff;
    padding: 32px;
    border-radius: var(--dvah-radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.dvah-service-article h2,
.dvah-location-article h2,
.dvah-profile-seo-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--dvah-text);
}

.dvah-service-article h2:not(:first-child),
.dvah-location-article h2:not(:first-child),
.dvah-profile-seo-content h2:not(:first-child) {
    margin-top: 28px;
}

.dvah-service-article p,
.dvah-location-article p,
.dvah-profile-seo-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dvah-text-secondary);
    margin: 0;
}

.dvah-service-cta-box,
.dvah-location-cta-box,
.dvah-profile-seo-cta {
    background: var(--dvah-primary);
    color: #fff;
    padding: 28px;
    border-radius: var(--dvah-radius-lg);
    text-align: center;
    position: sticky;
    top: 24px;
}

.dvah-service-cta-box h3,
.dvah-location-cta-box h3,
.dvah-profile-seo-cta h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #fff;
}

.dvah-service-cta-box p,
.dvah-location-cta-box p,
.dvah-profile-seo-cta p {
    font-size: 14px;
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.dvah-service-cta-box .dvah-btn,
.dvah-location-cta-box .dvah-btn,
.dvah-profile-seo-cta .dvah-btn {
    background: #fff;
    color: var(--dvah-primary);
    width: 100%;
    justify-content: center;
}

.dvah-service-cta-box .dvah-btn:hover,
.dvah-location-cta-box .dvah-btn:hover,
.dvah-profile-seo-cta .dvah-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Service Locations */
.dvah-service-locations {
    background: #fff;
    padding: 48px 0;
    border-top: 1px solid var(--dvah-border);
}

.dvah-service-locations-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.dvah-service-locations h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.dvah-service-locations > .dvah-service-locations-inner > p {
    color: var(--dvah-text-muted);
    margin: 0 0 24px 0;
}

.dvah-service-location-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dvah-service-location-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--dvah-bg-light);
    border-radius: var(--dvah-radius);
    color: var(--dvah-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.dvah-service-location-link:hover {
    background: var(--dvah-primary-light);
    color: var(--dvah-primary);
    transform: translateY(-1px);
}

.dvah-service-location-link span {
    color: var(--dvah-text-muted);
    font-size: 13px;
}

/* Other Services */
.dvah-service-other {
    background: var(--dvah-bg-light);
    padding: 48px 0;
    border-top: 1px solid var(--dvah-border);
}

.dvah-service-other-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.dvah-service-other h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.dvah-service-other > .dvah-service-other-inner > p {
    color: var(--dvah-text-muted);
    margin: 0 0 24px 0;
}

.dvah-service-other-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dvah-service-other-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: #fff;
    border-radius: var(--dvah-radius);
    color: var(--dvah-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.dvah-service-other-link:hover {
    background: var(--dvah-primary);
    color: #fff;
    transform: translateY(-1px);
}

.dvah-service-other-link:hover span {
    color: rgba(255, 255, 255, 0.8);
}

.dvah-service-other-link span {
    color: var(--dvah-text-muted);
    font-size: 13px;
}

/* Service Page Mobile */
@media (max-width: 900px) {
    .dvah-service-seo-inner,
    .dvah-location-seo-inner,
    .dvah-profile-seo-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dvah-service-cta-box,
    .dvah-location-cta-box,
    .dvah-profile-seo-cta {
        position: static;
    }
}

@media (max-width: 768px) {
    .dvah-service-header {
        padding: 32px 0 24px;
    }

    .dvah-service-header-inner {
        padding: 0 16px;
    }

    .dvah-service-title {
        font-size: 24px;
    }

    .dvah-service-intro {
        font-size: 15px;
    }

    .dvah-service-seo,
    .dvah-location-seo,
    .dvah-profile-seo {
        padding: 32px 0;
    }

    .dvah-service-seo-inner,
    .dvah-location-seo-inner,
    .dvah-profile-seo-inner {
        padding: 0 16px;
    }

    .dvah-service-article,
    .dvah-location-article,
    .dvah-profile-seo-content {
        padding: 24px;
    }

    .dvah-service-locations,
    .dvah-service-other {
        padding: 32px 0;
    }

    .dvah-service-locations-inner,
    .dvah-service-other-inner {
        padding: 0 16px;
    }

    .dvah-service-locations h2,
    .dvah-service-other h2 {
        font-size: 20px;
    }
}

/* ==========================================================================
   Elementor Compatibility
   ========================================================================== */

/* Prevent Elementor from overriding our styles */
.elementor-widget-shortcode .dvah-search-page,
.elementor-widget-shortcode .dvah-location-page,
.elementor-widget-shortcode .dvah-single-profile {
    max-width: none !important;
}

/* Fix Elementor column padding interfering */
.elementor-widget-shortcode .dvah-search-layout {
    margin: 0;
}

/* Ensure buttons look correct */
.elementor-widget-shortcode .dvah-btn {
    display: inline-flex !important;
    text-decoration: none !important;
    border: none;
}

.elementor-widget-shortcode .dvah-btn-primary {
    background: var(--dvah-primary) !important;
    color: #fff !important;
}

.elementor-widget-shortcode .dvah-btn-primary:hover {
    background: var(--dvah-primary-hover) !important;
    color: #fff !important;
}

/* Fix registration form container width in Elementor */
.elementor-widget-shortcode .dvah-register-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

/* Fix registration form button in Elementor */
.elementor-widget-shortcode .dvah-register-form #dvah-register-submit,
.elementor-widget-shortcode .dvah-register-container .dvah-btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 16px 28px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    background: #0073aa !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.3) !important;
}

.elementor-widget-shortcode .dvah-register-form #dvah-register-submit:hover {
    background: #005a87 !important;
    color: #fff !important;
}

/* Fix checkbox card styling in Elementor */
.elementor-widget-shortcode .dvah-checkbox-card input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.elementor-widget-shortcode .dvah-checkbox-card-content {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.elementor-widget-shortcode .dvah-checkbox-card-check {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border: 2px solid #ddd !important;
    border-radius: 4px !important;
    background: #fff !important;
}

.elementor-widget-shortcode .dvah-checkbox-card-check svg {
    opacity: 0 !important;
    color: #fff !important;
}

.elementor-widget-shortcode .dvah-checkbox-card input:checked + .dvah-checkbox-card-content .dvah-checkbox-card-check {
    background: #0073aa !important;
    border-color: #0073aa !important;
}

.elementor-widget-shortcode .dvah-checkbox-card input:checked + .dvah-checkbox-card-content .dvah-checkbox-card-check svg {
    opacity: 1 !important;
}

/* Fix input styling in Elementor */
.elementor-widget-shortcode .dvah-search-input-wrap input,
.elementor-widget-shortcode .dvah-search-radius-wrap select {
    height: auto !important;
    min-height: 48px;
    margin: 0 !important;
}

.elementor-widget-shortcode .dvah-search-input-wrap input {
    padding-left: 44px !important;
}

/* Fix checkbox/radio styling */
.elementor-widget-shortcode .dvah-checkbox input,
.elementor-widget-shortcode .dvah-radio input {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
}

/* Fix profile card images */
.elementor-widget-shortcode .dvah-profile-photo img {
    max-width: 100%;
    height: auto;
}

/* Fix link styling */
.elementor-widget-shortcode .dvah-profile-name a,
.elementor-widget-shortcode .dvah-breadcrumbs a,
.elementor-widget-shortcode .dvah-nearby-link {
    text-decoration: none !important;
}

/* Mobile overlay z-index fix for Elementor */
.elementor-widget-shortcode .dvah-filters-overlay {
    z-index: 9998 !important;
}

.elementor-widget-shortcode .dvah-filters-sidebar.active {
    z-index: 9999 !important;
}

/* Elementor mobile filter fixes */
@media (max-width: 1024px) {
    .elementor-widget-shortcode .dvah-filters-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 300px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        z-index: 9999 !important;
        background: #fff !important;
    }

    .elementor-widget-shortcode .dvah-filters-sidebar.active {
        left: 0 !important;
    }

    .elementor-widget-shortcode .dvah-filters-overlay.active {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 9998 !important;
    }

    .elementor-widget-shortcode .dvah-search-layout {
        display: block !important;
    }

    .elementor-widget-shortcode .dvah-results-main {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Elementor often adds extra margin to p tags */
.elementor-widget-shortcode .dvah-profile-bio,
.elementor-widget-shortcode .dvah-no-results-content p {
    margin-bottom: 0 !important;
}

/* Elementor container width - stay within bounds */
.elementor-section-full_width .elementor-widget-shortcode .dvah-search-page,
.elementor-section-full_width .elementor-widget-shortcode .dvah-location-page,
.elementor-section-boxed .elementor-widget-shortcode .dvah-search-page,
.elementor-section-boxed .elementor-widget-shortcode .dvah-location-page {
    width: 100%;
    max-width: 100%;
}

/* ==========================================================================
   Single Profile Elementor/Theme Compatibility
   ========================================================================== */

/* Reset common theme interference for single profiles - use ID for higher specificity */
#dvah-profile-wrapper .dvah-profile-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
}

#dvah-profile-wrapper .dvah-profile-header-section {
    grid-column: 1 / -1;
    display: flex;
    gap: 32px;
    padding: 32px;
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
}

#dvah-profile-wrapper .dvah-profile-main {
    grid-column: 1;
}

#dvah-profile-wrapper .dvah-profile-back {
    grid-column: 1 / -1;
    padding-top: 16px;
}

/* Ensure proper heading styles */
#dvah-profile-wrapper h1,
#dvah-profile-wrapper h2,
#dvah-profile-wrapper h3,
#dvah-profile-wrapper p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.4;
    color: var(--dvah-text);
}

#dvah-profile-wrapper h1 {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
}

#dvah-profile-wrapper h2 {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}

#dvah-profile-wrapper h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}

#dvah-profile-wrapper p {
    margin: 0 0 16px 0;
}

/* Fix list styling */
#dvah-profile-wrapper ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#dvah-profile-wrapper li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

#dvah-profile-wrapper li::before {
    display: none !important;
}

/* Fix link styling in profiles */
#dvah-profile-wrapper a {
    text-decoration: none !important;
}

#dvah-profile-wrapper a:hover {
    text-decoration: none !important;
}

/* Fix for themes that style all buttons */
#dvah-profile-wrapper .dvah-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border: none !important;
    cursor: pointer !important;
    padding: 10px 20px !important;
    border-radius: var(--dvah-radius) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

#dvah-profile-wrapper .dvah-btn-primary {
    background: var(--dvah-primary) !important;
    color: #fff !important;
}

#dvah-profile-wrapper .dvah-btn-primary:hover {
    background: var(--dvah-primary-hover) !important;
    color: #fff !important;
}

#dvah-profile-wrapper .dvah-btn-secondary {
    background: #f0f0f0 !important;
    color: var(--dvah-text) !important;
}

#dvah-profile-wrapper .dvah-btn-secondary:hover {
    background: #e0e0e0 !important;
}

#dvah-profile-wrapper .dvah-btn-text {
    background: none !important;
    color: var(--dvah-primary) !important;
    padding: 5px 10px !important;
}

/* Profile sections */
#dvah-profile-wrapper .dvah-profile-section {
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    padding: 28px;
    margin-bottom: 24px;
}

#dvah-profile-wrapper .dvah-profile-section h2 {
    padding-bottom: 12px !important;
    border-bottom: 2px solid var(--dvah-primary) !important;
}

/* Contact box */
#dvah-profile-wrapper .dvah-contact-box {
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    padding: 28px;
    margin-bottom: 24px;
    text-align: center;
}

#dvah-profile-wrapper .dvah-contact-btn {
    width: 100% !important;
    margin-bottom: 12px !important;
}

/* Profile photo */
#dvah-profile-wrapper .dvah-profile-photo-large {
    width: 200px;
    height: 200px;
    border-radius: var(--dvah-radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

#dvah-profile-wrapper .dvah-profile-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tags */
#dvah-profile-wrapper .dvah-tag {
    display: inline-block !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-right: 8px !important;
    margin-bottom: 8px !important;
}

#dvah-profile-wrapper .dvah-tag-dienst {
    background: var(--dvah-primary-light) !important;
    color: var(--dvah-primary) !important;
}

/* Mobile responsive for single profiles */
@media (max-width: 1024px) {
    #dvah-profile-wrapper .dvah-profile-container {
        grid-template-columns: 1fr;
    }

    #dvah-profile-wrapper .dvah-profile-sidebar {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    #dvah-profile-wrapper.dvah-single-profile {
        padding: 16px;
    }

    #dvah-profile-wrapper .dvah-profile-header-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }

    #dvah-profile-wrapper .dvah-profile-photo-large {
        width: 150px;
        height: 150px;
    }

    #dvah-profile-wrapper h1 {
        font-size: 24px !important;
    }

    #dvah-profile-wrapper .dvah-profile-section {
        padding: 20px;
    }
}

/* ==========================================================================
   Homepage Search Bar
   ========================================================================== */

.dvah-home-search {
    --dvah-primary: #0073aa;
    --dvah-primary-hover: #005a87;
    --dvah-border: #e5e5e5;
    --dvah-text: #333;
    --dvah-text-light: #666;
    --dvah-radius: 8px;
    --dvah-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --dvah-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.dvah-home-search *,
.dvah-home-search *::before,
.dvah-home-search *::after {
    box-sizing: border-box;
}

.dvah-home-search-title {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--dvah-text);
}

.dvah-home-search-subtitle {
    margin: 0 0 24px 0;
    font-size: 16px;
    color: var(--dvah-text-light);
}

.dvah-home-search-form {
    max-width: 700px;
    margin: 0 auto;
}

.dvah-home-search-inner {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 50px;
    box-shadow: var(--dvah-shadow-lg);
    padding: 6px;
    border: 2px solid var(--dvah-border);
    transition: border-color 0.2s;
}

.dvah-home-search-inner:focus-within {
    border-color: var(--dvah-primary);
}

.dvah-home-search-input {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.dvah-home-search-input svg {
    position: absolute;
    left: 16px;
    color: var(--dvah-text-light);
    pointer-events: none;
}

.dvah-home-search-input input {
    width: 100%;
    padding: 14px 16px 14px 48px !important;
    border: none !important;
    background: transparent !important;
    font-size: 16px;
    color: var(--dvah-text);
    outline: none;
}

.dvah-home-search-input input::placeholder {
    color: #999;
}

.dvah-home-search-radius {
    display: flex;
    align-items: center;
    padding-right: 8px;
    border-left: 1px solid var(--dvah-border);
}

.dvah-home-search-radius select {
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--dvah-text);
    cursor: pointer;
    outline: none;
    min-width: 130px;
}

.dvah-home-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--dvah-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.dvah-home-search-btn:hover {
    background: var(--dvah-primary-hover);
    transform: translateY(-1px);
}

.dvah-home-search-btn svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .dvah-home-search-title {
        font-size: 22px;
    }

    .dvah-home-search-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .dvah-home-search-inner {
        flex-direction: column;
        border-radius: var(--dvah-radius);
        padding: 0;
        gap: 0;
    }

    .dvah-home-search-input {
        border-bottom: 1px solid var(--dvah-border);
    }

    .dvah-home-search-input input {
        padding: 16px 16px 16px 48px !important;
    }

    .dvah-home-search-radius {
        border-left: none;
        border-bottom: 1px solid var(--dvah-border);
        padding: 0;
    }

    .dvah-home-search-radius select {
        width: 100%;
        padding: 14px 16px;
    }

    .dvah-home-search-btn {
        width: 100%;
        border-radius: 0 0 var(--dvah-radius) var(--dvah-radius);
        padding: 16px 28px;
    }
}

/* Elementor compatibility */
.elementor-widget-shortcode .dvah-home-search {
    width: 100%;
}

.elementor-widget-shortcode .dvah-home-search-input input,
.elementor-widget-shortcode .dvah-home-search-radius select {
    height: auto !important;
    min-height: auto;
    margin: 0 !important;
    background: transparent !important;
}

.elementor-widget-shortcode .dvah-home-search-input input {
    padding-left: 48px !important;
}

.elementor-widget-shortcode .dvah-home-search-btn {
    text-decoration: none !important;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */

.dvah-contact-intro {
    text-align: left;
    font-size: 14px;
    color: var(--dvah-text-light);
    margin-bottom: 20px;
}

.dvah-contact-form {
    text-align: left;
}

.dvah-contact-form .dvah-form-field {
    margin-bottom: 16px;
}

.dvah-contact-form .dvah-form-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dvah-text);
}

.dvah-contact-form .dvah-form-field label .required {
    color: var(--dvah-error);
}

.dvah-contact-form .dvah-form-field label .optional {
    color: var(--dvah-text-muted);
    font-weight: 400;
}

.dvah-contact-form .dvah-form-field input,
.dvah-contact-form .dvah-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--dvah-border);
    border-radius: var(--dvah-radius);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.dvah-contact-form .dvah-form-field input:focus,
.dvah-contact-form .dvah-form-field textarea:focus {
    outline: none;
    border-color: var(--dvah-primary);
}

.dvah-contact-form .dvah-form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.dvah-contact-form .dvah-form-submit {
    margin-top: 20px;
}

.dvah-contact-form .dvah-form-submit .dvah-btn {
    width: 100%;
}

.dvah-contact-form .dvah-form-submit .dvah-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.dvah-contact-message {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: var(--dvah-radius);
    font-size: 14px;
    text-align: center;
}

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

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

/* Contact form in profile wrapper */
#dvah-profile-wrapper .dvah-contact-form .dvah-form-field input,
#dvah-profile-wrapper .dvah-contact-form .dvah-form-field textarea {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 14px !important;
    border: 2px solid var(--dvah-border) !important;
    border-radius: var(--dvah-radius) !important;
    font-size: 14px !important;
    background: #fff !important;
}

#dvah-profile-wrapper .dvah-contact-form .dvah-form-field input:focus,
#dvah-profile-wrapper .dvah-contact-form .dvah-form-field textarea:focus {
    border-color: var(--dvah-primary) !important;
}

#dvah-profile-wrapper .dvah-contact-form .dvah-form-submit .dvah-btn {
    width: 100% !important;
}

/* Elementor compatibility for contact form */
.elementor-widget-shortcode .dvah-contact-form input,
.elementor-widget-shortcode .dvah-contact-form textarea {
    height: auto !important;
    min-height: auto !important;
    margin: 0 !important;
}

/* ==========================================================================
   Zoekopdrachten Styles
   ========================================================================== */

/* Variables for zoekopdrachten */
.dvah-zoekopdracht-form-container,
.dvah-zoekopdrachten-page {
    --dvah-primary: #0073aa;
    --dvah-primary-hover: #005a87;
    --dvah-primary-light: #e8f4fc;
    --dvah-success: #46b450;
    --dvah-error: #dc3232;
    --dvah-border: #e5e5e5;
    --dvah-bg-light: #f9f9f9;
    --dvah-text: #333;
    --dvah-text-light: #666;
    --dvah-radius: 8px;
    --dvah-radius-lg: 12px;
    --dvah-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Zoekopdracht Form */
.dvah-zoekopdracht-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 24px;
}

.dvah-zoekopdracht-form .dvah-form-section {
    background: #fff;
    margin-bottom: 20px;
    padding: 24px 28px;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
}

.dvah-zoekopdracht-form .dvah-form-section h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dvah-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--dvah-primary-light);
}

.dvah-zoekopdracht-form .dvah-privacy-section {
    background: var(--dvah-bg-light);
}

.dvah-zoekopdracht-success {
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
}

.dvah-success-icon {
    color: var(--dvah-success);
    margin-bottom: 20px;
}

.dvah-zoekopdracht-success h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dvah-text);
}

.dvah-zoekopdracht-success p {
    color: var(--dvah-text-light);
    margin-bottom: 12px;
}

.dvah-zoekopdracht-success .dvah-btn {
    margin-top: 20px;
}

/* Radio inline */
.dvah-radio-inline {
    display: flex;
    gap: 20px;
}

.dvah-radio-inline .dvah-radio {
    margin: 0;
    padding: 8px 12px;
    background: var(--dvah-bg-light);
    border-radius: var(--dvah-radius);
}

/* Zoekopdrachten List Page */
.dvah-zoekopdrachten-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

/* Filter Bar */
.dvah-zo-filter-bar {
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    margin-bottom: 24px;
}

.dvah-zo-filter-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}

.dvah-zo-filter-group {
    flex: 1;
    min-width: 150px;
}

.dvah-zo-filter-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--dvah-text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dvah-zo-filter-group select,
.dvah-zo-filter-group input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--dvah-border);
    border-radius: var(--dvah-radius);
    font-size: 14px;
}

.dvah-zo-filter-bar .dvah-btn {
    padding: 10px 24px;
}

/* Results Header */
.dvah-zo-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dvah-zo-results-count {
    font-weight: 500;
    color: var(--dvah-text);
}

.dvah-zo-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dvah-zo-sort label {
    font-size: 14px;
    color: var(--dvah-text-light);
}

.dvah-zo-sort select {
    padding: 6px 12px;
    border: 1px solid var(--dvah-border);
    border-radius: var(--dvah-radius);
    font-size: 14px;
}

/* Zoekopdracht Cards */
.dvah-zo-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.dvah-zo-card {
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.dvah-zo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.dvah-zo-card.dvah-zo-urgent {
    border-left: 4px solid var(--dvah-error);
}

.dvah-zo-card-header {
    padding: 16px 20px;
    background: var(--dvah-bg-light);
    border-bottom: 1px solid var(--dvah-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dvah-zo-dienst {
    font-weight: 600;
    color: var(--dvah-text);
}

.dvah-zo-badge-urgent {
    background: var(--dvah-error);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.dvah-zo-card-body {
    padding: 20px;
}

.dvah-zo-location,
.dvah-zo-period {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dvah-text-light);
    margin-bottom: 8px;
}

.dvah-zo-location svg,
.dvah-zo-period svg {
    flex-shrink: 0;
}

.dvah-zo-distance {
    color: var(--dvah-primary);
    font-size: 13px;
}

.dvah-zo-excerpt {
    font-size: 14px;
    color: var(--dvah-text);
    margin: 12px 0 0;
    line-height: 1.5;
}

.dvah-zo-card-footer {
    padding: 12px 20px;
    background: var(--dvah-bg-light);
    border-top: 1px solid var(--dvah-border);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--dvah-text-light);
}

/* Loading & Empty States */
.dvah-zo-loading,
.dvah-zo-empty {
    text-align: center;
    padding: 60px 24px;
    color: var(--dvah-text-light);
}

.dvah-zo-empty svg {
    color: var(--dvah-border);
    margin-bottom: 20px;
}

.dvah-zo-empty h3 {
    font-size: 18px;
    color: var(--dvah-text);
    margin-bottom: 8px;
}

/* Pagination */
.dvah-zo-pagination {
    margin-top: 24px;
    text-align: center;
}

.dvah-zo-pagination-inner {
    display: inline-flex;
    gap: 4px;
}

.dvah-zo-page-btn,
.dvah-zo-page-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: var(--dvah-radius);
    font-size: 14px;
    text-decoration: none;
}

.dvah-zo-page-btn {
    background: #fff;
    border: 1px solid var(--dvah-border);
    color: var(--dvah-text);
}

.dvah-zo-page-btn:hover {
    background: var(--dvah-primary-light);
    border-color: var(--dvah-primary);
    color: var(--dvah-primary);
}

.dvah-zo-page-current {
    background: var(--dvah-primary);
    color: #fff;
}

/* Modal */
.dvah-zo-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.dvah-zo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.dvah-zo-modal-content {
    position: relative;
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.dvah-zo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--dvah-text-light);
    cursor: pointer;
    z-index: 1;
    line-height: 1;
}

.dvah-zo-modal-close:hover {
    color: var(--dvah-text);
}

.dvah-zo-modal-body {
    padding: 24px;
}

/* Detail View */
.dvah-zo-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-right: 40px;
}

.dvah-zo-detail-header h2 {
    font-size: 20px;
    margin: 0;
    color: var(--dvah-text);
}

.dvah-zo-detail-meta {
    background: var(--dvah-bg-light);
    padding: 16px 20px;
    border-radius: var(--dvah-radius);
    margin-bottom: 20px;
}

.dvah-zo-meta-item {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.dvah-zo-meta-item:last-child {
    margin-bottom: 0;
}

.dvah-zo-meta-item strong {
    color: var(--dvah-text-light);
    min-width: 80px;
}

.dvah-zo-detail-description {
    margin-bottom: 20px;
}

.dvah-zo-detail-description h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dvah-text);
    margin-bottom: 10px;
}

.dvah-zo-detail-description p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dvah-text);
}

/* Contact Info */
.dvah-zo-contact-info {
    background: var(--dvah-primary-light);
    padding: 20px;
    border-radius: var(--dvah-radius);
    margin-top: 20px;
}

.dvah-zo-contact-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dvah-primary);
    margin-bottom: 12px;
}

.dvah-zo-contact-details p {
    margin-bottom: 6px;
    font-size: 14px;
}

.dvah-zo-contact-details a {
    color: var(--dvah-primary);
}

/* Response States */
.dvah-zo-action {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--dvah-border);
    text-align: center;
}

.dvah-zo-action .dvah-btn {
    width: 100%;
    max-width: 300px;
}

.dvah-zo-action-note {
    font-size: 13px;
    color: var(--dvah-text-light);
    margin-top: 8px;
}

.dvah-zo-responded {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: #d4edda;
    color: #155724;
    border-radius: var(--dvah-radius);
    margin-top: 20px;
    font-weight: 500;
}

.dvah-zo-login-notice {
    margin-top: 24px;
    padding: 20px;
    background: var(--dvah-bg-light);
    border-radius: var(--dvah-radius);
    text-align: center;
}

.dvah-zo-login-notice p {
    font-size: 14px;
    color: var(--dvah-text-light);
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .dvah-zoekopdracht-form-container,
    .dvah-zoekopdrachten-page {
        padding: 12px;
    }

    .dvah-zoekopdracht-form .dvah-form-section {
        padding: 20px;
    }

    .dvah-zo-filter-inner {
        flex-direction: column;
    }

    .dvah-zo-filter-group {
        width: 100%;
    }

    .dvah-zo-filter-bar .dvah-btn {
        width: 100%;
    }

    .dvah-zo-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .dvah-zo-list {
        grid-template-columns: 1fr;
    }

    .dvah-zo-modal {
        padding: 10px;
    }

    .dvah-zo-modal-content {
        max-height: 95vh;
    }

    .dvah-zo-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dvah-radio-inline {
        flex-direction: column;
        gap: 8px;
    }
}

/* ==========================================================================
   Single Zoekopdracht Page
   ========================================================================== */

/* Body class for Kadence/theme compatibility */
body.dvah-single-zoekopdracht-page .site-container,
body.dvah-single-zoekopdracht-page .content-area,
body.dvah-single-zoekopdracht-page .entry-content {
    max-width: 100%;
    padding: 0;
}

body.dvah-single-zoekopdracht-page .content-wrap {
    max-width: 100%;
}

.dvah-single-zoekopdracht {
    --dvah-primary: #0073aa;
    --dvah-primary-hover: #005a87;
    --dvah-primary-light: #e8f4fc;
    --dvah-success: #46b450;
    --dvah-error: #dc3232;
    --dvah-border: #e5e5e5;
    --dvah-bg-light: #f9f9f9;
    --dvah-bg-page: #f5f5f5;
    --dvah-text: #333;
    --dvah-text-light: #666;
    --dvah-text-muted: #999;
    --dvah-radius: 8px;
    --dvah-radius-lg: 12px;
    --dvah-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --dvah-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: var(--dvah-text);
    line-height: 1.6;
    background: var(--dvah-bg-page);
    padding: 30px 20px 60px;
}

.dvah-zoekopdracht-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Breadcrumb */
.dvah-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--dvah-text-light);
}

.dvah-breadcrumb a {
    color: var(--dvah-primary);
    text-decoration: none;
}

.dvah-breadcrumb a:hover {
    text-decoration: underline;
}

.dvah-breadcrumb-sep {
    margin: 0 8px;
    color: var(--dvah-text-muted);
}

.dvah-breadcrumb-current {
    color: var(--dvah-text);
}

/* Header */
.dvah-zo-single-header {
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    padding: 24px 28px;
    margin-bottom: 24px;
}

.dvah-zo-single-header.dvah-zo-urgent {
    border-left: 4px solid #dc3232;
}

.dvah-zo-single-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dvah-zo-single-header h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.dvah-zo-single-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 14px;
    color: var(--dvah-text-light);
}

.dvah-zo-single-dienst {
    background: var(--dvah-primary-light);
    color: var(--dvah-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* Content layout */
.dvah-zo-single-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
}

.dvah-zo-single-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Section */
.dvah-zo-single-section {
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    padding: 24px;
}

.dvah-zo-single-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dvah-text);
    margin: 0 0 16px 0;
}

.dvah-zo-single-section h2 svg {
    color: var(--dvah-primary);
    flex-shrink: 0;
}

.dvah-zo-single-location {
    font-size: 16px;
    margin: 0;
}

.dvah-zo-single-specs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dvah-zo-single-specs li {
    background: var(--dvah-bg-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}

.dvah-zo-single-description-content {
    font-size: 15px;
    line-height: 1.7;
}

.dvah-zo-single-description-content p {
    margin: 0 0 12px 0;
}

.dvah-zo-single-description-content p:last-child {
    margin-bottom: 0;
}

/* Sidebar */
.dvah-zo-single-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dvah-zo-single-contact-box {
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    padding: 24px;
}

.dvah-zo-single-contact-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.dvah-zo-single-contact-box > p {
    font-size: 14px;
    color: var(--dvah-text-light);
    margin: 0 0 20px 0;
}

.dvah-zo-single-contact-box .dvah-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
}

.dvah-zo-single-respond-note,
.dvah-zo-single-signup-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--dvah-text-muted);
    text-align: center;
}

.dvah-zo-single-signup-note a {
    color: var(--dvah-primary);
}

/* Responded state */
.dvah-zo-single-responded {
    background: #fff;
    padding: 0;
}

.dvah-zo-single-responded-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #d4edda;
    color: #155724;
    padding: 14px 16px;
    border-radius: var(--dvah-radius);
    margin-bottom: 20px;
    font-weight: 500;
}

.dvah-zo-single-responded-header svg {
    flex-shrink: 0;
}

.dvah-zo-single-responded h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.dvah-zo-single-contact-details p {
    margin: 0 0 10px 0;
    font-size: 14px;
}

.dvah-zo-single-contact-details p:last-child {
    margin-bottom: 0;
}

.dvah-zo-single-contact-details strong {
    color: var(--dvah-text-light);
    font-weight: 500;
}

.dvah-zo-single-contact-details a {
    color: var(--dvah-primary);
    text-decoration: none;
}

.dvah-zo-single-contact-details a:hover {
    text-decoration: underline;
}

/* Stats box */
.dvah-zo-single-stats {
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    padding: 20px 24px;
    display: flex;
    justify-content: center;
}

.dvah-zo-single-stat {
    text-align: center;
}

.dvah-zo-single-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--dvah-primary);
}

.dvah-zo-single-stat-label {
    font-size: 13px;
    color: var(--dvah-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Back link */
.dvah-zo-single-back {
    margin-top: 30px;
}

.dvah-zo-single-back .dvah-btn-text {
    color: var(--dvah-text-light);
    background: none;
    border: none;
    padding: 8px 0;
}

.dvah-zo-single-back .dvah-btn-text:hover {
    color: var(--dvah-primary);
    transform: none;
}

/* Responsive */
@media (max-width: 900px) {
    .dvah-zo-single-content {
        grid-template-columns: 1fr;
    }

    .dvah-zo-single-sidebar {
        order: -1;
    }
}

@media (max-width: 600px) {
    .dvah-single-zoekopdracht {
        padding: 15px;
    }

    .dvah-zo-single-header {
        padding: 20px;
    }

    .dvah-zo-single-header h1 {
        font-size: 20px;
    }

    .dvah-zo-single-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .dvah-zo-single-section {
        padding: 20px;
    }

    .dvah-zo-single-contact-box {
        padding: 20px;
    }
}

/* ==========================================================================
   Redesigned Profile Form Styles
   ========================================================================== */

/* Profile Header Card */
.dvah-profile-header-card {
    background: #fff;
    border-radius: var(--dvah-radius-lg);
    box-shadow: var(--dvah-shadow);
    padding: 24px 28px;
    margin-bottom: 24px;
}

.dvah-profile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dvah-profile-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dvah-profile-avatar-small {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dvah-profile-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dvah-avatar-initials {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.dvah-profile-header-name {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.dvah-profile-header-location {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--dvah-text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.dvah-profile-header-location svg {
    color: var(--dvah-primary);
}

.dvah-muted {
    color: var(--dvah-text-muted);
    font-style: italic;
}

/* Completion Progress */
.dvah-profile-completion {
    background: var(--dvah-bg-light);
    border-radius: var(--dvah-radius);
    padding: 16px 20px;
}

.dvah-completion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.dvah-completion-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--dvah-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dvah-completion-percentage {
    font-size: 18px;
    font-weight: 700;
    color: var(--dvah-primary);
}

.dvah-progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.dvah-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--dvah-primary), #46b450);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.dvah-completion-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 13px;
    color: var(--dvah-text-light);
}

.dvah-completion-hint svg {
    flex-shrink: 0;
    color: var(--dvah-primary);
}

.dvah-completion-missing {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--dvah-border);
}

.dvah-missing-label {
    font-size: 12px;
    color: var(--dvah-text-muted);
}

.dvah-missing-item {
    display: inline-block;
    padding: 4px 10px;
    background: #fff;
    border: 1px solid var(--dvah-border);
    border-radius: 20px;
    font-size: 12px;
    color: var(--dvah-text);
}

.dvah-missing-more {
    font-size: 12px;
    color: var(--dvah-text-muted);
}

/* Section Numbers */
.dvah-form-section-numbered {
    position: relative;
}

.dvah-section-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.dvah-section-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--dvah-primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dvah-section-title-wrap h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dvah-text);
    border: none !important;
    padding: 0 !important;
    text-transform: none;
    letter-spacing: normal;
}

.dvah-section-subtitle {
    margin: 0;
    font-size: 14px;
    color: var(--dvah-text-light);
}

/* Form Grid Layout */
.dvah-form-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
}

.dvah-form-photo-column {
    text-align: center;
}

.dvah-photo-upload-card {
    background: var(--dvah-bg-light);
    border-radius: var(--dvah-radius);
    padding: 16px;
}

.dvah-photo-preview-large {
    width: 140px;
    height: 140px;
    margin: 0 auto 12px;
    border-radius: var(--dvah-radius);
    overflow: hidden;
    background: #fff;
}

.dvah-photo-preview-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dvah-photo-placeholder-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--dvah-text-muted);
    gap: 8px;
}

.dvah-photo-placeholder-large span {
    font-size: 12px;
}

.dvah-btn-block {
    width: 100%;
}

.dvah-photo-hint {
    font-size: 11px;
    color: var(--dvah-text-muted);
    margin: 8px 0 0;
}

.dvah-form-fields-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dvah-form-fields-column .dvah-form-field {
    margin-bottom: 0;
}

/* Field Hints */
.dvah-field-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--dvah-text-muted);
}

.dvah-field-hint svg {
    flex-shrink: 0;
}

/* Label Badge */
.dvah-label-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--dvah-bg-light);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--dvah-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-left: 8px;
}

/* Diensten Grid */
.dvah-diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.dvah-dienst-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: var(--dvah-bg-light);
    border: 2px solid transparent;
    border-radius: var(--dvah-radius);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.dvah-dienst-card:hover {
    background: var(--dvah-primary-light);
    border-color: var(--dvah-primary);
}

.dvah-dienst-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.dvah-dienst-card.dvah-dienst-selected {
    background: var(--dvah-primary-light);
    border-color: var(--dvah-primary);
}

.dvah-dienst-icon {
    color: var(--dvah-text-light);
    transition: color 0.2s;
}

.dvah-dienst-card.dvah-dienst-selected .dvah-dienst-icon,
.dvah-dienst-card:hover .dvah-dienst-icon {
    color: var(--dvah-primary);
}

.dvah-dienst-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--dvah-text);
}

.dvah-dienst-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--dvah-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s;
}

.dvah-dienst-card.dvah-dienst-selected .dvah-dienst-check {
    opacity: 1;
    transform: scale(1);
}

/* Info Cards (for kinderopvang section) */
.dvah-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.dvah-info-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--dvah-bg-light);
    border-radius: var(--dvah-radius);
}

.dvah-info-card-icon {
    color: var(--dvah-primary);
    flex-shrink: 0;
}

.dvah-info-card-content {
    flex: 1;
}

.dvah-info-card-content > label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Toggle Group */
.dvah-toggle-group {
    display: flex;
    gap: 4px;
    background: #fff;
    padding: 4px;
    border-radius: var(--dvah-radius);
    border: 1px solid var(--dvah-border);
}

.dvah-toggle-btn {
    flex: 1;
    padding: 8px 16px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.dvah-toggle-btn input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.dvah-toggle-btn.active {
    background: var(--dvah-primary);
    color: #fff;
}

.dvah-toggle-btn:not(.active):hover {
    background: var(--dvah-bg-light);
}

.dvah-hoeveel-kinderen-field {
    margin-top: 12px;
}

.dvah-hoeveel-kinderen-field label {
    font-size: 13px;
    color: var(--dvah-text-light);
    margin-bottom: 4px;
}

.dvah-hoeveel-kinderen-field input {
    width: 80px;
    padding: 8px 12px;
    border: 1px solid var(--dvah-border);
    border-radius: var(--dvah-radius);
}

/* Input with Prefix */
.dvah-input-with-prefix {
    display: flex;
    align-items: stretch;
}

.dvah-input-prefix {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: var(--dvah-bg-light);
    border: 2px solid var(--dvah-border);
    border-right: none;
    border-radius: var(--dvah-radius) 0 0 var(--dvah-radius);
    color: var(--dvah-text-light);
    font-weight: 500;
}

.dvah-input-with-prefix input {
    border-radius: 0 var(--dvah-radius) var(--dvah-radius) 0 !important;
}

/* New Availability Grid */
.dvah-availability-wrap {
    margin-top: 20px;
}

.dvah-availability-wrap > label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 12px;
}

.dvah-availability-grid {
    background: var(--dvah-bg-light);
    border-radius: var(--dvah-radius);
    overflow: hidden;
}

.dvah-availability-header {
    display: grid;
    grid-template-columns: 100px repeat(3, 1fr);
    background: #fff;
    border-bottom: 1px solid var(--dvah-border);
}

.dvah-availability-header > div {
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--dvah-text-light);
}

.dvah-availability-row {
    display: grid;
    grid-template-columns: 100px repeat(3, 1fr);
    border-bottom: 1px solid var(--dvah-border);
}

.dvah-availability-row:last-child {
    border-bottom: none;
}

.dvah-availability-day-label {
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
}

.dvah-availability-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    cursor: pointer;
}

.dvah-availability-checkbox input {
    position: absolute;
    opacity: 0;
}

.dvah-availability-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--dvah-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.dvah-availability-checkbox input:checked + .dvah-availability-mark {
    background: var(--dvah-success);
    border-color: var(--dvah-success);
}

.dvah-availability-checkbox input:checked + .dvah-availability-mark::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.dvah-availability-checkbox:hover .dvah-availability-mark {
    border-color: var(--dvah-primary);
}

/* Visibility Toggle */
.dvah-form-section-final {
    margin-bottom: 100px; /* Space for sticky footer */
}

.dvah-visibility-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--dvah-bg-light);
    border-radius: var(--dvah-radius);
}

.dvah-visibility-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dvah-visibility-info svg {
    color: var(--dvah-primary);
    flex-shrink: 0;
}

.dvah-visibility-info strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.dvah-visibility-info p {
    margin: 0;
    font-size: 13px;
    color: var(--dvah-text-light);
}

/* Switch Toggle */
.dvah-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.dvah-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.dvah-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 28px;
    transition: 0.3s;
}

.dvah-switch-slider::before {
    position: absolute;
    content: '';
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.dvah-switch input:checked + .dvah-switch-slider {
    background: var(--dvah-success);
}

.dvah-switch input:checked + .dvah-switch-slider::before {
    transform: translateX(24px);
}

/* Sticky Form Actions */
.dvah-form-actions-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--dvah-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 16px 24px;
}

.dvah-form-actions-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.dvah-form-actions-sticky .dvah-btn {
    padding: 12px 32px;
}

/* Responsive Profile Form */
@media (max-width: 768px) {
    .dvah-profile-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .dvah-profile-header-right {
        width: 100%;
    }

    .dvah-profile-header-right .dvah-btn {
        width: 100%;
    }

    .dvah-form-grid {
        grid-template-columns: 1fr;
    }

    .dvah-form-photo-column {
        order: -1;
    }

    .dvah-photo-upload-card {
        max-width: 200px;
        margin: 0 auto;
    }

    .dvah-section-header {
        gap: 12px;
    }

    .dvah-section-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .dvah-section-title-wrap h3 {
        font-size: 16px;
    }

    .dvah-diensten-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .dvah-dienst-card {
        padding: 14px 8px;
    }

    .dvah-dienst-label {
        font-size: 12px;
    }

    .dvah-info-cards {
        grid-template-columns: 1fr;
    }

    .dvah-availability-header,
    .dvah-availability-row {
        grid-template-columns: 80px repeat(3, 1fr);
    }

    .dvah-availability-day-label {
        font-size: 12px;
        padding: 10px 8px;
    }

    .dvah-availability-mark {
        width: 24px;
        height: 24px;
    }

    .dvah-visibility-toggle {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .dvah-visibility-info {
        flex-direction: column;
        gap: 8px;
    }

    .dvah-form-actions-sticky {
        padding: 12px 16px;
    }

    .dvah-form-actions-inner {
        flex-direction: column-reverse;
    }

    .dvah-form-actions-sticky .dvah-btn {
        width: 100%;
    }

    .dvah-form-section-final {
        margin-bottom: 120px;
    }
}

/* ============================================
   Registration Form
   ============================================ */

.dvah-register-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.dvah-register-header {
    text-align: center;
    margin-bottom: 32px;
}

.dvah-register-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dvah-text);
    margin: 0 0 12px;
}

.dvah-register-intro {
    font-size: 1.1rem;
    color: var(--dvah-text-light);
    margin: 0;
}

.dvah-register-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--dvah-primary-50);
    border-radius: var(--dvah-radius-lg);
}

.dvah-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--dvah-primary-700);
}

.dvah-benefit svg {
    color: var(--dvah-primary);
    flex-shrink: 0;
}

.dvah-register-form {
    background: var(--dvah-white);
    border: 1px solid var(--dvah-border);
    border-radius: var(--dvah-radius-lg);
    padding: 32px;
}

.dvah-register-form .dvah-form-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--dvah-border);
}

.dvah-register-form .dvah-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.dvah-register-form .dvah-form-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dvah-text);
    margin: 0 0 16px;
}

.dvah-register-form .dvah-form-section h3 svg {
    color: var(--dvah-primary);
}

.dvah-section-hint {
    font-size: 0.875rem;
    color: var(--dvah-text-light);
    margin: -8px 0 16px;
}

.dvah-checkbox-terms {
    margin-top: 8px;
}

.dvah-checkbox-terms .dvah-checkbox-label {
    font-size: 0.9rem;
}

.dvah-checkbox-terms .dvah-checkbox-label a {
    color: var(--dvah-primary);
}

.dvah-form-actions {
    margin-top: 24px;
}

.dvah-btn-large {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.dvah-register-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--dvah-border);
}

.dvah-register-footer p {
    margin: 0;
    color: var(--dvah-text-light);
}

.dvah-register-footer a {
    color: var(--dvah-primary);
    font-weight: 500;
}

/* Already Logged In State */
.dvah-already-logged-in {
    text-align: center;
    padding: 48px 24px;
    background: var(--dvah-white, #fff);
    border: 1px solid var(--dvah-border, #e5e7eb);
    border-radius: var(--dvah-radius-lg, 12px);
}

.dvah-logged-in-icon {
    margin-bottom: 20px;
    color: var(--dvah-primary, #0073aa);
}

.dvah-already-logged-in h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dvah-text, #333);
    margin: 0 0 12px;
}

.dvah-already-logged-in p {
    color: var(--dvah-text-light, #666);
    margin: 0 0 24px;
    font-size: 1rem;
}

.dvah-logged-in-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.dvah-logged-in-actions .dvah-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--dvah-radius-md, 8px);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dvah-logged-in-actions .dvah-btn-primary {
    background: var(--dvah-primary, #0073aa);
    color: #fff;
}

.dvah-logged-in-actions .dvah-btn-primary:hover {
    background: var(--dvah-primary-hover, #005a87);
}

.dvah-logged-in-actions .dvah-btn-secondary {
    background: var(--dvah-bg-light, #f5f5f5);
    color: var(--dvah-text, #333);
}

.dvah-logged-in-actions .dvah-btn-secondary:hover {
    background: #e5e5e5;
}

/* Registration Form Button - Override theme styles */
.dvah-register-form .dvah-form-actions {
    margin-top: 24px;
    padding: 0;
    background: transparent;
}

.dvah-register-form #dvah-register-submit,
.dvah-register-container .dvah-btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 16px 28px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    background: var(--dvah-primary) !important;
    background-color: #0073aa !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--dvah-radius-md) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.3) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.dvah-register-form #dvah-register-submit:hover,
.dvah-register-container .dvah-btn-primary:hover {
    background: var(--dvah-primary-hover) !important;
    background-color: #005a87 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.4) !important;
}

.dvah-register-form #dvah-register-submit:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.dvah-register-form #dvah-register-submit svg {
    width: 20px !important;
    height: 20px !important;
    stroke: currentColor !important;
    flex-shrink: 0 !important;
}

/* Registration Success */
.dvah-register-success {
    text-align: center;
    padding: 48px 24px;
    background: var(--dvah-white);
    border: 1px solid var(--dvah-border);
    border-radius: var(--dvah-radius-lg);
}

.dvah-success-icon {
    margin-bottom: 24px;
}

.dvah-success-icon svg {
    color: var(--dvah-success);
}

.dvah-register-success h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dvah-text);
    margin: 0 0 12px;
}

.dvah-register-success p {
    color: var(--dvah-text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .dvah-register-form {
        padding: 24px 20px;
    }

    .dvah-register-benefits {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .dvah-register-header h1 {
        font-size: 1.75rem;
    }
}

/* Kadence theme button override for registration */
body .dvah-register-form button.dvah-btn,
body .dvah-register-form button.dvah-btn-primary,
body .dvah-register-form button#dvah-register-submit,
.kadence-theme .dvah-register-form button,
.kadence-theme .dvah-register-form .dvah-btn-primary,
.wp-site-blocks .dvah-register-form button,
.entry-content .dvah-register-form button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 56px !important;
    padding: 16px 28px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    font-family: inherit !important;
    background: #0073aa !important;
    background-color: #0073aa !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.3) !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.4 !important;
}

body .dvah-register-form button:hover,
body .dvah-register-form button#dvah-register-submit:hover,
.kadence-theme .dvah-register-form button:hover {
    background: #005a87 !important;
    background-color: #005a87 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

/* ===================================
   Notifications Panel
   =================================== */

.dvah-notifications-panel {
    background: var(--dvah-white, #fff);
    border: 1px solid var(--dvah-border, #e5e5e5);
    border-radius: var(--dvah-radius-lg, 12px);
    margin-bottom: 24px;
    overflow: hidden;
}

.dvah-notifications-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--dvah-border, #e5e5e5);
    background: var(--dvah-bg, #f9fafb);
}

.dvah-notifications-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dvah-notifications-title svg {
    color: var(--dvah-primary, #0073aa);
}

.dvah-notifications-title h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dvah-text, #333);
}

.dvah-notification-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: var(--dvah-primary, #0073aa);
    border-radius: 10px;
}

.dvah-notifications-view-all {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--dvah-primary, #0073aa);
    text-decoration: none;
    transition: color 0.2s;
}

.dvah-notifications-view-all:hover {
    color: var(--dvah-primary-hover, #005a87);
}

.dvah-notifications-list {
    display: flex;
    flex-direction: column;
}

.dvah-notification-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--dvah-border, #e5e5e5);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
    position: relative;
}

.dvah-notification-card:last-child {
    border-bottom: none;
}

.dvah-notification-card:hover {
    background: var(--dvah-bg, #f9fafb);
}

.dvah-notification-card.dvah-notification-new {
    background: #f0f7ff;
}

.dvah-notification-card.dvah-notification-new:hover {
    background: #e5f0ff;
}

.dvah-new-badge {
    position: absolute;
    top: 12px;
    right: 48px;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: var(--dvah-primary, #0073aa);
    border-radius: 4px;
}

.dvah-notification-content {
    flex: 1;
    min-width: 0;
}

.dvah-notification-content h4 {
    margin: 0 0 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dvah-text, #333);
}

.dvah-notification-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 0 0 8px;
    font-size: 0.8rem;
    color: var(--dvah-text-light, #666);
}

.dvah-notification-location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dvah-notification-location svg {
    flex-shrink: 0;
}

.dvah-notification-excerpt {
    margin: 0;
    font-size: 0.85rem;
    color: var(--dvah-text-light, #666);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dvah-notification-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dvah-text-light, #666);
}

/* Responsive */
@media (max-width: 640px) {
    .dvah-notifications-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .dvah-notification-card {
        padding: 14px 16px;
    }

    .dvah-new-badge {
        top: 10px;
        right: 36px;
    }

    .dvah-notification-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
