/**
 * CYC Businesses Shortcode Styles
 * Location: assets/css/businesses.css
 * 
 * @package CYC\V2
 * @since 2.0.0
 */

/* ================================
   WRAPPER & LAYOUT
   ================================ */

.cyc-businesses-wrapper {
    margin: 2rem 0;
}

/* ================================
   GRID VIEW
   ================================ */

.cyc-businesses-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.cyc-businesses-grid.cyc-grid-col-2 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.cyc-businesses-grid.cyc-grid-col-3 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.cyc-businesses-grid.cyc-grid-col-4 {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Responsive */
@media (max-width: 768px) {
    .cyc-businesses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ================================
   BUSINESS CARD (Grid/Slider)
   ================================ */

.cyc-business-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cyc-business-card:hover {
    transform: translateY(-4px);
}

/* Image */
.cyc-card-image {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
    background: #f5f5f5;
}

.cyc-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Badges */
.cyc-badge {
    position: absolute;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.cyc-badge-featured {
    top: 12px;
    right: 12px;
    background: rgba(255, 215, 0, 0.95);
    color: #333;
}

.cyc-badge-category {
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
}

/* Content */
.cyc-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cyc-card-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

.cyc-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cyc-card-location {
    margin: 0;
    color: #666;
    font-size: 0.875rem;
}

.cyc-card-excerpt {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cyc-card-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.cyc-meta-item {
    font-size: 0.875rem;
    color: #777;
}

/* Actions */
.cyc-card-actions {
    padding: 0 1.5rem 1.5rem;
}

.cyc-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

/* ================================
   LIST VIEW
   ================================ */

.cyc-businesses-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cyc-business-card-list {
    flex-direction: row;
}

.cyc-business-card-list .cyc-card-list-wrapper {
    display: flex;
    gap: 2rem;
    width: 100%;
}

.cyc-business-card-list .cyc-card-image {
    flex-shrink: 0;
    width: 250px;
    padding-top: 0;
    height: 200px;
    border-radius: 8px;
}

.cyc-business-card-list .cyc-card-content {
    flex: 1;
    padding: 1rem 1.5rem 1rem 0;
}

.cyc-business-card-list .cyc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.cyc-business-card-list .cyc-card-badges {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cyc-business-card-list .cyc-badge {
    position: static;
}

.cyc-card-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.cyc-info-item {
    font-size: 0.875rem;
    color: #666;
}

.cyc-card-contact {
    display: flex;
    gap: 1.5rem;
    margin: 0.75rem 0;
}

.cyc-contact-link {
    font-size: 0.875rem;
    text-decoration: none;
}

.cyc-contact-link:hover {
    text-decoration: underline;
}

.cyc-business-card-list .cyc-card-actions {
    padding: 0;
    margin-top: 1rem;
}

/* List View Responsive */
@media (max-width: 768px) {
    .cyc-business-card-list .cyc-card-list-wrapper {
        flex-direction: column;
    }
    
    .cyc-business-card-list .cyc-card-image {
        width: 100%;
        height: 200px;
    }
    
    .cyc-business-card-list .cyc-card-content {
        padding: 1.5rem;
    }
}



/* ================================
   FILTERS & UTILITIES
   ================================ */

.cyc-filters {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.cyc-filter-category {
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
}

/* LEFT: Category Filters */
.cyc-controls-left {
    flex: 1;
    min-width: 0;
}

.cyc-categories-filters {
    position: relative;
}

.cyc-tabs-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.cyc-tabs-container::-webkit-scrollbar {
    display: none;
}

.cyc-tabs-wrapper {
    display: flex;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.cyc-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cyc-tab-button.active .cyc-tab-count {
    background: rgba(255, 255, 255, 0.25);
}

/* RIGHT: View Toggle & Sort */
.cyc-controls-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cyc-view-toggle {
    display: flex;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.25rem;
    border-radius: 8px;
}

.cyc-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cyc-view-btn:hover {
    background: #e9ecef;
    color: #495057;
}

.cyc-sort-select {
    padding: 0.65rem 1rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 180px;
}

.cyc-sort-select:hover {
    background: #e9ecef;
}

.cyc-sort-select:focus {
    outline: none;
    background: white;
}

/* Results Info */
.cyc-results-info {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.875rem;
    color: #6c757d;
}

.cyc-results-count,
.cyc-results-total {
    font-weight: 600;
    color: #495057;
}

/* Responsive */
@media (max-width: 768px) {
    .cyc-controls-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cyc-controls-right {
        justify-content: space-between;
    }
    
    .cyc-sort-select {
        flex: 1;
    }
}

/* ================================
   ANIMATIONS & TRANSITIONS
   ================================ */

/* Smooth transitions for view switching */
.cyc-businesses-grid,
.cyc-businesses-list {
    transition: opacity 0.3s ease-out;
}

/* Business cards animations */
.cyc-business-card,
.cyc-list-item {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cyc-business-card,
.cyc-list-item {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Stagger children */
.cyc-businesses-grid .cyc-business-card:nth-child(1),
.cyc-businesses-list .cyc-list-item:nth-child(1) {
    animation-delay: 0s;
}

.cyc-businesses-grid .cyc-business-card:nth-child(2),
.cyc-businesses-list .cyc-list-item:nth-child(2) {
    animation-delay: 0.05s;
}

.cyc-businesses-grid .cyc-business-card:nth-child(3),
.cyc-businesses-list .cyc-list-item:nth-child(3) {
    animation-delay: 0.1s;
}

.cyc-businesses-grid .cyc-business-card:nth-child(4),
.cyc-businesses-list .cyc-list-item:nth-child(4) {
    animation-delay: 0.15s;
}

.cyc-businesses-grid .cyc-business-card:nth-child(n+5),
.cyc-businesses-list .cyc-list-item:nth-child(n+5) {
    animation-delay: 0.2s;
}

/* Loading state */
.cyc-businesses-wrapper.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

.cyc-businesses-wrapper.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========================================
   CYC Carousel - Main Styles
   ======================================== */

/* Container */
.cyc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* View Toggle */
.cyc-view-toggle {
    display: flex;
    gap: 10px;
}

.cyc-view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cyc-view-btn:hover {
    background: #e8e8e8;
    color: #333;
}

.cyc-view-btn.active {
    background: #000;
    color: #fff;
}

.cyc-view-btn svg {
    width: 18px;
    height: 18px;
}

/* Filters & Sorting */
.cyc-filters-sorting {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cyc-filter-select,
.cyc-sort-select {
    padding: 4px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.cyc-filter-select:hover,
.cyc-sort-select:hover {
    border-color: #000;
}

.cyc-filter-select:focus,
.cyc-sort-select:focus {
    outline: none;
    border-color: #000;
}

/* Results Info */
.cyc-results-info {
    text-align: center;
    margin-top: 8px;
    padding: 15px 0;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

.cyc-results-count {
    font-weight: 700;
    color: #3AA6B9;
}

/* ========================================
   Loading Skeleton & Spinner
   ======================================== */
.cyc-loading {
    margin: 40px 0;
    text-align: center;
}

.cyc-loading-text {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cyc-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3AA6B9;
    border-radius: 50%;
    animation: cyc-spin 1s linear infinite;
}

@keyframes cyc-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cyc-loading-text p {
    margin: 0;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.cyc-skeleton-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
}

.cyc-skeleton-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.cyc-skeleton-image {
    width: 100%;
    padding-bottom: 66.67%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

.cyc-skeleton-content {
    padding: 20px;
}

.cyc-skeleton-title,
.cyc-skeleton-rating,
.cyc-skeleton-text,
.cyc-skeleton-button {
    height: 20px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

.cyc-skeleton-title {
    height: 24px;
    width: 70%;
}

.cyc-skeleton-rating {
    height: 16px;
    width: 40%;
}

.cyc-skeleton-button {
    height: 40px;
    width: 100%;
    margin-top: 15px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========================================
   Grid & Slider
   ======================================== */
.cyc-grid-view,
.cyc-slider-view {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyc-grid-view.active,
.cyc-slider-view.active {
    display: block;
    opacity: 1;
}

.cyc-businesses-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.cyc-grid-columns-2 { grid-template-columns: repeat(2, 1fr); }
.cyc-grid-columns-3 { grid-template-columns: repeat(3, 1fr); }
.cyc-grid-columns-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive */
@media (max-width: 992px) {
    .cyc-grid-columns-3,
    .cyc-grid-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cyc-controls-inner {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cyc-view-toggle {
        justify-content: center;
    }
    
    .cyc-filters-sorting {
        flex-direction: column;
    }
    
    .cyc-filter-select,
    .cyc-sort-select {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cyc-businesses-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .cyc-view-toggle {
        width: 100%;
    }
    
    .cyc-view-btn {
        flex: 1;
        justify-content: center;
    }
}

/* ========================================
   Business Card
   ======================================== */
.cyc-business-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cyc-business-card:hover {
    transform: translateY(-8px);
}

/* Image */
.cyc-business-image {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
    background: #f5f5f5;
}

.cyc-business-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cyc-business-card:hover .cyc-business-image img {
    transform: scale(1.08);
}

.cyc-business-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #54C1D4 0%, #1F6572 100%);
}

.cyc-placeholder-icon {
    font-size: 60px;
}

/* Type Badge */
.cyc-business-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content */
.cyc-business-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cyc-business-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

/* Description */
.cyc-business-description {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Info */
.cyc-business-info {
    margin-bottom: 15px;
}

.cyc-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.cyc-icon {
    font-size: 16px;
}

.cyc-info-item a {
    color: #3AA6B9;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cyc-info-item a:hover {
    color: #1F6572;
}


/* ========================================
   Load More Button
   ======================================== */
.cyc-load-more-wrap {
    text-align: center;
    margin: 30px 0;
}

/* ========================================
   Splide Controls
   ======================================== */
/* .cyc-splide {
    padding: 20px 0;
}

.cyc-splide .splide__slide {
    padding: 10px;
}

.cyc-splide .splide__arrow {
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: #ffffff !important;
    opacity: 1;
    width: 3rem !important;
    height: 3rem !important;
    top: 50% !important;
}

.cyc-splide .splide__arrow--next {
    right: -2em;
}

.cyc-splide .splide__arrow--prev {
    left: -1em;
}

.cyc-splide .splide__arrow:hover {
    background-color: #3AA6B9 !important;
}

.cyc-splide .splide__arrow svg {
    fill: #333;
}

.cyc-splide .splide__arrow:hover svg {
    fill: #fff;
} */

/* ========================================
   Error & No Results
   ======================================== */
.cyc-error,
.cyc-no-results {
    padding: 30px;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    color: #856404;
    text-align: center;
    font-size: 16px;
    margin: 20px 0;
}

.cyc-no-results {
    background: #e7f3ff;
    border-color: #3AA6B9;
    color: #1F6572;
}

/* No Results State */
.cyc-no-results {
    text-align: center;
    padding: 80px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

.cyc-no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.cyc-no-results svg {
    opacity: 0.2;
    margin-bottom: 24px;
    color: #666;
}

.cyc-no-results h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #333;
}

.cyc-no-results-message {
    font-size: 16px;
    color: #666;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.cyc-reset-filters {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cyc-reset-filters:hover {
    background: #005a87;
    transform: translateY(-2px);
}

.cyc-reset-filters:active {
    transform: translateY(0);
}

/* Business Card Link Wrapper */
.cyc-business-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.cyc-business-card-link:hover {
    text-decoration: none;
}

/* Card hover effect */
.cyc-business-card {
    transition: all 0.3s ease;
    height: 100%;
}

.cyc-business-card-link:hover .cyc-business-card {
    transform: translateY(-8px);
}

.cyc-business-card-link:hover .cyc-business-title {
    color: #0073aa;
}

/* Fix για το phone link μέσα στο card link */
.cyc-business-card-link .cyc-info-item a {
    pointer-events: auto; /* Αν θέλεις clickable phone */
}

/* ========================================
   Background Loading Notice
   ======================================== */
.cyc-background-notice {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 24px;
    z-index: 1000;
    animation: slideInUp 0.3s ease-out;
    transition: opacity 0.3s ease;
}

.cyc-notice-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cyc-notice-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3AA6B9;
    border-radius: 50%;
    animation: cyc-spin 1s linear infinite;
}

.cyc-notice-content span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cyc-background-notice {
        bottom: 20px;
        right: 20px;
        left: 20px;
        padding: 12px 16px;
    }
    
    .cyc-notice-content span {
        font-size: 13px;
    }
}

/* ============================================
   LIST VIEW STYLES - Improved Design
   ============================================ */

.cyc-list-view {
    display: none;
    width: 100%;
}

.cyc-list-view.active {
    display: block;
}

.cyc-businesses-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

/* List Item Card - New Clean Design */
.cyc-list-item {
    position: relative;
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.cyc-list-item:hover {
    border-color: #d1d5db;
}

/* List Item Inner Container */
.cyc-list-item-inner {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cyc-list-item-inner {
        flex-direction: row;
        align-items: start;
    }
}

/* List Item Image */
.cyc-list-item-image {
    flex-shrink: 0;
    width: 100%;
    height: 8rem;
    background: #f9fafb;
    border-radius: 0.375rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    position: relative;
}

@media (min-width: 640px) {
    .cyc-list-item-image {
        width: 11rem;
    }
}

.cyc-list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cyc-list-item:hover .cyc-list-item-image img {
    transform: scale(1.05);
}

.cyc-list-item-image.cyc-business-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #54C1D4 0%, #1F6572 100%);
}

.cyc-list-item-image .cyc-placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

/* Type Badge in List */
.cyc-list-item-image .cyc-business-type {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* List Item Content */
.cyc-list-item-content {
    flex: 1;
    min-width: 0;
}

.cyc-list-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.cyc-list-item-meta-line {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 0.75rem 0;
}

.cyc-list-item-description {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* List Item Actions */
.cyc-list-item-actions {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (min-width: 640px) {
    .cyc-list-item-actions {
        width: 10rem;
    }
}

.cyc-list-item-actions-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
}

/* Favorite Button */
.cyc-list-favorite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #f3f4f6;
    transition: background-color 0.2s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.cyc-list-favorite-btn:hover {
    background: #e5e7eb;
}

.cyc-list-favorite-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #000000;
}

/* View More Button */
.cyc-list-view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    outline: none;
    background: #000000;
    color: #ffffff;
    height: 2.25rem;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cyc-list-view-more-btn:hover {
    background: #111827;
    color: #ffffff;
}

.cyc-list-view-more-btn:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* Price Tag */
.cyc-list-price {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* ============================================
   RESPONSIVE - LIST VIEW
   ============================================ */

/* Mobile Adjustments */
@media (max-width: 640px) {
    .cyc-list-item-inner {
        padding: 0.75rem;
    }
    
    .cyc-list-item-image {
        height: 10rem;
    }
    
    .cyc-list-item-title {
        font-size: 1rem;
    }
    
    .cyc-list-item-description {
        font-size: 0.813rem;
        margin-top: 0.5rem;
    }
    
    .cyc-list-item-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .cyc-list-item-actions-inner {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .cyc-list-view-more-btn {
        flex: 1;
    }
}

/* Very Small Mobile */
@media (max-width: 480px) {
    .cyc-businesses-list {
        gap: 0.75rem;
    }
    
    .cyc-list-item-title {
        font-size: 0.938rem;
    }
    
    .cyc-list-item-meta-line {
        font-size: 0.813rem;
    }
}

.buttonCategories{
    padding: 4px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/*trivago Styles css*/
/* ============================================
   CATEGORY TABS - Modern Trivago-Inspired Design
   ============================================ */

.cyc-categories-filters {
    position: relative;
    margin: 0 0 2rem 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

/* Tabs Container */
.cyc-tabs-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    padding: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.cyc-tabs-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

/* Tabs Wrapper */
.cyc-tabs-wrapper {
    display: flex;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

/* Individual Tab Button */
.cyc-tab-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #4a5568;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    user-select: none;
}

.cyc-tab-button:hover {
    background: #f7fafc;
    color: #2d3748;
}

.cyc-tab-button:active {
    transform: scale(0.98);
}

/* Active Tab */
.cyc-tab-button.active {
    background: #000;
    color: #fff;
    font-weight: 600;
}

.cyc-tab-button.active:hover {
    background: #000;
    color: #fff;
}

/* Tab Count Badge */
.cyc-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    border-radius: 11px;
    background: rgba(0, 0, 0, 0.08);
    color: #4a5568;
    transition: all 0.2s ease;
}

.cyc-tab-button.active .cyc-tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Scroll Navigation Buttons */
.cyc-tabs-nav-btn {
    display: none; /* Hidden by default, shown via JS when needed */
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 2;
}

.cyc-tabs-nav-btn:hover:not(:disabled) {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.cyc-tabs-nav-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.cyc-tabs-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.cyc-tabs-nav-btn.active {
    display: flex;
}

.cyc-tabs-nav-btn svg {
    width: 18px;
    height: 18px;
    color: #4a5568;
}

/* Loading State */
.cyc-tab-button.loading {
    pointer-events: none;
    opacity: 0.6;
}

.cyc-tab-button.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile First - Small devices */
@media (max-width: 640px) {
    .cyc-categories-filters {
        margin: 0 -16px 1.5rem -16px;
        padding: 0 16px;
    }
    
    .cyc-tabs-container {
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
        padding: 8px 4px;
    }
    
    .cyc-tab-button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .cyc-tab-count {
        min-width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .cyc-tabs-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .cyc-tabs-nav-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Tablets */
@media (min-width: 641px) and (max-width: 1024px) {
    .cyc-tabs-container {
        padding: 6px;
    }
    
    .cyc-tab-button {
        padding: 9px 18px;
        font-size: 14px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .cyc-tabs-wrapper {
        gap: 6px;
    }
    
    .cyc-tab-button {
        padding: 11px 24px;
        font-size: 15px;
    }
    
    .cyc-tab-count {
        min-width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

/* Large Desktop - Center align when tabs fit */
@media (min-width: 1280px) {
    .cyc-tabs-container.centered {
        justify-content: center;
    }
}

/* ============================================
   ACCESSIBILITY & INTERACTIONS
   ============================================ */

.cyc-tab-button:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.cyc-tabs-nav-btn:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Smooth transitions */
@media (prefers-reduced-motion: reduce) {
    .cyc-tab-button,
    .cyc-tabs-nav-btn,
    .cyc-tab-count {
        transition: none;
    }
    
    .cyc-tabs-container {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cyc-tab-button.active {
        border: 2px solid currentColor;
    }
    
    .cyc-tabs-container {
        border: 1px solid currentColor;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .cyc-tabs-container {
        background: #1a202c;
    }
    
    .cyc-tab-button {
        color: #e2e8f0;
    }
    
    .cyc-tab-button:hover {
        background: #2d3748;
        color: #fff;
    }
    
    .cyc-tab-button.active {
        background: #000;
    }
    
    .cyc-tabs-nav-btn {
        background: #2d3748;
        border-color: #4a5568;
    }
    
    .cyc-tabs-nav-btn svg {
        color: #e2e8f0;
    }
}

/* ============================================
   LIST VIEW STYLES - Actions Right Aligned
   ============================================ */

.cyc-list-view {
    display: none;
    width: 100%;
}

.cyc-list-view.active {
    display: block;
}

.cyc-businesses-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

/* List Item Card */
.cyc-list-item {
    position: relative;
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.cyc-list-item:hover {
    border-color: #d1d5db;
}

/* List Item Inner Container - UPDATED */
.cyc-list-item-inner {
    padding: 1rem;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
}

/* List Item Image */
.cyc-list-item-image {
    flex-shrink: 0;
    width: 11rem;
    height: auto;
    min-height: 8rem;
    background: #f9fafb;
    border-radius: 0.375rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    position: relative;
}

.cyc-list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cyc-list-item:hover .cyc-list-item-image img {
    transform: scale(1.05);
}

.cyc-list-item-image.cyc-business-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #54C1D4 0%, #1F6572 100%);
}

.cyc-list-item-image .cyc-placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

/* Type Badge in List */
.cyc-list-item-image .cyc-business-type {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* List Item Content - UPDATED */
.cyc-list-item-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cyc-list-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.cyc-list-item-meta-line {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 0.75rem 0;
}

.cyc-list-item-description {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* List Item Actions - UPDATED: Always aligned right */
.cyc-list-item-actions {
    flex-shrink: 0;
    width: 10rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: end;
    margin-left: auto; /* Pushes to the right */
}

.cyc-list-item-actions-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
}

/* Favorite Button */
.cyc-list-favorite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #f3f4f6;
    transition: background-color 0.2s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.cyc-list-favorite-btn:hover {
    background: #e5e7eb;
}

.cyc-list-favorite-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #000000;
}

/* View More Button */
.cyc-list-view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    outline: none;
    background: #000000;
    color: #ffffff;
    height: 2.25rem;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cyc-list-view-more-btn:hover {
    background: #111827;
    color: #ffffff;
}

.cyc-list-view-more-btn:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* Price Tag */
.cyc-list-price {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* ============================================
   RESPONSIVE - LIST VIEW
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    .cyc-list-item-inner {
        gap: 0.875rem;
    }
    
    .cyc-list-item-image {
        width: 9rem;
    }
    
    .cyc-list-item-actions {
        width: 9rem;
    }
}

/* Mobile - Stack vertically */
@media (max-width: 640px) {
    .cyc-list-item-inner {
        flex-direction: column;
        padding: 0.75rem;
        gap: 1rem;
    }
    
    .cyc-list-item-image {
        width: 100%;
        height: 10rem;
    }
    
    .cyc-list-item-title {
        font-size: 1rem;
    }
    
    .cyc-list-item-description {
        font-size: 0.813rem;
        margin-top: 0.5rem;
    }
    
    /* Actions at bottom on mobile */
    .cyc-list-item-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-left: 0;
    }
    
    .cyc-list-item-actions-inner {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .cyc-list-view-more-btn {
        flex: 1;
    }
}

/* Very Small Mobile */
@media (max-width: 480px) {
    .cyc-businesses-list {
        gap: 0.75rem;
    }
    
    .cyc-list-item-title {
        font-size: 0.938rem;
    }
    
    .cyc-list-item-meta-line {
        font-size: 0.813rem;
    }
}

/* ========================================
   MODERN CONTROLS - Clean Two-Column Layout
   ======================================== */

.cyc-controls {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 9px 0;
    margin-bottom: 32px;
}

/* ============================================
   LEFT SIDE - Category Tabs
   ============================================ */
.cyc-controls-left {
    flex: 1;
    min-width: 0; /* Important for flex overflow */
}

.cyc-categories-filters {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.cyc-tabs-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9fafb;
    border-radius: 12px;
    padding: 6px;
    overflow: hidden; /* Changed from overflow-x: auto */
    scroll-behavior: smooth;
}

/* Gradient overlays to indicate more content */
.cyc-tabs-container::before,
.cyc-tabs-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cyc-tabs-container::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb, transparent);
}

.cyc-tabs-container::after {
    right: 0;
    background: linear-gradient(to left, #f9fafb, transparent);
}

/* Show gradients when scrollable */
.cyc-tabs-container.has-scroll::before,
.cyc-tabs-container.has-scroll::after {
    opacity: 1;
}

/* Hide left gradient when at start */
.cyc-tabs-container.at-start::before {
    opacity: 0;
}

/* Hide right gradient when at end */
.cyc-tabs-container.at-end::after {
    opacity: 0;
}

.cyc-tabs-wrapper {
    display: flex;
    gap: 6px;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
    z-index: 0;
}

.cyc-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.cyc-tab-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #6b7280;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
    user-select: none;
}

.cyc-tab-button:hover {
    background: #ffffff;
    color: #374151;
}

.cyc-tab-button.active {
    background: #000000;
    color: #ffffff;
    font-weight: 600;
}

.cyc-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.1);
    color: #6b7280;
    transition: all 0.15s ease;
}

.cyc-tab-button.active .cyc-tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Scroll Navigation Buttons - Hidden by default, shown only when needed */
.cyc-tabs-nav-btn {
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease, background-color 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
    opacity: 0;
    pointer-events: none;
}

.cyc-tabs-nav-btn:hover:not(:disabled) {
    background: #f9fafb;
    border-color: #d1d5db;
}

.cyc-tabs-nav-btn:disabled {
    opacity: 0.2 !important;
    cursor: not-allowed;
}

/* Show buttons only when scrollable */
.cyc-tabs-nav-btn.visible {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.cyc-tabs-nav-btn svg {
    width: 16px;
    height: 16px;
    color: #6b7280;
    transition: color 0.15s ease;
}

.cyc-tabs-nav-btn:hover:not(:disabled) svg {
    color: #374151;
}

/* ============================================
   RIGHT SIDE - View Toggle & Sorting
   ============================================ */
.cyc-controls-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* View Toggle Buttons */
.cyc-view-toggle {
    display: flex;
    gap: 0;
    background: #f9fafb;
    border-radius: 10px;
    padding: 4px;
}

.cyc-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cyc-view-btn:hover {
    background: #ffffff;
    color: #374151;
}

.cyc-view-btn.active {
    background: #000000;
    color: #ffffff;
}

.cyc-view-btn svg {
    width: 18px;
    height: 18px;
}

/* Sorting Dropdown */
.cyc-sort-select {
    padding: 8px 36px 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 4.5L6 7.5L9 4.5" stroke="%236b7280" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat right 12px center;
    background-size: 12px;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 160px;
}

.cyc-sort-select:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
}

.cyc-sort-select:focus {
    outline: none;
    border-color: #000000;
}

/* Results Info - Moved below controls */
.cyc-results-info {
    text-align: center;
    margin: 16px 0 0 0;
    padding: 0;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.cyc-results-count {
    font-weight: 700;
    color: #000000;
}

.cyc-results-total {
    font-weight: 600;
}

/* Hide old filter select (replaced by tabs) */
.cyc-filters-sorting {
    display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop */
@media (min-width: 1280px) {
    .cyc-controls {
        padding: 20px 32px;
    }
    
    .cyc-tab-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .cyc-view-btn {
        width: 40px;
        height: 40px;
    }
    
    .cyc-sort-select {
        font-size: 14px;
        padding: 10px 40px 10px 18px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .cyc-controls-inner {
        gap: 16px;
    }
    
    .cyc-controls-right {
        gap: 10px;
    }
    
    .cyc-sort-select {
        min-width: 140px;
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    .cyc-controls {
        padding: 12px 16px;
        border-radius: 12px;
    }
    
    .cyc-controls-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .cyc-controls-left {
        width: 100%;
    }
    
    .cyc-controls-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .cyc-tabs-container {
        padding: 4px;
    }
    
    .cyc-tab-button {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .cyc-tab-count {
        min-width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .cyc-view-toggle {
        flex: 1;
        justify-content: center;
    }
    
    .cyc-view-btn {
        flex: 1;
        max-width: 48px;
    }
    
    .cyc-sort-select {
        flex: 1;
        min-width: 0;
    }
    
    .cyc-results-info {
        margin-top: 12px;
        font-size: 12px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .cyc-controls {
        padding: 10px 12px;
        margin-bottom: 20px;
    }
    
    .cyc-controls-inner {
        gap: 10px;
    }
    
    .cyc-tab-button {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .cyc-view-btn {
        width: 34px;
        height: 34px;
    }
    
    .cyc-view-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .cyc-sort-select {
        padding: 7px 32px 7px 12px;
        font-size: 12px;
    }
    
    /* Always show scroll buttons on mobile if scrollable */
    .cyc-tabs-nav-btn.visible {
        width: 28px;
        height: 28px;
    }
    
    .cyc-tabs-nav-btn svg {
        width: 14px;
        height: 14px;
    }
    
    /* Reduce gradient width on mobile */
    .cyc-tabs-container::before,
    .cyc-tabs-container::after {
        width: 24px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.cyc-tab-button:focus-visible,
.cyc-view-btn:focus-visible,
.cyc-sort-select:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .cyc-tab-button,
    .cyc-view-btn,
    .cyc-sort-select,
    .cyc-tabs-nav-btn,
    .cyc-tab-count {
        transition: none;
    }
    
    .cyc-tabs-container {
        scroll-behavior: auto;
    }
}

/* High Contrast */
@media (prefers-contrast: high) {
    .cyc-tab-button.active,
    .cyc-view-btn.active {
        border: 2px solid currentColor;
    }
    
    .cyc-controls {
        border: 2px solid currentColor;
    }
}


/* ========================================
   Business Card - Updated Placeholder Styling
   ======================================== */

/* Image - UPDATED */
.cyc-business-image {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
    background: #f5f5f5;
}

.cyc-business-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cyc-business-card:hover .cyc-business-image img {
    transform: scale(1.08);
}

/* No Image - UPDATED: Remove gradient and emoji */
.cyc-business-no-image {
    background: #f5f5f5; /* Simple gray background */
}

.cyc-business-no-image img {
    opacity: 0.6; /* Slightly transparent for placeholder */
}

/* Remove the emoji icon - no longer needed */
.cyc-placeholder-icon {
    display: none;
}

/* Type Badge */
.cyc-business-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   List View - Updated Placeholder Styling
   ======================================== */

/* List Item Image - UPDATED */
.cyc-list-item-image {
    flex-shrink: 0;
    width: 11rem;
    height: auto;
    min-height: 8rem;
    background: #f9fafb;
    border-radius: 0.375rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    position: relative;
}

.cyc-list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cyc-list-item:hover .cyc-list-item-image img {
    transform: scale(1.05);
}

/* No Image in List - UPDATED */
.cyc-list-item-image.cyc-business-no-image {
    background: #f5f5f5; /* Simple gray background */
}

.cyc-list-item-image.cyc-business-no-image img {
    opacity: 0.6; /* Slightly transparent for placeholder */
}

/* Remove emoji placeholder - no longer needed */
.cyc-list-item-image .cyc-placeholder-icon {
    display: none;
}

/* Type Badge in List */
.cyc-list-item-image .cyc-business-type {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* ========================================
   Business Card Footer - Price and Button
   ======================================== */

.cyc-business-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.cyc-business-price {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

/* Button - Updated στυλ που ταιριάζει με το list view */
.cyc-business-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cyc-business-link:hover {
    background: #111827;
    color: #ffffff;
    transform: translateY(-2px);
}

.cyc-business-link:active {
    transform: translateY(0);
}

.cyc-business-link:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* ========================================
   Business Card - Ensure proper layout
   ======================================== */

.cyc-business-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #23232336;
}

.cyc-business-card:hover {
    transform: translateY(-8px);
}

.cyc-business-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* ========================================
   Responsive Adjustments
   ======================================== */

@media (max-width: 768px) {
    .cyc-business-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .cyc-business-price {
        text-align: center;
    }
    
    .cyc-business-link {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cyc-business-footer {
        padding-top: 12px;
    }
    
    .cyc-business-price {
        font-size: 15px;
    }
    
    .cyc-business-link {
        padding: 9px 18px;
        font-size: 13px;
    }
}

/* ========================================
   FEATURED SLIDER - Performance Optimized
   ======================================== */

.cyc-featured-container {
    margin: 40px 0;
    contain: layout style paint; /* 🚀 CSS containment */
}

.cyc-featured-container .cyc-slider-view {
    padding: 20px 0;
}

/* Featured Card - Enhanced */
.cyc-featured-card {
    will-change: transform; /* 🚀 GPU acceleration hint */
}

.cyc-featured-card:hover {
    transform: translateY(-12px);
}

/* Featured Badge - Optimized */
.cyc-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    transform: translateZ(0); /* 🚀 GPU acceleration */
}

/* Splide - Featured Customization */
.cyc-featured-container .cyc-splide {
    padding: 30px 0;
}

.cyc-featured-container .cyc-splide .splide__arrow {
    width: 3.5rem !important;
    height: 3.5rem !important;
    background: linear-gradient(135deg, #54C1D4 0%, #1F6572 100%) !important;
    transition: transform 0.2s ease; /* 🚀 Shorter transition */
}

.cyc-featured-container .cyc-splide .splide__arrow svg {
    fill: #fff;
}

.cyc-featured-container .cyc-splide .splide__arrow:hover {
    transform: scale(1.1);
}

/* Pagination για Featured */
.cyc-featured-container .splide__pagination {
    bottom: -30px;
}

.cyc-featured-container .splide__pagination__page {
    background: #d1d5db;
    opacity: 1;
    transition: all 0.2s ease;
}

.cyc-featured-container .splide__pagination__page.is-active {
    background: #000;
    transform: scale(1.3);
}

/* 🚀 Performance - Reduce motion για low-end devices */
@media (prefers-reduced-motion: reduce) {
    .cyc-featured-card,
    .cyc-featured-badge,
    .cyc-splide .splide__arrow {
        transition: none;
        will-change: auto;
    }
    
    .cyc-featured-card:hover {
        transform: none;
    }
}

/* 🚀 Mobile optimization */
@media (max-width: 768px) {
    .cyc-featured-container {
        margin: 30px 0;
    }
    
    .cyc-featured-badge {
        font-size: 10px;
        padding: 4px 10px;
        top: 10px;
        right: 10px;
    }
    
    .cyc-featured-container .cyc-splide .splide__arrow {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
}


/* ========================================
   FEATURED SLIDER STYLES
   ======================================== */

/* Featured Container */
.cyc-featured-container {
    margin: 40px 0;
    contain: layout style paint; /* 🚀 CSS containment for performance */
}

.cyc-featured-container .cyc-slider-view {
    padding: 20px 0;
}

/* Featured Card - Enhanced hover */
.cyc-featured-card {
    will-change: transform; /* 🚀 GPU acceleration hint */
}

.cyc-featured-card:hover {
    transform: translateY(-12px);
}

/* Featured Badge */
.cyc-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    transform: translateZ(0); /* 🚀 GPU acceleration */
}

/* Splide - Featured Customization */
.cyc-featured-splide .splide__arrow {
    width: 3.5rem !important;
    height: 3.5rem !important;
    background: linear-gradient(135deg, #54C1D4 0%, #1F6572 100%) !important;
    transition: transform 0.2s ease;
}

.cyc-featured-splide .splide__arrow svg {
    fill: #fff;
}

.cyc-featured-splide .splide__arrow:hover {
    transform: scale(1.1);
}

/* Pagination for Featured */
.cyc-featured-splide .splide__pagination {
    bottom: -30px;
}

.cyc-featured-splide .splide__pagination__page {
    background: #d1d5db;
    opacity: 1;
    transition: all 0.2s ease;
}

.cyc-featured-splide .splide__pagination__page.is-active {
    background: #000;
    transform: scale(1.3);
}

/* 🚀 Performance - Reduce motion for low-end devices */
@media (prefers-reduced-motion: reduce) {
    .cyc-featured-card,
    .cyc-featured-badge,
    .cyc-featured-splide .splide__arrow {
        transition: none;
        will-change: auto;
    }
    
    .cyc-featured-card:hover {
        transform: none;
    }
}

/* 🚀 Mobile optimization */
@media (max-width: 768px) {
    .cyc-featured-container {
        margin: 30px 0;
    }
    
    .cyc-featured-badge {
        font-size: 10px;
        padding: 4px 10px;
        top: 10px;
        right: 10px;
    }
    
    .cyc-featured-splide .splide__arrow {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
}

/* ========================================
   SLIDER VIEW - Updated with Padding & Hidden Overflow
   ======================================== */

/* Slider Container - Add padding and hide overflow */
.cyc-businesses-slider {
    position: relative;
    margin: 2rem 0;
    padding: 0 4rem; /* ✅ Added padding */
    overflow: hidden; /* ✅ Hide items outside container */
}

/* Slider Track - Remove any default padding */
.cyc-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    padding: 0; /* ✅ Ensure no padding on track */
}

/* Slider item - 3 columns on desktop */
.cyc-slider-item {
    flex: 0 0 100%;
    padding: 0 1rem;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
    .cyc-slider-item {
        flex: 0 0 50%;
    }
}

/* Desktop: 3 columns */
@media (min-width: 1200px) {
    .cyc-slider-item {
        flex: 0 0 33.333%;
    }
}

/* Slider Navigation - Positioned inside padding area */
.cyc-slider-prev,
.cyc-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyc-slider-prev:hover,
.cyc-slider-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.cyc-slider-prev {
    left: 10px; /* ✅ Inside the 4rem padding */
}

.cyc-slider-next {
    right: 10px; /* ✅ Inside the 4rem padding */
}

/* ========================================
   RESPONSIVE - Mobile adjustments
   ======================================== */

@media (max-width: 768px) {
    .cyc-businesses-slider {
        padding: 0 2rem; /* ✅ Reduced padding on mobile */
    }
    
    .cyc-slider-prev,
    .cyc-slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cyc-businesses-slider {
        padding: 0 1rem; /* ✅ Even less padding on very small screens */
    }
    
    .cyc-slider-prev,
    .cyc-slider-next {
        width: 36px;
        height: 36px;
    }
}


/* ========================================
   SPLIDE SLIDER - WIDER LAYOUT FIX
   ======================================== */

/* CRITICAL: Hide overflow to show only visible cards */
.cyc-businesses-slider {
    overflow: hidden !important;
    position: relative;
    max-width: 100%; /* ✅ Full container width */
}

.cyc-splide {
    padding: 20px 70px; /* ✅ Reduced padding = more space for cards */
    overflow: visible !important;
}

/* Track must clip items */
.cyc-splide .splide__track {
    overflow: hidden !important;
    margin: 0 70px;
}

/* List can overflow (for smooth transitions) */
.cyc-splide .splide__list {
    overflow: visible;
}

/* Slide spacing - REDUCED for wider cards */
.cyc-splide .splide__slide {
    padding: 0 10px; /* ✅ Reduced from 15px to 10px */
}

/* Arrows positioned closer to content */
.cyc-splide .splide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem !important;
    height: 3rem !important;
    border-radius: 50%;
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb;
    opacity: 1 !important;
    z-index: 3 !important;
}

.cyc-splide .splide__arrow--prev {
    left: 10px !important; /* ✅ Closer to edge */
}

.cyc-splide .splide__arrow--next {
    right: 10px !important; /* ✅ Closer to edge */
}

.cyc-splide .splide__arrow:hover:not(:disabled) {
    background-color: #000000 !important;
    transform: translateY(-50%) scale(1.1);
}

.cyc-splide .splide__arrow svg {
    fill: #333;
}

.cyc-splide .splide__arrow:hover svg {
    fill: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .cyc-splide {
        padding: 20px 50px; /* ✅ Less padding on mobile */
    }
    
    .cyc-splide .splide__slide {
        padding: 0 8px;
    }
    
    .cyc-splide .splide__arrow {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
}

@media (max-width: 480px) {
    .cyc-splide {
        padding: 20px 45px; /* ✅ Even less padding */
    }
    
    .cyc-splide .splide__slide {
        padding: 0 6px;
    }
    
    .cyc-splide .splide__arrow {
        width: 2rem !important;
        height: 2rem !important;
    }
}

/* ========================================
   BUSINESS CARD - OPTIMIZED FOR WIDER SLIDER
   ======================================== */

.cyc-splide .cyc-business-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); /* ✅ Subtle shadow */
}

.cyc-splide .cyc-business-card:hover {
    transform: translateY(-8px);
}

/* Image maintains aspect ratio */
.cyc-splide .cyc-business-image {
    padding-bottom: 60%; /* ✅ Slightly reduced from 66.67% for better proportions */
}

/* Content has proper spacing */
.cyc-splide .cyc-business-content {
    padding: 18px; /* ✅ Slightly reduced from 20px */
}

.cyc-splide .cyc-business-title {
    font-size: 1.125rem; /* ✅ Slightly smaller for better fit */
    margin-bottom: 8px;
}

.cyc-splide .cyc-business-description {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.cyc-splide .cyc-business-footer {
    margin-top: auto;
    padding-top: 12px;
}

/* ========================================
   ALTERNATIVE: NARROWER ARROWS FOR MAX WIDTH
   ======================================== */

/* If you want MAXIMUM card width, use these settings instead:

.cyc-splide {
    padding: 20px 55px !important;
}

.cyc-splide .splide__slide {
    padding: 0 8px !important;
}

.cyc-splide .splide__arrow {
    width: 2.5rem !important;
    height: 2.5rem !important;
}

.cyc-splide .splide__arrow--prev {
    left: 5px !important;
}

.cyc-splide .splide__arrow--next {
    right: 5px !important;
}

*/


/* ========================================
   CYC Carousel - Main Styles
   ======================================== */

/* Container */
.cyc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ========================================
   Controls
   ======================================== */
.cyc-controls {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 30px;
}

.cyc-controls-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

/* View Toggle */
.cyc-view-toggle {
    display: flex;
    gap: 10px;
}

.cyc-view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cyc-view-btn:hover {
    background: #e8e8e8;
    color: #333;
}

.cyc-view-btn.active {
    background: #000;
    color: #fff;
}

.cyc-view-btn svg {
    width: 18px;
    height: 18px;
}

/* Filters & Sorting */
.cyc-filters-sorting {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cyc-filter-select,
.cyc-sort-select {
    padding: 4px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.cyc-filter-select:hover,
.cyc-sort-select:hover {
    border-color: #000;
}

.cyc-filter-select:focus,
.cyc-sort-select:focus {
    outline: none;
    border-color: #000;
}

/* Results Info */
.cyc-results-info {
    text-align: center;
    margin-top: 8px;
    padding: 15px 0;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

.cyc-results-count {
    font-weight: 700;
    color: #3AA6B9;
}

/* ========================================
   Loading Skeleton & Spinner
   ======================================== */
.cyc-loading {
    margin: 40px 0;
    text-align: center;
}

.cyc-loading-text {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cyc-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3AA6B9;
    border-radius: 50%;
    animation: cyc-spin 1s linear infinite;
}

@keyframes cyc-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cyc-loading-text p {
    margin: 0;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.cyc-skeleton-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
}

.cyc-skeleton-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cyc-skeleton-image {
    width: 100%;
    padding-bottom: 66.67%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

.cyc-skeleton-content {
    padding: 20px;
}

.cyc-skeleton-title,
.cyc-skeleton-rating,
.cyc-skeleton-text,
.cyc-skeleton-button {
    height: 20px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

.cyc-skeleton-title {
    height: 24px;
    width: 70%;
}

.cyc-skeleton-rating {
    height: 16px;
    width: 40%;
}

.cyc-skeleton-button {
    height: 40px;
    width: 100%;
    margin-top: 15px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========================================
   Grid & Slider
   ======================================== */
.cyc-grid-view,
.cyc-slider-view {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyc-grid-view.active,
.cyc-slider-view.active {
    display: block;
    opacity: 1;
}

.cyc-businesses-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.cyc-grid-columns-2 { grid-template-columns: repeat(2, 1fr); }
.cyc-grid-columns-3 { grid-template-columns: repeat(3, 1fr); }
.cyc-grid-columns-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive */
@media (max-width: 992px) {
    .cyc-grid-columns-3,
    .cyc-grid-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cyc-controls-inner {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cyc-view-toggle {
        justify-content: center;
    }
    
    .cyc-filters-sorting {
        flex-direction: column;
    }
    
    .cyc-filter-select,
    .cyc-sort-select {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cyc-businesses-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .cyc-view-toggle {
        width: 100%;
    }
    
    .cyc-view-btn {
        flex: 1;
        justify-content: center;
    }
}

/* ========================================
   Business Card
   ======================================== */
.cyc-business-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cyc-business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Image */
.cyc-business-image {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
    background: #f5f5f5;
}

.cyc-business-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cyc-business-card:hover .cyc-business-image img {
    transform: scale(1.08);
}

.cyc-business-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #54C1D4 0%, #1F6572 100%);
}

.cyc-placeholder-icon {
    font-size: 60px;
}

/* Type Badge */
.cyc-business-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Content */
.cyc-business-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cyc-business-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

/* Description */
.cyc-business-description {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Info */
.cyc-business-info {
    margin-bottom: 15px;
}

.cyc-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.cyc-icon {
    font-size: 16px;
}

.cyc-info-item a {
    color: #3AA6B9;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cyc-info-item a:hover {
    color: #1F6572;
}

/* Button */
.cyc-business-link {
    display: inline-block;
    margin-top: auto;
    padding: 12px 24px;
    background: linear-gradient(135deg, #54C1D4 0%, #1F6572 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 12px rgba(58, 166, 185, 0.35); */
}

.cyc-business-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(58, 166, 185, 0.45);
    color: #fff !important;
}

/* ========================================
   Load More Button
   ======================================== */
.cyc-load-more-wrap {
    text-align: center;
    margin: 30px 0;
}

/* ========================================
   Splide Controls
   ======================================== */
.cyc-splide {
    padding: 20px 0;
}

.cyc-splide .splide__slide {
    padding: 10px;
}

.cyc-splide .splide__arrow {
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background-color: #ffffff !important;
    opacity: 1;
    width: 3rem !important;
    height: 3rem !important;
    top: 50% !important;
}

.cyc-splide .splide__arrow--next {
    right: -2em;
}

.cyc-splide .splide__arrow--prev {
    left: -1em;
}


.cyc-splide .splide__arrow svg {
    fill: #333;
}

.cyc-splide .splide__arrow:hover svg {
    fill: #fff;
}

/* ========================================
   Error & No Results
   ======================================== */
.cyc-error,
.cyc-no-results {
    padding: 30px;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    color: #856404;
    text-align: center;
    font-size: 16px;
    margin: 20px 0;
}

.cyc-no-results {
    background: #e7f3ff;
    border-color: #3AA6B9;
    color: #1F6572;
}

/* No Results State */
.cyc-no-results {
    text-align: center;
    padding: 80px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

.cyc-no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.cyc-no-results svg {
    opacity: 0.2;
    margin-bottom: 24px;
    color: #666;
}

.cyc-no-results h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #333;
}

.cyc-no-results-message {
    font-size: 16px;
    color: #666;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.cyc-reset-filters {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cyc-reset-filters:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cyc-reset-filters:active {
    transform: translateY(0);
}

/* Business Card Link Wrapper */
.cyc-business-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.cyc-business-card-link:hover {
    text-decoration: none;
}

/* Card hover effect */
.cyc-business-card {
    transition: all 0.3s ease;
    height: 100%;
}

.cyc-business-card-link:hover .cyc-business-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.cyc-business-card-link:hover .cyc-business-title {
    color: #0073aa;
}

/* Fix για το phone link μέσα στο card link */
.cyc-business-card-link .cyc-info-item a {
    pointer-events: auto; /* Αν θέλεις clickable phone */
}

/* ========================================
   Background Loading Notice
   ======================================== */
.cyc-background-notice {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: slideInUp 0.3s ease-out;
    transition: opacity 0.3s ease;
}

.cyc-notice-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cyc-notice-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3AA6B9;
    border-radius: 50%;
    animation: cyc-spin 1s linear infinite;
}

.cyc-notice-content span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cyc-background-notice {
        bottom: 20px;
        right: 20px;
        left: 20px;
        padding: 12px 16px;
    }
    
    .cyc-notice-content span {
        font-size: 13px;
    }
}

/* ============================================
   LIST VIEW STYLES - Improved Design
   ============================================ */

.cyc-list-view {
    display: none;
    width: 100%;
}

.cyc-list-view.active {
    display: block;
}

.cyc-businesses-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

/* List Item Card - New Clean Design */
.cyc-list-item {
    position: relative;
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.cyc-list-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

/* List Item Inner Container */
.cyc-list-item-inner {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cyc-list-item-inner {
        flex-direction: row;
        align-items: start;
    }
}

/* List Item Image */
.cyc-list-item-image {
    flex-shrink: 0;
    width: 100%;
    height: 8rem;
    background: #f9fafb;
    border-radius: 0.375rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    position: relative;
}

@media (min-width: 640px) {
    .cyc-list-item-image {
        width: 11rem;
    }
}

.cyc-list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cyc-list-item:hover .cyc-list-item-image img {
    transform: scale(1.05);
}

.cyc-list-item-image.cyc-business-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #54C1D4 0%, #1F6572 100%);
}

.cyc-list-item-image .cyc-placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

/* Type Badge in List */
.cyc-list-item-image .cyc-business-type {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* List Item Content */
.cyc-list-item-content {
    flex: 1;
    min-width: 0;
}

.cyc-list-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.cyc-list-item-meta-line {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 0.75rem 0;
}

.cyc-list-item-description {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* List Item Actions */
.cyc-list-item-actions {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (min-width: 640px) {
    .cyc-list-item-actions {
        width: 10rem;
    }
}

.cyc-list-item-actions-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
}

/* Favorite Button */
.cyc-list-favorite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #f3f4f6;
    transition: background-color 0.2s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.cyc-list-favorite-btn:hover {
    background: #e5e7eb;
}

.cyc-list-favorite-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #000000;
}

/* View More Button */
.cyc-list-view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    outline: none;
    background: #000000;
    color: #ffffff;
    height: 2.25rem;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cyc-list-view-more-btn:hover {
    background: #111827;
    color: #ffffff;
}

.cyc-list-view-more-btn:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* Price Tag */
.cyc-list-price {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* ============================================
   RESPONSIVE - LIST VIEW
   ============================================ */

/* Mobile Adjustments */
@media (max-width: 640px) {
    .cyc-list-item-inner {
        padding: 0.75rem;
    }
    
    .cyc-list-item-image {
        height: 10rem;
    }
    
    .cyc-list-item-title {
        font-size: 1rem;
    }
    
    .cyc-list-item-description {
        font-size: 0.813rem;
        margin-top: 0.5rem;
    }
    
    .cyc-list-item-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .cyc-list-item-actions-inner {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .cyc-list-view-more-btn {
        flex: 1;
    }
}

/* Very Small Mobile */
@media (max-width: 480px) {
    .cyc-businesses-list {
        gap: 0.75rem;
    }
    
    .cyc-list-item-title {
        font-size: 0.938rem;
    }
    
    .cyc-list-item-meta-line {
        font-size: 0.813rem;
    }
}

.buttonCategories{
    padding: 4px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/*trivago Styles css*/
/* ============================================
   CATEGORY TABS - Modern Trivago-Inspired Design
   ============================================ */

.cyc-categories-filters {
    position: relative;
    margin: 0 0 2rem 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

/* Tabs Container */
.cyc-tabs-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.cyc-tabs-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

/* Tabs Wrapper */
.cyc-tabs-wrapper {
    display: flex;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

/* Individual Tab Button */
.cyc-tab-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #4a5568;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    user-select: none;
}

.cyc-tab-button:hover {
    background: #f7fafc;
    color: #2d3748;
}

.cyc-tab-button:active {
    transform: scale(0.98);
}

/* Active Tab */
.cyc-tab-button.active {
    background: #000;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.cyc-tab-button.active:hover {
    background: #000;
    color: #fff;
}

/* Tab Count Badge */
.cyc-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    border-radius: 11px;
    background: rgba(0, 0, 0, 0.08);
    color: #4a5568;
    transition: all 0.2s ease;
}

.cyc-tab-button.active .cyc-tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Scroll Navigation Buttons */
.cyc-tabs-nav-btn {
    display: none; /* Hidden by default, shown via JS when needed */
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 2;
}

.cyc-tabs-nav-btn:hover:not(:disabled) {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.cyc-tabs-nav-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.cyc-tabs-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.cyc-tabs-nav-btn.active {
    display: flex;
}

.cyc-tabs-nav-btn svg {
    width: 18px;
    height: 18px;
    color: #4a5568;
}

/* Loading State */
.cyc-tab-button.loading {
    pointer-events: none;
    opacity: 0.6;
}

.cyc-tab-button.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile First - Small devices */
@media (max-width: 640px) {
    .cyc-categories-filters {
        margin: 0 -16px 1.5rem -16px;
        padding: 0 16px;
    }
    
    .cyc-tabs-container {
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
        padding: 8px 4px;
    }
    
    .cyc-tab-button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .cyc-tab-count {
        min-width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .cyc-tabs-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .cyc-tabs-nav-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Tablets */
@media (min-width: 641px) and (max-width: 1024px) {
    .cyc-tabs-container {
        padding: 6px;
    }
    
    .cyc-tab-button {
        padding: 9px 18px;
        font-size: 14px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .cyc-tabs-wrapper {
        gap: 6px;
    }
    
    .cyc-tab-button {
        padding: 11px 24px;
        font-size: 15px;
    }
    
    .cyc-tab-count {
        min-width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

/* Large Desktop - Center align when tabs fit */
@media (min-width: 1280px) {
    .cyc-tabs-container.centered {
        justify-content: center;
    }
}

/* ============================================
   ACCESSIBILITY & INTERACTIONS
   ============================================ */

.cyc-tab-button:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.cyc-tabs-nav-btn:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Smooth transitions */
@media (prefers-reduced-motion: reduce) {
    .cyc-tab-button,
    .cyc-tabs-nav-btn,
    .cyc-tab-count {
        transition: none;
    }
    
    .cyc-tabs-container {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cyc-tab-button.active {
        border: 2px solid currentColor;
    }
    
    .cyc-tabs-container {
        border: 1px solid currentColor;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .cyc-tabs-container {
        background: #1a202c;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .cyc-tab-button {
        color: #e2e8f0;
    }
    
    .cyc-tab-button:hover {
        background: #2d3748;
        color: #fff;
    }
    
    .cyc-tab-button.active {
        background: #000;
    }
    
    .cyc-tabs-nav-btn {
        background: #2d3748;
        border-color: #4a5568;
    }
    
    .cyc-tabs-nav-btn svg {
        color: #e2e8f0;
    }
}

/* ============================================
   LIST VIEW STYLES - Actions Right Aligned
   ============================================ */

.cyc-list-view {
    display: none;
    width: 100%;
}

.cyc-list-view.active {
    display: block;
}

.cyc-businesses-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

/* List Item Card */
.cyc-list-item {
    position: relative;
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.cyc-list-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

/* List Item Inner Container - UPDATED */
.cyc-list-item-inner {
    padding: 1rem;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
}

/* List Item Image */
.cyc-list-item-image {
    flex-shrink: 0;
    width: 11rem;
    height: auto;
    min-height: 8rem;
    background: #f9fafb;
    border-radius: 0.375rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    position: relative;
}

.cyc-list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cyc-list-item:hover .cyc-list-item-image img {
    transform: scale(1.05);
}

.cyc-list-item-image.cyc-business-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #54C1D4 0%, #1F6572 100%);
}

.cyc-list-item-image .cyc-placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

/* Type Badge in List */
.cyc-list-item-image .cyc-business-type {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* List Item Content - UPDATED */
.cyc-list-item-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cyc-list-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.cyc-list-item-meta-line {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 0.75rem 0;
}

.cyc-list-item-description {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* List Item Actions - UPDATED: Always aligned right */
.cyc-list-item-actions {
    flex-shrink: 0;
    width: 10rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    margin-left: auto; /* Pushes to the right */
}

.cyc-list-item-actions-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
}

/* Favorite Button */
.cyc-list-favorite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #f3f4f6;
    transition: background-color 0.2s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.cyc-list-favorite-btn:hover {
    background: #e5e7eb;
}

.cyc-list-favorite-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #000000;
}

/* View More Button */
.cyc-list-view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    outline: none;
    background: #000000;
    color: #ffffff;
    height: 2.25rem;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cyc-list-view-more-btn:hover {
    background: #111827;
    color: #ffffff;
}

.cyc-list-view-more-btn:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* Price Tag */
.cyc-list-price {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* ============================================
   RESPONSIVE - LIST VIEW
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    .cyc-list-item-inner {
        gap: 0.875rem;
    }
    
    .cyc-list-item-image {
        width: 9rem;
    }
    
    .cyc-list-item-actions {
        width: 9rem;
    }
}

/* Mobile - Stack vertically */
@media (max-width: 640px) {
    .cyc-list-item-inner {
        flex-direction: column;
        padding: 0.75rem;
        gap: 1rem;
    }
    
    .cyc-list-item-image {
        width: 100%;
        height: 10rem;
    }
    
    .cyc-list-item-title {
        font-size: 1rem;
    }
    
    .cyc-list-item-description {
        font-size: 0.813rem;
        margin-top: 0.5rem;
    }
    
    /* Actions at bottom on mobile */
    .cyc-list-item-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-left: 0;
    }
    
    .cyc-list-item-actions-inner {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .cyc-list-view-more-btn {
        flex: 1;
    }
}

/* Very Small Mobile */
@media (max-width: 480px) {
    .cyc-businesses-list {
        gap: 0.75rem;
    }
    
    .cyc-list-item-title {
        font-size: 0.938rem;
    }
    
    .cyc-list-item-meta-line {
        font-size: 0.813rem;
    }
}

/* ========================================
   MODERN CONTROLS - Clean Two-Column Layout
   ======================================== */

.cyc-controls {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    padding: 16px 24px;
    margin-bottom: 32px;
}

.cyc-controls-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ============================================
   LEFT SIDE - Category Tabs
   ============================================ */
.cyc-controls-left {
    flex: 1;
    min-width: 0; /* Important for flex overflow */
}

.cyc-categories-filters {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.cyc-tabs-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9fafb;
    border-radius: 12px;
    padding: 6px;
    overflow: hidden; /* Changed from overflow-x: auto */
    scroll-behavior: smooth;
}

/* Gradient overlays to indicate more content */
.cyc-tabs-container::before,
.cyc-tabs-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cyc-tabs-container::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb, transparent);
}

.cyc-tabs-container::after {
    right: 0;
    background: linear-gradient(to left, #f9fafb, transparent);
}

/* Show gradients when scrollable */
.cyc-tabs-container.has-scroll::before,
.cyc-tabs-container.has-scroll::after {
    opacity: 1;
}

/* Hide left gradient when at start */
.cyc-tabs-container.at-start::before {
    opacity: 0;
}

/* Hide right gradient when at end */
.cyc-tabs-container.at-end::after {
    opacity: 0;
}

.cyc-tabs-wrapper {
    display: flex;
    gap: 6px;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
    z-index: 0;
}

.cyc-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.cyc-tab-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #6b7280;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
    user-select: none;
}

.cyc-tab-button:hover {
    background: #ffffff;
    color: #374151;
}

.cyc-tab-button.active {
    background: #000000;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cyc-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.1);
    color: #6b7280;
    transition: all 0.15s ease;
}

.cyc-tab-button.active .cyc-tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Scroll Navigation Buttons - Hidden by default, shown only when needed */
.cyc-tabs-nav-btn {
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease, background-color 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
    opacity: 0;
    pointer-events: none;
}

.cyc-tabs-nav-btn:hover:not(:disabled) {
    background: #f9fafb;
    border-color: #d1d5db;
}

.cyc-tabs-nav-btn:disabled {
    opacity: 0.2 !important;
    cursor: not-allowed;
}

/* Show buttons only when scrollable */
.cyc-tabs-nav-btn.visible {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.cyc-tabs-nav-btn svg {
    width: 16px;
    height: 16px;
    color: #6b7280;
    transition: color 0.15s ease;
}

.cyc-tabs-nav-btn:hover:not(:disabled) svg {
    color: #374151;
}

/* ============================================
   RIGHT SIDE - View Toggle & Sorting
   ============================================ */
.cyc-controls-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* View Toggle Buttons */
.cyc-view-toggle {
    display: flex;
    gap: 0;
    background: #f9fafb;
    border-radius: 10px;
    padding: 4px;
}

.cyc-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cyc-view-btn:hover {
    background: #ffffff;
    color: #374151;
}

.cyc-view-btn.active {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cyc-view-btn svg {
    width: 18px;
    height: 18px;
}

/* Sorting Dropdown */
.cyc-sort-select {
    padding: 8px 36px 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 4.5L6 7.5L9 4.5" stroke="%236b7280" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat right 12px center;
    background-size: 12px;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 160px;
}

.cyc-sort-select:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
}

.cyc-sort-select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Results Info - Moved below controls */
.cyc-results-info {
    text-align: center;
    margin: 16px 0 0 0;
    padding: 0;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.cyc-results-count {
    font-weight: 700;
    color: #000000;
}

.cyc-results-total {
    font-weight: 600;
}

/* Hide old filter select (replaced by tabs) */
.cyc-filters-sorting {
    display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop */
@media (min-width: 1280px) {
    .cyc-controls {
        padding: 20px 32px;
    }
    
    .cyc-tab-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .cyc-view-btn {
        width: 40px;
        height: 40px;
    }
    
    .cyc-sort-select {
        font-size: 14px;
        padding: 10px 40px 10px 18px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .cyc-controls-inner {
        gap: 16px;
    }
    
    .cyc-controls-right {
        gap: 10px;
    }
    
    .cyc-sort-select {
        min-width: 140px;
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    .cyc-controls {
        padding: 12px 16px;
        border-radius: 12px;
    }
    
    .cyc-controls-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .cyc-controls-left {
        width: 100%;
    }
    
    .cyc-controls-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .cyc-tabs-container {
        padding: 4px;
    }
    
    .cyc-tab-button {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .cyc-tab-count {
        min-width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .cyc-view-toggle {
        flex: 1;
        justify-content: center;
    }
    
    .cyc-view-btn {
        flex: 1;
        max-width: 48px;
    }
    
    .cyc-sort-select {
        flex: 1;
        min-width: 0;
    }
    
    .cyc-results-info {
        margin-top: 12px;
        font-size: 12px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .cyc-controls {
        padding: 10px 12px;
        margin-bottom: 20px;
    }
    
    .cyc-controls-inner {
        gap: 10px;
    }
    
    .cyc-tab-button {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .cyc-view-btn {
        width: 34px;
        height: 34px;
    }
    
    .cyc-view-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .cyc-sort-select {
        padding: 7px 32px 7px 12px;
        font-size: 12px;
    }
    
    /* Always show scroll buttons on mobile if scrollable */
    .cyc-tabs-nav-btn.visible {
        width: 28px;
        height: 28px;
    }
    
    .cyc-tabs-nav-btn svg {
        width: 14px;
        height: 14px;
    }
    
    /* Reduce gradient width on mobile */
    .cyc-tabs-container::before,
    .cyc-tabs-container::after {
        width: 24px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.cyc-tab-button:focus-visible,
.cyc-view-btn:focus-visible,
.cyc-sort-select:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .cyc-tab-button,
    .cyc-view-btn,
    .cyc-sort-select,
    .cyc-tabs-nav-btn,
    .cyc-tab-count {
        transition: none;
    }
    
    .cyc-tabs-container {
        scroll-behavior: auto;
    }
}

/* High Contrast */
@media (prefers-contrast: high) {
    .cyc-tab-button.active,
    .cyc-view-btn.active {
        border: 2px solid currentColor;
    }
    
    .cyc-controls {
        border: 2px solid currentColor;
    }
}


/* ========================================
   Business Card - Updated Placeholder Styling
   ======================================== */

/* Image - UPDATED */
.cyc-business-image {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
    background: #f5f5f5;
}

.cyc-business-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cyc-business-card:hover .cyc-business-image img {
    transform: scale(1.08);
}

/* No Image - UPDATED: Remove gradient and emoji */
.cyc-business-no-image {
    background: #f5f5f5; /* Simple gray background */
}

.cyc-business-no-image img {
    opacity: 0.6; /* Slightly transparent for placeholder */
}

/* Remove the emoji icon - no longer needed */
.cyc-placeholder-icon {
    display: none;
}

/* Type Badge */
.cyc-business-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ========================================
   List View - Updated Placeholder Styling
   ======================================== */

/* List Item Image - UPDATED */
.cyc-list-item-image {
    flex-shrink: 0;
    width: 11rem;
    height: auto;
    min-height: 8rem;
    background: #f9fafb;
    border-radius: 0.375rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    position: relative;
}

.cyc-list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cyc-list-item:hover .cyc-list-item-image img {
    transform: scale(1.05);
}

/* No Image in List - UPDATED */
.cyc-list-item-image.cyc-business-no-image {
    background: #f5f5f5; /* Simple gray background */
}

.cyc-list-item-image.cyc-business-no-image img {
    opacity: 0.6; /* Slightly transparent for placeholder */
}

/* Remove emoji placeholder - no longer needed */
.cyc-list-item-image .cyc-placeholder-icon {
    display: none;
}

/* Type Badge in List */
.cyc-list-item-image .cyc-business-type {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* ========================================
   Business Card Footer - Price and Button
   ======================================== */

.cyc-business-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.cyc-business-price {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

/* Button - Updated στυλ που ταιριάζει με το list view */
.cyc-business-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cyc-business-link:hover {
    background: #111827;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cyc-business-link:active {
    transform: translateY(0);
}

.cyc-business-link:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* ========================================
   Business Card - Ensure proper layout
   ======================================== */

.cyc-business-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cyc-business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.cyc-business-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* ========================================
   Responsive Adjustments
   ======================================== */

@media (max-width: 768px) {
    .cyc-business-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .cyc-business-price {
        text-align: center;
    }
    
    .cyc-business-link {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cyc-business-footer {
        padding-top: 12px;
    }
    
    .cyc-business-price {
        font-size: 15px;
    }
    
    .cyc-business-link {
        padding: 9px 18px;
        font-size: 13px;
    }
}

/* ========================================
   FEATURED SLIDER - Performance Optimized
   ======================================== */

.cyc-featured-container {
    margin: 40px 0;
    contain: layout style paint; /* 🚀 CSS containment */
}

.cyc-featured-container .cyc-slider-view {
    padding: 20px 0;
}

/* Featured Card - Enhanced */
.cyc-featured-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    will-change: transform; /* 🚀 GPU acceleration hint */
}

.cyc-featured-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

/* Featured Badge - Optimized */
.cyc-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    z-index: 2;
    transform: translateZ(0); /* 🚀 GPU acceleration */
}

/* Splide - Featured Customization */
.cyc-featured-container .cyc-splide {
    padding: 30px 0;
}

.cyc-featured-container .cyc-splide .splide__arrow {
    width: 3.5rem !important;
    height: 3.5rem !important;
    background: linear-gradient(135deg, #54C1D4 0%, #1F6572 100%) !important;
    transition: transform 0.2s ease; /* 🚀 Shorter transition */
}

.cyc-featured-container .cyc-splide .splide__arrow svg {
    fill: #fff;
}

.cyc-featured-container .cyc-splide .splide__arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(58, 166, 185, 0.45);
}

/* Pagination για Featured */
.cyc-featured-container .splide__pagination {
    bottom: -30px;
}

.cyc-featured-container .splide__pagination__page {
    background: #d1d5db;
    opacity: 1;
    transition: all 0.2s ease;
}

.cyc-featured-container .splide__pagination__page.is-active {
    background: #000;
    transform: scale(1.3);
}

/* 🚀 Performance - Reduce motion για low-end devices */
@media (prefers-reduced-motion: reduce) {
    .cyc-featured-card,
    .cyc-featured-badge,
    .cyc-splide .splide__arrow {
        transition: none;
        will-change: auto;
    }
    
    .cyc-featured-card:hover {
        transform: none;
    }
}

/* 🚀 Mobile optimization */
@media (max-width: 768px) {
    .cyc-featured-container {
        margin: 30px 0;
    }
    
    .cyc-featured-badge {
        font-size: 10px;
        padding: 4px 10px;
        top: 10px;
        right: 10px;
    }
    
    .cyc-featured-container .cyc-splide .splide__arrow {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
}


/* ========================================
   FEATURED SLIDER STYLES
   ======================================== */

/* Featured Container */
.cyc-featured-container {
    margin: 40px 0;
    contain: layout style paint; /* 🚀 CSS containment for performance */
}

.cyc-featured-container .cyc-slider-view {
    padding: 20px 0;
}

/* Featured Card - Enhanced hover */
.cyc-featured-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    will-change: transform; /* 🚀 GPU acceleration hint */
}

.cyc-featured-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

/* Featured Badge */
.cyc-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    z-index: 2;
    transform: translateZ(0); /* 🚀 GPU acceleration */
}

/* Splide - Featured Customization */
.cyc-featured-splide .splide__arrow {
    width: 3.5rem !important;
    height: 3.5rem !important;
    background: linear-gradient(135deg, #54C1D4 0%, #1F6572 100%) !important;
    transition: transform 0.2s ease;
}

.cyc-featured-splide .splide__arrow svg {
    fill: #fff;
}

.cyc-featured-splide .splide__arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(58, 166, 185, 0.45);
}

/* Pagination for Featured */
.cyc-featured-splide .splide__pagination {
    bottom: -30px;
}

.cyc-featured-splide .splide__pagination__page {
    background: #d1d5db;
    opacity: 1;
    transition: all 0.2s ease;
}

.cyc-featured-splide .splide__pagination__page.is-active {
    background: #000;
    transform: scale(1.3);
}

/* 🚀 Performance - Reduce motion for low-end devices */
@media (prefers-reduced-motion: reduce) {
    .cyc-featured-card,
    .cyc-featured-badge,
    .cyc-featured-splide .splide__arrow {
        transition: none;
        will-change: auto;
    }
    
    .cyc-featured-card:hover {
        transform: none;
    }
}

/* 🚀 Mobile optimization */
@media (max-width: 768px) {
    .cyc-featured-container {
        margin: 30px 0;
    }
    
    .cyc-featured-badge {
        font-size: 10px;
        padding: 4px 10px;
        top: 10px;
        right: 10px;
    }
    
    .cyc-featured-splide .splide__arrow {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
}

/* ============================================
   ISLAND FILTER - ADD THIS TO YOUR businesses.css
   ============================================ */

/* Update controls-left to flex column */
.cyc-controls-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px; /* ✅ Space between categories and island filter */
}

/* Island Filter Dropdown */
.cyc-island-filter {
    width: 100%;
    position: relative;
}

.cyc-island-select {
    width: 100%;
    padding: 8px 36px 8px 40px; /* Left padding for icon */
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 4.5L6 7.5L9 4.5" stroke="%236b7280" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat right 12px center;
    background-size: 12px;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.cyc-island-select:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
}

.cyc-island-select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* ============================================
   RESPONSIVE - Island Filter
   ============================================ */

@media (max-width: 768px) {
    .cyc-island-filter {
        margin-top: 8px;
    }
    
    .cyc-island-select {
        font-size: 12px;
        padding: 7px 32px 7px 36px;
    }
    
    .cyc-island-filter::before {
        font-size: 14px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .cyc-island-select {
        padding: 6px 28px 6px 32px;
    }
}


/* ========================================
   DISABLED BOOKING BUTTON STYLES
   ======================================== */

/**
 * Disabled state for booking buttons
 * Applied when seoAlias is null/missing
 */

/* Grid View - Disabled Button */
.cyc-business-link-disabled {
    /* Visual disabled state */
    background-color: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    
    /* Prevent interaction */
    pointer-events: none;
    
    /* Subtle opacity */
    opacity: 0.6;
    
    /* No hover effects */
    transition: none;
}

.cyc-business-link-disabled:hover,
.cyc-business-link-disabled:focus {
    background-color: #e5e7eb !important;
    color: #9ca3af !important;
    transform: none !important;
    box-shadow: none !important;
}

/* List View - Disabled Button */
.cyc-list-view-more-btn.cyc-business-link-disabled {
    background-color: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    pointer-events: none;
    opacity: 0.6;
}

.cyc-list-view-more-btn.cyc-business-link-disabled:hover {
    background-color: #e5e7eb !important;
    transform: none !important;
}

/* Slider View - Uses same styles as Grid */
.cyc-businesses-slider .cyc-business-link-disabled {
    background-color: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    pointer-events: none;
    opacity: 0.6;
}

/* Optional: Add a "lock" icon before disabled buttons */
.cyc-business-link-disabled::before {
    content: "🔒 ";
    margin-right: 4px;
    font-size: 0.9em;
}

/* Optional: Tooltip on hover (CSS-only) */
.cyc-business-link-disabled[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 8px;
    z-index: 1000;
    
    /* Even for disabled, show tooltip */
    pointer-events: auto;
}

/* Tooltip arrow */
.cyc-business-link-disabled[title]:hover::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1f2937;
    margin-bottom: 2px;
}

/* For accessibility - mark as disabled */
.cyc-business-link-disabled[aria-disabled="true"] {
    /* Already handled above, but explicitly mark */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .cyc-business-link-disabled {
        background-color: #374151 !important;
        color: #6b7280 !important;
    }
    
    .cyc-business-link-disabled:hover,
    .cyc-business-link-disabled:focus {
        background-color: #374151 !important;
        color: #6b7280 !important;
    }
}

/* ========================================
   ENHANCED ACTIVE BUTTON STYLES
   (Make active buttons more distinct)
   ======================================== */

/* Make active buttons stand out more */
.cyc-business-link:not(.cyc-business-link-disabled) {
    /* Already defined in main CSS, but ensure prominence */
    position: relative;
    overflow: visible;
}

.cyc-business-link:not(.cyc-business-link-disabled):hover {
    /* Enhance the hover effect */
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Add subtle animation on active buttons */
@keyframes pulse-available {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
    }
    50% {
        box-shadow: 0 2px 12px rgba(59, 130, 246, 0.4);
    }
}

.cyc-business-link:not(.cyc-business-link-disabled):focus {
    animation: pulse-available 2s ease-in-out infinite;
}

/* Disabled Button Styles */
.cyc-business-link.cyc-disabled,
.cyc-list-view-more-btn.cyc-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #ccc !important;
    color: #666 !important;
    pointer-events: none;
}

.cyc-business-link.cyc-disabled:hover,
.cyc-list-view-more-btn.cyc-disabled:hover {
    background-color: #ccc !important;
    transform: none !important;
}

/* Tooltip για disabled state */
.cyc-business-link.cyc-disabled[title],
.cyc-list-view-more-btn.cyc-disabled[title] {
    position: relative;
}