/**
 * Vendor Consultation Styles
 * 
 * Styles for the online consultation vendor directory
 */

/* Container */
.vendor-consultation-container {
    padding: 20px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Hide Elementor page title widget on vendor consultation pages */
.vendor-consultation-container .elementor-widget-thim-ekits-page-title {
    display: none !important;
}

/* Alternative: Hide any Elementor page title widget */
.elementor-widget-thim-ekits-page-title {
    display: none !important;
}

/* Hide Elementor breadcrumb widget on vendor consultation pages */
.vendor-consultation-container .elementor-widget-thim-ekits-breadcrumb {
    display: none !important;
}

/* Alternative: Hide any Elementor breadcrumb widget */
.elementor-widget-thim-ekits-breadcrumb {
    display: none !important;
}

/* Hide specific Elementor containers that contain breadcrumb and page title */
.vendor-consultation-container .elementor-element-417ece3,
.vendor-consultation-container .elementor-element-1854b80 {
    display: none !important;
}

/* Alternative: Hide specific Elementor containers globally */
.elementor-element-417ece3,
.elementor-element-1854b80 {
    display: none !important;
}

/* Override site content padding, margin and width for vendor consultation pages */
.business-consulting .site-content {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
}

/* Override row margin for vendor consultation pages */
.business-consulting .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Override site-main padding for vendor consultation pages */
.business-consulting .site-main {
    padding: 0 !important;
}

/* Override WordPress theme container constraints */
.vendor-consultation-container .container,
.vendor-consultation-container .site-main .container,
.vendor-consultation-container .content-area .container {
    max-width: 1600px !important;
    width: 100% !important;
}

/* Override any theme wrapper constraints */
.vendor-consultation-container .site-main,
.vendor-consultation-container .content-area {
    max-width: none !important;
    width: 100% !important;
}

.container {
    max-width: 1600px !important;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Layout */
.vendor-directory-layout {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    min-height: 600px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Sidebar */
.vendor-filters-sidebar {
    flex: 0 0 25%;
    max-width: 320px;
    min-width: 280px;
}

.filters-widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.filters-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #333;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

/* Search Section */






/* LearnPress Style Filter Form */
.vendor-filter-form {
    width: 100%;
}

.vendor-filter-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
}

.vendor-filter-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.vendor-filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.vendor-filter-content {
    width: 100%;
}

.vendor-category-parent {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vendor-filter-field {
    display: flex;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.vendor-filter-field:hover {
    color: #3498db;
}

.vendor-filter-field input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: #3498db;
    cursor: pointer;
    flex-shrink: 0;
}

.vendor-filter-field label {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
    cursor: pointer;
    margin: 0;
}

.vendor-filter-field .count {
    font-size: 12px;
    color: #6c757d;
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: auto;
    min-width: 20px;
    text-align: center;
}

/* Action Buttons */
.vendor-filter-submit,
.vendor-filter-reset {
    width: 100%;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    border: none;
}

.vendor-filter-submit {
    background: #2c3e50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vendor-filter-submit:hover {
    background: #34495e;
}

.vendor-filter-submit::after {
    content: "🔍";
    font-size: 16px;
}

.vendor-filter-reset {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.vendor-filter-reset:hover {
    background: #e74c3c;
    color: white;
}

/* Main Content */
.vendor-directory-main {
    flex: 1;
    min-width: 0;
    padding: 0 15px;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Results Header */
.vendor-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.vendor-results-count {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.vendor-results-count strong {
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .vendor-directory-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .vendor-filters-sidebar {
        width: 100%;
        order: 2;
        max-width: none;
    }
    
    .filters-widget {
        position: static;
    }
    
    .vendor-directory-main {
        width: 100%;
        order: 1;
        padding: 0 10px;
    }
    
    .vendor-results-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
}

/* Header */
.vendor-directory-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Categories */
.vendor-categories {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.vendor-categories h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-link {
    display: inline-block;
    padding: 10px 20px;
    background: #e9ecef;
    color: #495057;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-link:hover,
.category-link.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Search and Filter */
.vendor-search-filter {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.2rem;
}

.filter-options select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-options select:focus {
    outline: none;
    border-color: #007bff;
}

/* Vendor Grid */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
}

.vendor-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}


.vendor-card-header {
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.vendor-avatar {
    flex-shrink: 0;
}

.vendor-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e9ecef;
}

.vendor-info {
    flex: 1;
}

.vendor-name {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.vendor-name a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vendor-name a:hover {
    color: #007bff;
}

.vendor-category {
    color: #007bff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.vendor-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.rating-value {
    font-weight: 600;
    color: #2c3e50;
}

.vendor-card-body {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vendor-bio {
    color: #495057;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.vendor-experience,
.vendor-specialties,
.vendor-languages {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.vendor-experience strong,
.vendor-specialties strong,
.vendor-languages strong {
    color: #2c3e50;
}

.vendor-card-footer {
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.vendor-price {
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.price-value {
    font-weight: 600;
    color: #28a745;
    font-size: 1.1rem;
}

.vendor-actions {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: #007bff;
    color: white !important;
}

.btn-primary:hover {
    background: #0056b3;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white !important;
}

.btn-secondary:hover {
    background: #545b62;
    color: white !important;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* No Vendors */
.no-vendors {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.no-vendors h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.no-vendors p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

/* Vendor Profile Styles */
.vendor-profile-container {
    padding: 20px 0;
    background: white;
    min-height: 100vh;
}

.breadcrumb {
    margin-bottom: 30px;
    padding: 15px 0;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

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

.breadcrumb .separator {
    margin: 0 10px;
    color: #6c757d;
}

.breadcrumb .current {
    color: #2c3e50;
    font-weight: 500;
}

.vendor-profile-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.vendor-profile-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vendor-profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vendor-profile-header {
    padding: 30px;
    background: #1c1c1c;
    color: white;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.vendor-profile-header .vendor-experience,
.vendor-profile-header .vendor-experience strong {
    color: white;
}

.vendor-avatar-large img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.vendor-header-info {
    flex: 1;
}

.vendor-header-info .vendor-name {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: white;
}

.vendor-bio-short {
    font-size: 1.1rem;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.4;
    font-style: italic;
}

/* Service category chips */
.vendor-service-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 16px 0 24px 0;
}

.service-category-chip {
    display: inline-block;
    padding: 6px 16px;
    background: #eb1c33;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(235, 28, 51, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.service-category-chip:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(235, 28, 51, 0.3);
}

.service-category-chip.active {
    opacity: 1;
    box-shadow: 0 4px 12px rgba(235, 28, 51, 0.5);
    transform: scale(1.05);
}

/* Service Category Chips Container - Main categories horizontal */
.service-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

/* Service Subcategories Container - Appears below main categories */
.service-subcategories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0;
    margin-bottom: 12px;
    padding-left: 0;
}

/* Service Subcategory Chip - fehér háttér, piros betű */
.service-subcategory-chip {
    display: inline-block;
    padding: 4px 12px;
    background: white;
    color: #eb1c33;
    border: 1px solid #eb1c33;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-subcategory-chip:hover {
    background: #eb1c33;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(235, 28, 51, 0.3);
}

.service-subcategory-chip.selected {
    background: #eb1c33;
    color: white;
    box-shadow: 0 2px 8px rgba(235, 28, 51, 0.4);
}

.vendor-categories {
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.vendor-category-tag {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 1px 2px 1px 0;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.category-tag {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.category-separator {
    color: #6c757d;
    font-weight: normal;
}

.competencies-list, .languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.competence-type {
    margin-top: 5px;
}

.competencies-text {
    margin-top: 5px;
    color: #495057;
    line-height: 1.6;
}

.competency-tag {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
}

/* Professional Experience & Education Styling */
.professional-experience-list,
.education-data-list {
    margin-top: 10px;
}

.experience-item,
.education-data-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.experience-item:last-child,
.education-data-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.experience-header,
.education-data-header {
    margin-bottom: 12px;
}

.experience-date,
.education-data-date {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 10px;
}

.experience-organization,
.education-data-type {
    color: #2c3e50;
    font-weight: 600;
}

.experience-project strong,
.experience-reference strong,
.education-data-institution strong {
    color: #2c3e50;
    font-size: 0.95rem;
}

.experience-project p,
.experience-reference p,
.education-data-institution p {
    color: #495057;
    line-height: 1.6;
    margin-top: 5px;
}

.vendor-field {
    margin: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.vendor-field strong {
    min-width: 80px;
    font-size: 0.85rem;
    color: #495057;
    margin: 0;
}

.field-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    flex: 1;
}

.field-tag {
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sector-tag {
    background: linear-gradient(135deg, #fd7e14 0%, #e83e8c 100%);
}

.industry-tag {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
}

.specialty-tag {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
}

/* Collapsible Header */
.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.collapsible-header h2 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.current-type-label {
    color: #eb1c33;
    font-size: 1.2rem;
    font-weight: 500;
    margin-left: 8px;
}

.collapse-icon {
    cursor: pointer;
    color: #667eea;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
}

.collapse-icon:hover {
    background: #e0e0e0;
    transform: scale(1.1);
}

.collapse-icon.collapsed {
    transform: rotate(-180deg);
}

.collapsible-content {
    max-height: none;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 1;
}

/* Általános Információk Section */
.vendor-card-general-info {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.info-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

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

.info-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 600;
}

.info-section h4 {
    color: #495057;
    margin-bottom: 10px;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.competence-subsection {
    margin-bottom: 15px;
}

.competence-subsection:last-child {
    margin-bottom: 0;
}

.vendor-description,
.self-awareness-content,
.references-content,
.education-content {
    color: #495057;
    line-height: 1.7;
}

/* Szakmai adatok box */
.vendor-szakmai-adatok-box {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.szakmai-adat-content {
    transition: all 0.3s ease;
}

.szakmai-adat-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.szakmai-adat-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.szakmai-field {
    margin-bottom: 15px;
}

.szakmai-field:last-child {
    margin-bottom: 0;
}

.szakmai-field strong {
    display: block;
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
}

.szakmai-field .field-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.szakmai-field .field-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.role-tag {
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
}

.szakmai-field .specialty-tag {
    background: #f3e5f5;
    color: #7b1fa2;
    border: 1px solid #e1bee7;
}

/* New szakmai field tags */
.szakmai-business-tag {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffe0b2;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.szakmai-sector-tag {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Text block for long text fields */
.szakmai-text-block {
    color: #495057;
    line-height: 1.7;
    margin-top: 8px;
}

.szakmai-text-block p {
    margin-bottom: 10px;
}

.szakmai-text-block p:last-child {
    margin-bottom: 0;
}

/* Table styling for subform data */
.szakmai-education-table,
.szakmai-experience-table {
    margin-top: 12px;
}

.szakmai-table-row {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 3px solid #007bff;
}

.szakmai-table-row:last-child {
    margin-bottom: 0;
}

.szakmai-experience-table .szakmai-table-row {
    border-left-color: #28a745;
}

.szakmai-table-cell {
    margin-bottom: 10px;
}

.szakmai-table-cell:last-child {
    margin-bottom: 0;
}

.szakmai-table-cell.full-width {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.szakmai-table-label {
    display: inline-block;
    font-weight: 600;
    color: #495057;
    margin-right: 8px;
    min-width: 100px;
}

.szakmai-table-value {
    color: #6c757d;
}

.practice-tag {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.language-tag {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
}

/* Booknetic Booking Widget */
.vendor-card-booking {
    border-left-color: #007bff;
    margin-top: 2rem;
}

.booking-section-intro {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2196f3;
}

.booking-section-intro p {
    margin: 0;
    color: #1976d2;
    font-weight: 500;
}

.booknetic-booking-widget {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.booknetic-booking-widget iframe {
    border: none;
    border-radius: 8px;
    min-height: 700px;
    width: 100%;
}

.booking-section-footer {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #28a745;
}

.booking-section-footer p {
    margin: 0;
    color: #495057;
}

.booking-section-footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.booking-section-footer a:hover {
    text-decoration: underline;
}

.booking-section-unavailable {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    text-align: center;
}

.booking-section-unavailable p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

.vendor-header-info .vendor-category {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.vendor-header-info .vendor-rating {
    margin-bottom: 10px;
}

.vendor-header-info .vendor-rating .stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.vendor-header-info .vendor-rating .rating-value {
    font-weight: 600;
    margin-left: 8px;
}

.vendor-header-info .vendor-rating .rating-count {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-left: 5px;
}

.vendor-header-actions {
    text-align: right;
}

.vendor-header-actions .vendor-price {
    margin-bottom: 15px;
}

.vendor-header-actions .price-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.vendor-about,
.vendor-specialties,
.vendor-qualifications,
.vendor-languages,
.vendor-testimonials {
    padding: 30px;
    border-bottom: 1px solid #e9ecef;
}

.vendor-about:last-child,
.vendor-specialties:last-child,
.vendor-qualifications:last-child,
.vendor-languages:last-child,
.vendor-testimonials:last-child {
    border-bottom: none;
}

.vendor-about h2,
.vendor-specialties h2,
.vendor-qualifications h2,
.vendor-languages h2,
.vendor-testimonials h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.vendor-bio {
    line-height: 1.8;
    color: #495057;
    font-size: 1.1rem;
}

.specialties-list,
.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.qualification-item {
    margin-bottom: 20px;
}

.qualification-item h3 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.qualification-item p {
    color: #495057;
    line-height: 1.6;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.testimonial-item p {
    margin: 0;
    font-style: italic;
    color: #495057;
    line-height: 1.6;
}

/* Sidebar Widgets */
.booking-widget,
.contact-widget,
.basic-info-widget,
.filter-fields-widget,
.share-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.booking-widget h3,
.contact-widget h3,
.basic-info-widget h3,
.filter-fields-widget h3,
.share-widget h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.booking-info p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.availability-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.availability-info h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.availability-info p {
    color: #6c757d;
    margin: 0;
}

.contact-info,
.basic-info,
.filter-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.contact-item a {
    color: #007bff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    display: block;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .vendor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .vendor-profile-layout {
        grid-template-columns: 1fr;
    }
    
    .vendor-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .vendor-search-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        min-width: auto;
    }
    
    .vendor-profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .vendor-header-actions {
        text-align: center;
    }
    
    .category-filter {
        justify-content: center;
    }
    
    .vendor-actions {
        flex-direction: column;
    }
    
    .vendor-card-footer {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .vendor-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .vendor-avatar {
        align-self: center;
    }
}

