/**
 * Vakwerkgevers Bedrijven Listing - Main CSS
 * Version: 1.0.0
 */

/* ============================================
   FILTER BAR
   ============================================ */

.vwg-filter-bar-container {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vwg-filter-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.vwg-filter-item {
    position: relative;
}

.vwg-filter-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
}

.vwg-filter-trigger:hover {
    background: #EBEBEB;
    border-color: #D0D0D0;
}

.vwg-filter-icon {
    display: flex;
    align-items: center;
    color: #666;
}

.vwg-filter-label {
    font-weight: 500;
    white-space: nowrap;
}

.vwg-filter-arrow {
    display: flex;
    align-items: center;
    color: #999;
    transition: transform 0.2s ease;
}

.vwg-filter-item.active .vwg-filter-arrow {
    transform: rotate(180deg);
}

.vwg-filter-popover {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: #ffffff;
    border: 1px solid #E0E0E0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 250px;
    max-width: 300px;
    display: none;
}

.vwg-filter-popover.active {
    display: block;
}

.vwg-popover-content {
    padding: 15px;
}

.vwg-popover-content h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #E0E0E0;
}

.vwg-filter-options {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.vwg-popover-actions {
    display: flex;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #E0E0E0;
}

.vwg-button {
    flex: 1;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vwg-button-secondary {
    background: #E0E0E0;
    color: #333;
}

.vwg-button-secondary:hover {
    background: #D0D0D0;
}

.vwg-button-primary {
    background: #F2A900;
    color: #000000;
}

.vwg-button-primary:hover {
    background: #D99600;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.vwg-bedrijven-listing-container {
    display: flex !important;
    gap: 30px !important;
    margin: 40px 0 !important;
    align-items: flex-start !important;
    max-width: 100% !important;
    overflow: visible !important;
}

.vwg-bedrijven-listing-left {
    flex: 1;
    min-width: 0;
    transition: opacity 0.3s ease;
}

.vwg-bedrijven-listing-right {
    flex: 1 !important;
    position: sticky !important;
    top: 20px !important;
    min-width: 0 !important;
    align-self: flex-start !important;
    height: fit-content !important;
    max-height: calc(100vh - 40px) !important;
}

/* ============================================
   MOBILE MAP CONTAINER
   ============================================ */

#mobile-map-container {
    display: none;
}

#desktop-map-container {
    display: block;
}

/* ============================================
   BEDRIJF CARD
   ============================================ */

.vwg-bedrijf-card {
    background: #1a1a1a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    padding: 0 0 20px 0;
    margin-bottom: 20px;
    margin-top: 20px;
    position: relative;
    overflow: visible;
}

/* Top Badges */
.vwg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vwg-badge-vacatures {
    background: #00B67A;
    color: #000000;
    position: absolute;
    top: -18px;
    right: 20px;
    z-index: 10;
    margin-bottom: 10px !important;
    border-radius: 0 !important;
    font-weight: 900;
}

.vwg-badge-vacatures i {
    color: #000000;
}

.vwg-badge-distance {
    background: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    padding: 8px 16px;
}

.vwg-badge-distance i {
    color: #F2A900;
    font-size: 14px;
}

/* Card Header */
.vwg-card-header {
    display: flex;
    gap: 20px;
    padding: 20px 20px 16px;
    align-items: center;
}

.vwg-card-logo {
    flex-shrink: 0;
    width: 140px;
    background: #FFFFFF;
    padding: 22px 10px;
    display: flex;
    margin-top: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.vwg-card-logo img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 100px;
    object-fit: contain;
}

.vwg-card-logo.vwg-unclaimed {
    position: relative;
    background: rgba(50, 50, 50, 0.8);
    border: 2px dashed #D4A91E;
}

.vwg-card-logo.vwg-unclaimed img {
    opacity: 0.9;
    max-height: 70px !important;
    max-width: 70px !important;
}

.vwg-claim-text {
    display: block;
    font-size: 7px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 4px;
    padding: 4px 10px;
    background: transparent;
    border-radius: 4px;
    line-height: 1.2;
}

.vwg-card-logo-tagline {
    margin-top: 8px;
    font-size: 11px;
    color: #4A90E2;
    text-align: center;
    font-style: italic;
}

.vwg-card-header-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vwg-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0;
}

.vwg-card-title-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vwg-card-title {
    margin: 0 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}

.vwg-verified-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.vwg-verified-icon {
    color: #4A90E2;
    font-size: 16px;
}

.vwg-verified-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    z-index: 1000;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}

.vwg-verified-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.vwg-verified-wrapper:hover .vwg-verified-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Mobile: Show tooltip on click/touch */
@media (max-width: 768px) {
    .vwg-verified-wrapper.active .vwg-verified-tooltip {
        visibility: visible;
        opacity: 1;
    }
}

.vwg-bookmark-icon {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    cursor: pointer;
}

.vwg-bookmark-icon.saved {
    color: #F2A900;
}

.vwg-bookmark-icon:hover {
    color: #F2A900;
}

.vwg-bookmark-icon.disabled {
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

.vwg-contact-icon {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    cursor: pointer;
}

.vwg-contact-icon:hover {
    color: #F2A900;
}

/* Branche */
.vwg-card-branche {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.vwg-card-branche strong {
    color: #ffffff;
}

.vwg-ook-werkzaam {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

/* Location */
.vwg-card-location {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Meta Grid */
.vwg-card-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 16px;
    margin-top: 8px;
}

.vwg-card-meta-grid .vwg-meta-item {
    font-size: 12px;
}

.vwg-card-meta-grid .vwg-meta-item i {
    font-size: 12px;
    width: 16px;
}

.vwg-meta-vacatures {
    color: #C45C3E !important;
}

.vwg-meta-vacatures i {
    color: #C45C3E !important;
}

.vwg-card-distance {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #F2A900;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.vwg-card-distance i {
    font-size: 12px;
    color: #FFFFFF;
}

.vwg-card-reference {
    margin: 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Vakgebieden */
.vwg-card-vakgebieden {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.vwg-card-vakgebieden i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Meta Info */
.vwg-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vwg-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.vwg-meta-item i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Description */
.vwg-card-description {
    padding: 0 20px 20px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

/* Action Pills */
.vwg-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px 20px;
}

.vwg-action-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #87C6D7;
    border: none;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: #000000 !important;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vwg-action-pill:hover {
    background: #6FB5C8;
    color: #000000 !important;
    transform: translateY(-1px);
}

.vwg-action-pill:visited {
    color: #000000 !important;
}

.vwg-action-pill i {
    font-size: 10px;
    color: #000000 !important;
}

.vwg-action-pill.disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.vwg-action-pill.disabled:hover {
    transform: none;
    background: #ccc;
}

/* CTA Button */
.vwg-cta-button {
    display: block;
    width: calc(100% - 40px);
    padding: 12px;
    margin: 0 20px;
    background: #F2A900;
    border: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vwg-cta-button:hover {
    background: #D99600;
}

/* ============================================
   OFF-CANVAS
   ============================================ */

.vwg-offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.vwg-offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.vwg-offcanvas {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.vwg-offcanvas.active {
    right: 0;
}

.vwg-offcanvas-container {
    position: relative;
    min-height: 100%;
}

/* Back and Close Buttons */
.vwg-offcanvas-back {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #F2A900;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000000;
}

.vwg-offcanvas-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    color: #666;
}

/* Header Section */
.vwg-offcanvas-header {
    padding: 80px 30px 20px;
    background: #ffffff;
}

.vwg-offcanvas-badges {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.vwg-offcanvas-main {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.vwg-offcanvas-logo {
    flex-shrink: 0;
    width: 120px;
}

.vwg-offcanvas-logo img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #e0e0e0;
}

.vwg-offcanvas-logo-tagline {
    text-align: center;
    font-size: 11px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

.vwg-offcanvas-info {
    flex: 1;
    min-width: 0;
}

.vwg-offcanvas-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.vwg-offcanvas-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
}

.vwg-offcanvas-reference {
    margin: 0 0 12px 0;
    font-size: 11px;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.vwg-offcanvas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.vwg-offcanvas-meta {
    display: flex;
    gap: 16px;
}

.vwg-offcanvas-actions-right {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.vwg-action-link {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000000;
    cursor: pointer;
    text-transform: uppercase;
}

.vwg-action-link i {
    font-size: 14px;
}

.vwg-offcanvas-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vwg-offcanvas-content {
    padding: 0px;
}

.vwg-offcanvas-header {
    margin-bottom: 30px;
}

.vwg-offcanvas-header-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.vwg-offcanvas-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    color: #666;
}

.vwg-offcanvas-header-main {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.vwg-offcanvas-logo {
    flex-shrink: 0;
    width: 120px;
}

.vwg-offcanvas-logo img {
    width: 100%;
    height: auto;
}

.vwg-offcanvas-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.vwg-offcanvas-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.vwg-offcanvas-tagline {
    font-size: 14px;
    color: #666;
    margin: 4px 0 8px;
}

.vwg-offcanvas-reference {
    font-size: 12px;
    color: #666;
    margin: 0 0 8px 0;
}

.vwg-offcanvas-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #666;
}

.vwg-offcanvas-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vwg-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vwg-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vwg-button-secondary {
    background: #B8E6F0;
    color: #000000;
    border: none;
}

.vwg-button-secondary:hover {
    background: #9DD8E5;
}

.vwg-share-download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.vwg-social-share {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vwg-share-label {
    font-size: 13px;
    font-weight: 600;
}

.vwg-social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.vwg-social-button:hover {
    background: #e0e0e0;
}

.vwg-download-print {
    display: flex;
    gap: 10px;
}

/* Tabs Navigation */
.vwg-tabs-navigation {
    background: #F2A900;
    display: flex;
    overflow-x: auto;
    flex-shrink: 0;
}

.vwg-tabs-navigation .vwg-tab-button {
    padding: 15px 20px;
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    position: relative;
}

.vwg-tabs-navigation .vwg-tab-button:hover {
    background: rgba(0, 0, 0, 0.05);
}

.vwg-tabs-navigation .vwg-tab-button.active {
    background: #D99600;
}

/* Tabs Content */
.vwg-tabs-content {
    flex: 1;
    overflow-y: auto;
}

.vwg-tab-pane {
    display: none;
    padding: 30px;
}

.vwg-tab-pane.active {
    display: block;
}

.vwg-tab-pane h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 700;
}

.vwg-tab-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.vwg-bedrijf-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.vwg-bedrijf-location h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

/* Werklocaties & Projecten Grid */
.vwg-werklocaties-grid,
.vwg-projecten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.vwg-werklocatie-item,
.vwg-project-item {
    position: relative;
    overflow: hidden;
}

.vwg-werklocatie-image,
.vwg-project-image {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.vwg-werklocatie-image img,
.vwg-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vwg-werklocatie-overlay,
.vwg-project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Vakgebieden Styling */
.vwg-vakgebieden-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vwg-vakgebied-block {
    background: #ffffff;
}

.vwg-vakgebied-header {
    background: #F2A900;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.vwg-vakgebied-header i {
    font-size: 16px;
}

.vwg-vakgebied-header strong {
    font-weight: 700;
}

.vwg-specialiteiten {
    background: #f5f5f5;
    padding: 15px;
}

.vwg-specialiteiten strong {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
}

.vwg-specialiteiten ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vwg-specialiteiten li {
    padding: 5px 0;
    font-size: 13px;
    color: #333;
}

/* Functies Styling */
.vwg-functies-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vwg-functie-item {
    background: #F2A900;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.vwg-functie-item i {
    font-size: 16px;
}

.vwg-functie-item strong {
    font-weight: 700;
}

/* Vacatures Styling */
.vwg-vacatures-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.vwg-vacature-item {
    background: #F2A900;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vwg-vacature-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    flex: 1;
}

.vwg-vacature-header i {
    font-size: 16px;
}

.vwg-vacature-header strong {
    font-weight: 700;
}

.vwg-vacature-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.vwg-vacature-link:hover {
    opacity: 0.8;
}

/* Footer */
.vwg-offcanvas-footer {
    background: #f5f5f5;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.vwg-offcanvas-footer p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #333;
}

.vwg-footer-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.vwg-footer-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease;
}

.vwg-footer-icon:hover {
    background: #e0e0e0;
}

.vwg-footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.vwg-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.2s ease;
}

.vwg-social-facebook {
    background: #1877F2;
}

.vwg-social-facebook:hover {
    background: #145DBF;
}

.vwg-social-twitter {
    background: #1DA1F2;
}

.vwg-social-twitter:hover {
    background: #1A8CD8;
}

.vwg-social-linkedin {
    background: #0A66C2;
}

.vwg-social-linkedin:hover {
    background: #004182;
}

.vwg-social-reddit {
    background: #FF4500;
}

.vwg-social-reddit:hover {
    background: #E03D00;
}

.vwg-social-whatsapp {
    background: #25D366;
}

.vwg-social-whatsapp:hover {
    background: #1EBD55;
}

.vwg-footer-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.vwg-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #000000;
    border: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vwg-footer-btn:hover {
    background: #333333;
}

.vwg-button-primary {
    background: #F2A900;
    color: #000000;
    border: none;
}

.vwg-button-primary:hover {
    background: #D99600;
}

/* ============================================
   LOADING & NO RESULTS
   ============================================ */

.vwg-loading {
    text-align: center;
    padding: 60px 20px;
}

.vwg-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #F2A900;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

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

.vwg-loading-text {
    font-size: 14px;
    color: #666;
}

.vwg-no-results {
    background: #FFFFFF;
    text-align: center;
    padding: 60px 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.vwg-no-results-icon {
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vwg-no-results h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 16px 0;
}

.vwg-no-results p {
    font-size: 16px;
    color: #666;
    margin: 0 0 16px 0;
    line-height: 1.6;
}

.vwg-no-results-suggestions {
    background: #F5F5F5;
    padding: 20px;
    text-align: center;
    max-width: 500px;
    margin: 24px auto;
    font-size: 14px;
    line-height: 1.8;
}

.vwg-no-results-suggestions strong {
    color: #000000;
    font-size: 15px;
    display: block;
    margin-bottom: 8px;
}

.vwg-no-results .vwg-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    margin-top: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

/* Filter Options */
.vwg-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.vwg-filter-option:hover {
    background: #f5f5f5;
}

.vwg-filter-option input[type="radio"] {
    margin: 0;
    cursor: pointer;
}

.vwg-filter-option span {
    font-size: 14px;
    color: #333;
}

/* ============================================
   GOOGLE MAPS
   ============================================ */

#vwg-bedrijven-map {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.vwg-map-info-window {
    padding: 12px;
    min-width: 200px;
}

.vwg-map-info-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.vwg-map-info-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.vwg-map-info-link {
    display: inline-block;
    padding: 8px 16px;
    background: #F2A900;
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   SHARE POPUP
   ============================================ */

.vwg-share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.vwg-share-overlay.active {
    opacity: 1;
    visibility: visible;
}

.vwg-share-popup {
    background: #FFFFFF;
    border-radius: 0;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.vwg-share-overlay.active .vwg-share-popup {
    transform: scale(1);
}

.vwg-share-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all 0.2s ease;
}

.vwg-share-close:hover {
    background: #F5F5F5;
    color: #000;
}

.vwg-share-popup h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-align: center;
}

.vwg-share-subtitle {
    margin: 0 0 30px 0;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.vwg-share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.vwg-share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
    background: #F5F5F5;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.vwg-share-option:hover {
    background: #FFFFFF;
    border-color: #F2A900;
    transform: translateY(-2px);
}

.vwg-share-option i {
    font-size: 28px;
    color: #F2A900;
}

.vwg-share-link {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: #F5F5F5;
    border-radius: 0;
}

.vwg-share-link-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 0;
    font-size: 13px;
    color: #333;
    background: #FFFFFF;
}

.vwg-copy-link {
    padding: 10px 20px;
    background: #F2A900;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.vwg-copy-link:hover {
    background: #D99600;
}

.vwg-copy-link i {
    margin-right: 5px;
}

/* Mobile share popup */
@media (max-width: 768px) {
    .vwg-share-popup {
        padding: 24px 20px;
        width: calc(100% - 40px);
        max-width: none;
        margin: 20px;
    }

    .vwg-share-popup h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .vwg-share-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .vwg-share-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }

    .vwg-share-option {
        padding: 16px 10px;
        gap: 8px;
        font-size: 12px;
    }

    .vwg-share-option i {
        font-size: 24px;
    }

    .vwg-share-link {
        flex-direction: column;
        padding: 16px;
        gap: 12px;
    }

    .vwg-share-link-input {
        width: 100%;
        font-size: 12px;
        padding: 10px 12px;
    }

    .vwg-copy-link {
        width: 100%;
        padding: 12px 20px;
        font-size: 12px;
    }

    .vwg-share-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .vwg-bedrijven-listing-container {
        flex-direction: column;
    }

    .vwg-bedrijven-listing-right {
        position: relative;
        top: 0;
    }

    .vwg-offcanvas {
        width: 70%;
        right: -70%;
    }
}

@media (max-width: 768px) {
    .vwg-bedrijven-listing-left {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .vwg-card-header {
        flex-direction: row;
        gap: 16px;
    }

    .vwg-card-logo {
        width: 120px;
        height: 110px;
        padding: 16px;
    }

    .vwg-card-meta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px 16px;
    }

    .vwg-card-actions {
        gap: 8px;
    }

    .vwg-action-pill {
        font-size: 10px;
        padding: 3px 8px;
    }

    .vwg-card-branche {
        font-size: 13px;
    }

    .vwg-card-vakgebieden {
        font-size: 12px;
    }

    .vwg-offcanvas {
        width: 90%;
        right: -90%;
    }

    .vwg-tabs-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .vwg-bedrijven-listing-container {
        margin: 20px 0;
    }

    /* Mobile Map */
    #desktop-map-container {
        display: none !important;
    }

    #mobile-map-container {
        display: none;
        margin: 20px 0;
        padding: 0;
        position: relative;
        top: 0;
    }

    #mobile-map-container.show-mobile {
        display: block !important;
    }

    #vwg-bedrijven-map-mobile {
        height: 400px !important;
    }

    .vwg-bedrijf-card {
        margin-bottom: 16px;
        width: 100%;
        max-width: 100%;
    }

    .vwg-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 16px 16px;
    }

    .vwg-card-logo {
        width: 140px;
        height: 130px;
        padding: 16px;
        margin-top: 0;
    }

    .vwg-card-logo img {
        max-height: 76px;
    }

    .vwg-card-header-right {
        flex: 1;
        min-width: 0;
        width: 100%;
    }

    .vwg-card-title-row {
        flex-wrap: wrap;
    }

    .vwg-card-title {
        font-size: 16px !important;
    }

    .vwg-card-distance {
        font-size: 11px;
        padding: 4px 10px;
    }

    .vwg-card-reference {
        font-size: 10px;
    }

    .vwg-card-vakgebieden {
        font-size: 12px;
    }

    .vwg-card-meta {
        font-size: 12px;
    }

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

    .vwg-card-description {
        padding: 0 16px 16px;
        font-size: 11px;
    }

    .vwg-card-actions {
        padding: 0 16px 16px;
        gap: 8px;
    }

    .vwg-action-pill {
        font-size: 0;
        padding: 10px;
        width: 40px;
        height: 40px;
        justify-content: center;
    }

    .vwg-action-pill i {
        font-size: 16px !important;
    }

    .vwg-cta-button {
        width: calc(100% - 32px);
        margin: 0 16px;
        padding: 10px;
        font-size: 12px;
    }

    .vwg-badge-vacatures {
        right: 16px;
        font-size: 10px;
        padding: 6px 12px;
    }

    .vwg-badge-distance {
        top: 16px;
        right: 16px;
        font-size: 10px;
        padding: 6px 12px;
    }

    .vwg-card-meta-grid {
        grid-template-columns: 1fr;
        gap: 4px;
        margin-top: 8px;
    }

    .vwg-meta-item {
        font-size: 11px;
        gap: 6px;
    }

    .vwg-meta-item i {
        width: 14px;
        font-size: 11px !important;
    }

    .vwg-card-branche {
        font-size: 11px;
        margin-top: 4px;
    }

    .vwg-card-vakgebieden {
        font-size: 10px;
        margin-top: 2px;
    }

    .vwg-ook-werkzaam {
        font-size: 10px;
    }

    .vwg-card-location {
        font-size: 11px;
    }

    .vwg-claim-text {
        font-size: 7px;
    }

    .vwg-card-logo.unclaimed {
        width: 90px;
        height: 85px;
        padding: 10px;
    }

    .vwg-card-logo.unclaimed img {
        max-height: 50px !important;
        max-width: 50px !important;
    }

    .vwg-offcanvas {
        width: 100%;
        right: -100%;
    }

    .vwg-offcanvas-content {
        padding: 20px;
    }
}

/* ============================================
   LOAD MORE BUTTON STYLING
   ============================================ */

.vwg-load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    margin-top: 20px;
}

.vwg-load-more-btn {
    background: #F2A900;
    color: #000000;
    border: none;
    padding: 16px 40px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.vwg-load-more-btn:hover {
    background: #D99600;
    color: #000000;
}

.vwg-load-more-btn:disabled {
    background: #CCCCCC;
    color: #666666;
    cursor: not-allowed;
}

.vwg-load-more-btn:disabled:hover {
    background: #CCCCCC;
    color: #666666;
}

/* Spinner for loading state */
.vwg-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: vwg-spin 0.8s linear infinite;
}

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

/* Mobile responsive */
@media (max-width: 768px) {
    .vwg-load-more-container {
        padding: 30px 16px;
    }

    .vwg-load-more-btn {
        padding: 14px 32px;
        font-size: 15px;
    }
}

/* ============================================
   LOGIN GATE - BLURRED MAP & DISABLED INTERACTIONS
   ============================================ */

/* Map blur overlay for non-logged-in users */
.vwg-map-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vwg-map-blur-container {
    position: relative;
}

.vwg-map-blur-container #vwg-bedrijven-map,
.vwg-map-blur-container #vwg-bedrijven-map-mobile {
    filter: blur(4px);
}

/* Login form popup overlay */
.vwg-login-popup {
    background: #FFFFFF;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 101;
}

.vwg-login-popup h3 {
    margin: 0 0 16px 0;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
}

.vwg-login-popup p {
    margin: 0 0 24px 0;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.vwg-login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.vwg-login-input-group {
    display: flex;
    align-items: center;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    padding: 12px 16px;
    gap: 12px;
}

.vwg-login-input-group i {
    color: #666;
    font-size: 18px;
}

.vwg-login-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #333;
}

.vwg-login-input::placeholder {
    color: #999;
}

.vwg-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vwg-login-btn {
    padding: 16px 24px;
    border: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.vwg-login-btn-primary {
    background: #F2A900;
    color: #000000;
}

.vwg-login-btn-primary:hover {
    background: #D99600;
}

.vwg-login-btn-secondary {
    background: #87C6D7;
    color: #000000;
}

.vwg-login-btn-secondary:hover {
    background: #6FB5C8;
}

/* Disabled/non-clickable company info for non-logged users */
.vwg-bedrijf-card.login-required .vwg-card-title {
    cursor: default !important;
    pointer-events: none;
}

.vwg-bedrijf-card.login-required .vwg-action-pill {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.vwg-bedrijf-card.login-required .vwg-cta-button {
    background: #87C6D7;
    color: #000000 !important;
}

.vwg-bedrijf-card.login-required .vwg-cta-button:hover {
    background: #6FB5C8;
    color: #000000 !important;
}

@media (max-width: 768px) {
    .vwg-login-popup {
        padding: 32px 24px;
        width: calc(100% - 40px);
        max-width: none;
        margin: 20px;
    }

    .vwg-login-popup h3 {
        font-size: 22px;
    }

    .vwg-login-popup p {
        font-size: 14px;
    }

    .vwg-login-input-group {
        padding: 12px 14px;
    }

    .vwg-login-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* ============================================
   BEDRIJVEN COUNTER
   ============================================ */

.vwg-bedrijven-counter {
    display: inline-block;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    transition: transform 0.2s ease;
}

/* ============================================
   BOOKMARK NOTIFICATION
   ============================================ */

.vwg-bookmark-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #FFFFFF;
    color: #333333;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 99999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.vwg-bookmark-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.vwg-bookmark-notification.error {
    background: #FEE;
    color: #C00;
}

.vwg-bookmark-notification i {
    font-size: 18px;
    color: #F2A900;
}

.vwg-bookmark-notification.error i {
    color: #C00;
}

.vwg-bookmark-notification span {
    font-size: 14px;
    font-weight: 500;
}

/* Bookmark icon styling */
.vwg-bookmark-icon {
    font-size: 20px;
    color: #F2A900;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 10px;
}

.vwg-bookmark-icon:hover:not(.disabled) {
    transform: scale(1.1);
}

.vwg-bookmark-icon.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.vwg-bookmark-icon.saved {
    color: #F2A900;
}

@media (max-width: 768px) {
    .vwg-bookmark-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }

    .vwg-bookmark-notification.show {
        transform: translateY(0);
    }
}

/* ============================================
   VACATURES LISTING
   ============================================ */

.vwg-vacatures-listing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.vwg-vacatures-filter-bar {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vwg-vacatures-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.vwg-filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vwg-filter-group label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

.vwg-filter-group input,
.vwg-filter-group select {
    padding: 10px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    min-width: 150px;
}

.vwg-filter-group input:focus,
.vwg-filter-group select:focus {
    outline: none;
    border-color: #F2A900;
}

.vwg-filter-submit {
    background: #F2A900;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.vwg-filter-submit:hover {
    background: #E09800;
}

.vwg-vacatures-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.vwg-vacatures-listing-left {
    min-width: 0;
}

.vwg-vacatures-listing-right {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.vwg-vacatures-results-header {
    margin-bottom: 20px;
}

.vwg-vacatures-results-header h2 {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.vwg-vacatures-location-info {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.vwg-vacatures-location-info i {
    color: #F2A900;
    margin-right: 5px;
}

.vwg-vacatures-cards-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ============================================
   VACATURES CARD
   ============================================ */

.vwg-vacature-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.vwg-vacature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.vwg-vacature-card .vwg-badge-distance {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #F2A900;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.vwg-vacature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.vwg-vacature-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vwg-vacature-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vwg-vacature-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
}

.vwg-vacature-bedrijf-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vwg-vacature-bedrijf-naam {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.vwg-vacature-bedrijf-naam .vwg-verified-icon {
    color: #4CAF50;
    margin-left: 5px;
    font-size: 12px;
}

.vwg-vacature-bedrijf-plaats {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.vwg-vacature-bedrijf-plaats i {
    color: #F2A900;
    margin-right: 3px;
}

.vwg-vacature-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.vwg-vacature-location {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.vwg-vacature-location i {
    color: #F2A900;
    margin-right: 5px;
}

.vwg-vacature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.vwg-vacature-tag {
    background: rgba(242, 169, 0, 0.2);
    color: #F2A900;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.vwg-vacature-tag-more {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.vwg-vacature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.vwg-vacature-meta-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 5px;
}

.vwg-vacature-meta-item i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.vwg-vacature-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 15px;
}

.vwg-vacature-cta {
    width: 100%;
    background: #F2A900;
    color: #1a1a1a;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vwg-vacature-cta:hover {
    background: #E09800;
}

/* Load more button for vacatures */
.vwg-load-more-vacatures {
    width: 100%;
    background: #ffffff;
    color: #333;
    border: 2px solid #F2A900;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 20px;
}

.vwg-load-more-vacatures:hover {
    background: #F2A900;
    color: #ffffff;
}

/* ============================================
   VACATURES RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .vwg-vacatures-content {
        grid-template-columns: 1fr;
    }

    .vwg-vacatures-listing-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .vwg-vacatures-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .vwg-filter-group {
        width: 100%;
    }

    .vwg-filter-group input,
    .vwg-filter-group select {
        width: 100%;
    }

    .vwg-filter-submit {
        width: 100%;
        justify-content: center;
    }

    .vwg-vacature-card {
        padding: 15px;
    }

    .vwg-vacature-title {
        font-size: 16px;
        padding-right: 60px;
    }

    .vwg-vacature-meta {
        gap: 10px;
    }

    .vwg-vacature-meta-item {
        font-size: 12px;
    }
}

/* ============================================
   LOGIN OVERLAY (for non-logged in users)
   ============================================ */

.vwg-login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.vwg-login-overlay.active {
    opacity: 1;
    visibility: visible;
}

.vwg-login-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vwg-login-modal {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    animation: vwgModalSlideUp 0.4s ease forwards;
}

@keyframes vwgModalSlideUp {
    to {
        transform: translateY(0);
    }
}

.vwg-login-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #F2A900 0%, #e69900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(242, 169, 0, 0.3);
}

.vwg-login-modal-icon i {
    font-size: 32px;
    color: #ffffff;
}

.vwg-login-modal-title {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.vwg-login-modal-text {
    margin: 0 0 28px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

.vwg-login-modal-benefits {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 28px;
    text-align: left;
}

.vwg-login-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.vwg-login-benefit:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 12px;
    margin-bottom: 4px;
}

.vwg-login-benefit i {
    color: #28a745;
    font-size: 16px;
    flex-shrink: 0;
}

.vwg-login-benefit span {
    font-size: 14px;
    color: #333333;
}

.vwg-login-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vwg-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.vwg-login-btn-primary {
    background: linear-gradient(135deg, #F2A900 0%, #e69900 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(242, 169, 0, 0.3);
}

.vwg-login-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 169, 0, 0.4);
    color: #ffffff !important;
}

.vwg-login-btn-primary i {
    color: #ffffff !important;
}

.vwg-login-btn-secondary {
    background: #ffffff;
    color: #333333;
    border: 2px solid #e0e0e0;
}

.vwg-login-btn-secondary:hover {
    border-color: #F2A900;
    color: #F2A900;
    background: #fff8e6;
}

.vwg-login-btn i {
    font-size: 16px;
}

.vwg-login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vwg-login-modal-close:hover {
    background: #e0e0e0;
}

.vwg-login-modal-close i {
    font-size: 14px;
    color: #666666;
}

/* Mobile responsiveness for login overlay */
@media (max-width: 480px) {
    .vwg-login-modal {
        padding: 30px 24px;
        margin: 20px;
    }

    .vwg-login-modal-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .vwg-login-modal-icon i {
        font-size: 26px;
    }

    .vwg-login-modal-title {
        font-size: 20px;
    }

    .vwg-login-modal-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .vwg-login-modal-benefits {
        padding: 16px;
        margin-bottom: 24px;
    }

    .vwg-login-benefit span {
        font-size: 13px;
    }

    .vwg-login-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ============================================
   PAGE-WIDE LOGIN OVERLAY (for listing pages)
   ============================================ */

.vwg-page-login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.vwg-page-login-overlay.modal-active {
    opacity: 1;
    visibility: visible;
}

.vwg-page-login-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
}

/* Blurred text for non-logged in users */
.vwg-blurred {
    filter: blur(6px);
    -webkit-filter: blur(6px);
    user-select: none;
    pointer-events: none;
}

.vwg-page-login-modal {
    position: relative;
    background: rgba(30, 30, 30, 0.95);
    border-radius: 0;
    padding: 48px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    transform: translateY(30px) scale(0.95);
    animation: vwgPageModalSlideUp 0.5s ease forwards;
}

@keyframes vwgPageModalSlideUp {
    to {
        transform: translateY(0) scale(1);
    }
}

.vwg-page-login-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #F2A900 0%, #e09800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(242, 169, 0, 0.3);
}

.vwg-page-login-icon i {
    font-size: 32px;
    color: #ffffff;
}

.vwg-page-login-title {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.vwg-page-login-count {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #F2A900;
    text-align: center;
}

.vwg-page-login-text {
    margin: 0 0 28px 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.vwg-page-login-benefits {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    margin-bottom: 28px;
    text-align: left;
}

.vwg-page-login-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}

.vwg-page-login-benefit i {
    color: #28a745;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vwg-page-login-benefit span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.vwg-page-login-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vwg-page-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.vwg-page-login-btn-primary {
    background: linear-gradient(135deg, #F2A900 0%, #e09800 100%);
    color: #1a1a1a !important;
    box-shadow: 0 6px 20px rgba(242, 169, 0, 0.35);
}

.vwg-page-login-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(242, 169, 0, 0.45);
    color: #1a1a1a !important;
}

.vwg-page-login-btn-primary i {
    color: #1a1a1a !important;
}

.vwg-page-login-btn-secondary {
    background: #ffffff;
    color: #1a1a1a !important;
    border: 2px solid #ffffff;
}

.vwg-page-login-btn-secondary:hover {
    border-color: #F2A900;
    color: #1a1a1a !important;
    background: #F2A900;
}

.vwg-page-login-btn i {
    font-size: 18px;
}

.vwg-page-login-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.vwg-page-login-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.vwg-page-login-close i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile responsiveness for page login overlay */
@media (max-width: 480px) {
    .vwg-page-login-modal {
        padding: 36px 24px;
        margin: 20px;
        border-radius: 0;
    }

    .vwg-page-login-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 24px;
    }

    .vwg-page-login-icon i {
        font-size: 30px;
    }

    .vwg-page-login-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .vwg-page-login-count {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .vwg-page-login-text {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .vwg-page-login-benefits {
        padding: 18px;
        margin-bottom: 28px;
    }

    .vwg-page-login-benefit span {
        font-size: 14px;
    }

    .vwg-page-login-btn {
        padding: 14px 22px;
        font-size: 15px;
    }
}
