.vendor-directory-aeee8566 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #111111;
    margin: 2rem 0;
    width: 100%;
}

.vd-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.vd-search-wrapper {
    position: relative;
    flex: 2;
    min-width: 280px;
}

.vd-search-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    font-size: 16px;
    border: 2px solid #111111;
    background-color: #ffffff;
    color: #111111;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease;
}

.vd-search-wrapper input:focus {
    border-color: #FBA222;
}

.vd-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #111111;
}

.vd-category-wrapper {
    flex: 1;
    min-width: 200px;
}

.vd-category-wrapper select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #111111;
    background-color: #ffffff;
    color: #111111;
    border-radius: 4px;
    cursor: pointer;
    height: auto;
    transition: border-color 0.2s ease;
}

.vd-category-wrapper select:focus {
    border-color: #FBA222;
}

.vd-results-info {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    font-weight: 500;
}

.vd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.vd-card {
    background-color: #ffffff;
    border: 2px solid #111111;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vd-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(251, 162, 34, 0.15);
    border-color: #FBA222;
}

.vd-card-header {
    margin-bottom: 15px;
}

.vd-card-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #111111;
    line-height: 1.2;
}

.vd-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.vd-badge {
    background-color: #111111;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.vd-card-body {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
    flex-grow: 1;
}

.vd-card-body p:last-child {
    margin-bottom: 0;
}

.vd-meta-group {
    border-top: 1px dashed #dddddd;
    padding-top: 15px;
}

.vd-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
    color: #111111;
}

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

.vd-meta-label {
    font-weight: 700;
}

.vd-meta-value a {
    color: #111111;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.vd-meta-value a:hover {
    color: #FBA222;
}

.vd-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.vd-page-btn {
    background-color: #ffffff;
    border: 2px solid #111111;
    color: #111111;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.vd-page-btn:hover:not(:disabled) {
    background-color: #FBA222;
    border-color: #FBA222;
    color: #ffffff;
}

.vd-page-btn.active {
    background-color: #111111;
    border-color: #111111;
    color: #ffffff;
}

.vd-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.vd-no-results {
    text-align: center;
    padding: 50px 20px;
    border: 2px dashed #cccccc;
    border-radius: 8px;
    color: #666666;
    grid-column: 1 / -1;
}
