/**
 * FareSeeker Public Styles
 * Modern, responsive flight deals display
 */

/* Container */
.fareseeker-deals-container,
.fareseeker-routes-container,
.fareseeker-search-container,
.fareseeker-stats-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Round Trip Banner */
.fareseeker-roundtrip-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.fareseeker-roundtrip-banner span:first-child,
.fareseeker-roundtrip-banner span:last-child {
    font-size: 20px;
}

/* Loading */
.fareseeker-loading {
    text-align: center;
    padding: 60px 20px;
}

.fareseeker-spinner {
    display: inline-block;
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: fareseeker-spin 1s linear infinite;
}

@keyframes fareseeker-spin {
    to { transform: rotate(360deg); }
}

.fareseeker-loading p {
    margin-top: 16px;
    color: #6b7280;
    font-size: 16px;
}

/* No Results */
.fareseeker-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 18px;
}

/* Filters */
.fareseeker-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.fareseeker-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 180px;
}

.fareseeker-filter-group label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.fareseeker-filter-group select {
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.fareseeker-filter-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Grid Layout */
.fareseeker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.fareseeker-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.fareseeker-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.fareseeker-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Deal Card */
.fareseeker-deal-card,
.fareseeker-route-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fareseeker-deal-card:hover,
.fareseeker-route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.fareseeker-deal-header,
.fareseeker-route-header {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
    padding: 20px;
}

.fareseeker-route-cities {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fareseeker-route-from,
.fareseeker-route-to,
.fareseeker-route {
    text-align: center;
    flex: 1;
}

.fareseeker-city {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.fareseeker-code {
    display: block;
    font-size: 13px;
    opacity: 0.85;
    margin-top: 2px;
}

.fareseeker-arrow {
    font-size: 28px;
    margin: 0 12px;
}

/* Card Body */
.fareseeker-deal-body,
.fareseeker-route-body {
    padding: 24px;
    text-align: center;
}

/* Price */
.fareseeker-price {
    font-size: 36px;
    font-weight: 800;
    color: #16a34a;
    margin-bottom: 8px;
}

.fareseeker-price-section {
    margin-bottom: 12px;
}

.fareseeker-from-label {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

/* Savings */
.fareseeker-savings {
    margin-bottom: 16px;
}

.fareseeker-savings-regular {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 14px;
}

.fareseeker-savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 8px;
}

.fareseeker-you-save {
    color: #16a34a;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

/* Dates */
.fareseeker-dates {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.fareseeker-date {
    text-align: center;
}

.fareseeker-date-label {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.fareseeker-date-value {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* Meta */
.fareseeker-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.fareseeker-airline,
.fareseeker-stops {
    font-size: 13px;
    color: #6b7280;
}

.fareseeker-flight-count {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
}

/* Card Footer */
.fareseeker-deal-footer,
.fareseeker-route-footer {
    padding: 16px 24px 24px;
}

.fareseeker-book-btn,
.fareseeker-see-deals-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: #3b82f6;
    color: white !important;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.fareseeker-book-btn:hover,
.fareseeker-see-deals-btn:hover {
    background: #2563eb;
    transform: scale(1.02);
}

/* Search Form */
.fareseeker-search-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    text-align: center;
}

.fareseeker-search-form {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.fareseeker-search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.fareseeker-search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fareseeker-search-field label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.fareseeker-search-field select,
.fareseeker-search-field input {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.fareseeker-search-field select:focus,
.fareseeker-search-field input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.fareseeker-search-actions {
    text-align: center;
}

.fareseeker-search-btn {
    padding: 14px 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fareseeker-search-btn:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.fareseeker-search-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Stats Container */
.fareseeker-stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.fareseeker-stat-box {
    background: white;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s;
}

.fareseeker-stat-box:hover {
    transform: translateY(-4px);
}

.fareseeker-stat-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.fareseeker-stat-value {
    font-size: 42px;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
}

.fareseeker-stat-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .fareseeker-cols-2,
    .fareseeker-cols-3,
    .fareseeker-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .fareseeker-roundtrip-banner {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .fareseeker-stats-container {
        flex-direction: column;
    }
    
    .fareseeker-stat-box {
        padding: 24px;
    }
    
    .fareseeker-stat-value {
        font-size: 32px;
    }
    
    .fareseeker-filters {
        flex-direction: column;
    }
    
    .fareseeker-search-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.fareseeker-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.fareseeker-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.fareseeker-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}

.fareseeker-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.fareseeker-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.fareseeker-hero-search {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.fareseeker-hero-search .fareseeker-search-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.fareseeker-hero-search .fareseeker-search-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    text-align: left;
}

.fareseeker-hero-search .fareseeker-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.fareseeker-hero-search .fareseeker-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.fareseeker-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.fareseeker-hero-stats .fareseeker-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fareseeker-hero-stats .fareseeker-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.fareseeker-hero-stats .fareseeker-stat-price {
    color: #fbbf24;
}

.fareseeker-hero-stats .fareseeker-stat-label {
    font-size: 14px;
    opacity: 0.8;
    color: white;
}

/* ========================================
   WEEKEND ESCAPES
   ======================================== */

.fareseeker-weekend-escapes {
    padding: 20px;
}

.fareseeker-weekend-header {
    text-align: center;
    margin-bottom: 30px;
}

.fareseeker-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.fareseeker-section-title .fareseeker-icon {
    margin-right: 10px;
}

.fareseeker-section-subtitle {
    font-size: 1rem;
    color: #6b7280;
}

.fareseeker-weekend-card {
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.fareseeker-weekend-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.fareseeker-weekend-card.is-value-deal {
    border-color: #22c55e;
}

.fareseeker-weekend-card .fareseeker-card-header {
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.fareseeker-weekend-card .fareseeker-route {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1f2937;
}

.fareseeker-weekend-card .fareseeker-arrow {
    color: #9ca3af;
}

.fareseeker-badges {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.fareseeker-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.fareseeker-badge-weekend {
    background: #dbeafe;
    color: #1d4ed8;
}

.fareseeker-badge-intl {
    background: #fef3c7;
    color: #92400e;
}

.fareseeker-badge-value {
    background: #dcfce7;
    color: #166534;
}

.fareseeker-weekend-card .fareseeker-card-body {
    padding: 16px;
}

.fareseeker-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
}

.fareseeker-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #059669;
}

.fareseeker-currency {
    font-size: 14px;
    color: #6b7280;
}

.fareseeker-dates {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 8px;
}

.fareseeker-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #6b7280;
}

.fareseeker-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.fareseeker-tag {
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #4b5563;
}

.fareseeker-weekend-card .fareseeker-card-footer {
    padding: 16px;
    border-top: 1px solid #f3f4f6;
}

/* ========================================
   BUTTONS
   ======================================== */

.fareseeker-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.fareseeker-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.fareseeker-btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.fareseeker-btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.fareseeker-btn-icon {
    font-size: 1.2em;
}

.fareseeker-btn-block {
    width: 100%;
}

/* ========================================
   GRID SYSTEM
   ======================================== */

.fareseeker-grid {
    display: grid;
    gap: 24px;
}

.fareseeker-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.fareseeker-col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.fareseeker-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ========================================
   AUTOCOMPLETE
   ======================================== */

.fareseeker-search-field {
    position: relative;
}

.fareseeker-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.fareseeker-autocomplete-dropdown.active {
    display: block;
}

.fareseeker-autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
}

.fareseeker-autocomplete-item:hover {
    background: #f3f4f6;
}

.fareseeker-autocomplete-item:last-child {
    border-bottom: none;
}

.fareseeker-autocomplete-city {
    font-weight: 600;
    color: #1f2937;
}

.fareseeker-autocomplete-code {
    font-size: 13px;
    color: #6b7280;
    margin-left: 8px;
}

/* ========================================
   RESPONSIVE HERO & WEEKEND
   ======================================== */

@media (max-width: 768px) {
    .fareseeker-hero {
        min-height: 400px;
        padding: 40px 16px;
    }

    .fareseeker-hero-title {
        font-size: 2rem;
    }

    .fareseeker-hero-subtitle {
        font-size: 1rem;
    }

    .fareseeker-hero-search .fareseeker-search-row {
        grid-template-columns: 1fr;
    }

    .fareseeker-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .fareseeker-hero-stats .fareseeker-stat-value {
        font-size: 1.75rem;
    }

    .fareseeker-col-2,
    .fareseeker-col-3,
    .fareseeker-col-4 {
        grid-template-columns: 1fr;
    }

    .fareseeker-section-title {
        font-size: 1.5rem;
    }

    .fareseeker-filter-row {
        flex-direction: column;
    }
}

/* ========================================
   DARK THEME OVERRIDES v3.0
   Glassmorphism for fareseeker-theme
   ======================================== */

/* Containers */
.fareseeker-deals-container,
.fareseeker-routes-container,
.fareseeker-search-container,
.fareseeker-stats-container {
    color: rgba(255, 255, 255, 0.9);
}

/* Round Trip Banner */
.fareseeker-roundtrip-banner {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.25), rgba(4, 120, 87, 0.25));
    border: 1px solid rgba(52, 211, 153, 0.2);
    color: #34d399;
    box-shadow: none;
}

/* Loading */
.fareseeker-spinner {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: #a855f7;
}

.fareseeker-loading p {
    color: rgba(255, 255, 255, 0.5);
}

/* No Results */
.fareseeker-no-results {
    color: rgba(255, 255, 255, 0.5);
}

/* Filters */
.fareseeker-filters {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fareseeker-filter-group label {
    color: rgba(255, 255, 255, 0.5);
}

.fareseeker-filter-group select {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.fareseeker-filter-group select option {
    background: #0f172a;
}

.fareseeker-filter-group select:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

/* Deal/Route Cards */
.fareseeker-deal-card,
.fareseeker-route-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.fareseeker-deal-card:hover,
.fareseeker-route-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(168, 85, 247, 0.3);
}

/* Card Headers */
.fareseeker-deal-header,
.fareseeker-route-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fareseeker-code {
    opacity: 0.6;
}

/* Card Body */
.fareseeker-deal-body,
.fareseeker-route-body {
    color: rgba(255, 255, 255, 0.8);
}

/* Price */
.fareseeker-price {
    background: linear-gradient(135deg, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fareseeker-from-label {
    color: rgba(255, 255, 255, 0.4);
}

/* Savings */
.fareseeker-savings-regular {
    color: rgba(255, 255, 255, 0.35);
}

.fareseeker-you-save {
    color: #34d399;
}

/* Dates */
.fareseeker-date-label {
    color: rgba(255, 255, 255, 0.4);
}

.fareseeker-date-value {
    color: rgba(255, 255, 255, 0.85);
}

/* Meta */
.fareseeker-airline,
.fareseeker-stops,
.fareseeker-flight-count {
    color: rgba(255, 255, 255, 0.45);
}

/* Buttons */
.fareseeker-book-btn,
.fareseeker-see-deals-btn {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.fareseeker-book-btn:hover,
.fareseeker-see-deals-btn:hover {
    background: linear-gradient(135deg, #9333ea, #db2777);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.fareseeker-btn-primary {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.fareseeker-btn-primary:hover {
    background: linear-gradient(135deg, #9333ea, #db2777);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

/* Search Form */
.fareseeker-search-title {
    color: rgba(255, 255, 255, 0.9);
}

.fareseeker-search-form {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fareseeker-search-field label {
    color: rgba(255, 255, 255, 0.5);
}

.fareseeker-search-field select,
.fareseeker-search-field input {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.fareseeker-search-field select option {
    background: #0f172a;
}

.fareseeker-search-field select:focus,
.fareseeker-search-field input:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

.fareseeker-search-btn {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.fareseeker-search-btn:hover:not(:disabled) {
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

/* Stats */
.fareseeker-stat-box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.fareseeker-stat-box:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.fareseeker-stat-value {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fareseeker-stat-label {
    color: rgba(255, 255, 255, 0.5);
}

/* Hero */
.fareseeker-hero-search {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.fareseeker-hero-search .fareseeker-search-field label {
    color: rgba(255, 255, 255, 0.6);
}

.fareseeker-hero-search .fareseeker-input {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.fareseeker-hero-search .fareseeker-input:focus {
    border-color: #a855f7;
}

/* Weekend Escapes */
.fareseeker-section-title {
    color: rgba(255, 255, 255, 0.9);
}

.fareseeker-section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.fareseeker-weekend-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.08);
}

.fareseeker-weekend-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.fareseeker-weekend-card.is-value-deal {
    border-color: rgba(52, 211, 153, 0.3);
}

.fareseeker-weekend-card .fareseeker-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.fareseeker-weekend-card .fareseeker-route {
    color: rgba(255, 255, 255, 0.9);
}

.fareseeker-weekend-card .fareseeker-arrow {
    color: rgba(255, 255, 255, 0.35);
}

.fareseeker-badges .fareseeker-badge-weekend {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.fareseeker-badges .fareseeker-badge-intl {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.fareseeker-badges .fareseeker-badge-value {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.fareseeker-weekend-card .fareseeker-card-footer {
    border-top-color: rgba(255, 255, 255, 0.06);
}

.fareseeker-currency {
    color: rgba(255, 255, 255, 0.45);
}

.fareseeker-dates {
    color: rgba(255, 255, 255, 0.6);
}

.fareseeker-meta {
    color: rgba(255, 255, 255, 0.45);
}

.fareseeker-tag {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Autocomplete */
.fareseeker-autocomplete-dropdown {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.fareseeker-autocomplete-item {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.fareseeker-autocomplete-item:hover {
    background: rgba(168, 85, 247, 0.15);
}

.fareseeker-autocomplete-city {
    color: rgba(255, 255, 255, 0.9);
}

.fareseeker-autocomplete-code {
    color: rgba(255, 255, 255, 0.45);
}