/* FILTER STYLES WITH THEMED BOXES */
/* Filter section heading */
.gz-venue-filters::before {
    content: "FILTER VENUES:";
    position: absolute;
    left: 0;
    top: -30px;
    font-size: 14px;
    font-weight: 700;
    color: #364b54;
    letter-spacing: 0.5px;
}

/* Redesigned filter section */
.gz-venue-filters {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding: 10px 0;
    background: none;
    border-bottom: 2px solid #eb6b40;
    position: relative;
    z-index: 10;
}

/* Filter dropdown container */
.gz-venue-filter-dropdown {
    flex: 1;
    position: relative;
    margin-bottom: 0;
    max-width: calc(50% - 10px);
}

/* Filter label */
.gz-venue-filter-dropdown label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #364b54;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Select styling - themed boxes */
.gz-filter-select {
    width: 100%;
    padding: 10px 35px 10px 12px;
    border: 1px solid #e1dddd;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #364b54;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.2s ease;
    box-shadow: none;
    border-radius: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' fill='%23eb6b40' viewBox='0 0 12 6'%3E%3Cpath d='M0 0l6 6 6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* Focus state */
.gz-filter-select:focus {
    outline: none;
    border-color: #eb6b40;
}

/* Hover state */
.gz-filter-select:hover {
    border-color: #eb6b40;
}

/* CARD SLIDER STYLES - HORIZONTAL ROW */
/* Container for horizontal scrolling */
.gz-venue-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 50px; /* Space for arrows */
    margin: 0 -50px; /* Offset padding */
}

/* Convert to horizontal row */
.gz-venue-slider-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    margin: 0;
    scrollbar-width: none; /* Hide scrollbar - Firefox */
    -ms-overflow-style: none; /* Hide scrollbar - IE/Edge */
    position: relative;
    gap: 20px;
}

/* Hide scrollbar for Chrome/Safari */
.gz-venue-slider-wrapper::-webkit-scrollbar {
    display: none;
}

/* Card styling */
.gz-venue-card {
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
    padding: 0;
    margin: 0 0 20px 0;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    transform: none;
    display: block;
}

.gz-venue-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Clear any previous styling */
.gz-venue-content {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

/* Image styling */
.gz-venue-image-container {
    position: relative;
    padding-bottom: 65%;
    height: 0;
    overflow: hidden;
}

.gz-venue-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Venue category tag */
.gz-venue-type-tag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #eb6b40;
    color: #fff;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

/* Venue title */
.gz-venue-title {
    margin: 12px 12px 8px;
    font-size: 16px;
    font-weight: 600;
    color: #364b54;
    line-height: 1.2;
    padding: 0;
    border: none;
}

/* Info grid layout */
.gz-venue-info-grid {
    padding: 0 12px 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

/* Info items with icons */
.gz-venue-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2px;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.gz-venue-info-item i {
    width: 15px;
    margin-right: 8px;
    color: #eb6b40;
    text-align: center;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Address styling */
.gz-venue-address {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    max-width: none;
}

/* Website link */
.gz-venue-link {
    color: #eb6b40;
    text-decoration: none;
}

.gz-venue-link:hover {
    text-decoration: underline;
}

/* Footer with see details button */
.gz-venue-footer {
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    margin-top: auto;
}

.gz-venue-details-btn {
    display: inline-block;
    color: #364b54;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
    background: transparent;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.gz-venue-details-btn i {
    margin-right: 5px;
}

.gz-venue-details-btn:hover {
    color: #eb6b40;
}

/* Modern navigation arrows */
.gz-venue-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.gz-venue-prev {
    left: 10px;
}

.gz-venue-next {
    right: 10px;
}

.gz-venue-nav svg {
    width: 20px;
    height: 20px;
    fill: #eb6b40;
}

.gz-venue-nav:hover {
    background-color: #eb6b40;
    box-shadow: 0 3px 8px rgba(235, 107, 64, 0.3);
}

.gz-venue-nav:hover svg {
    fill: #ffffff;
}

.gz-venue-nav.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* No results message */
.gz-no-results {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e1dddd;
    margin-top: 20px;
    color: #666;
    font-style: italic;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .gz-venue-filters {
        flex-direction: column;
        padding: 0 0 15px 0;
    }
    
    .gz-venue-filter-dropdown {
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .gz-venue-card {
        flex: 0 0 250px;
        min-width: 250px;
    }
}