/**
 * Experience Portal v3 — Premium Boxed Design
 */

:root {
    --aw-primary: #00A5B5;
    --aw-primary-hover: #008f96;
    --aw-primary-soft: rgba(0, 165, 181, 0.06);
    --aw-tangerine: #FAA638;
    --aw-text-main: #475569;
    --aw-text-dark: #1E293B;
    --aw-text-muted: #64748B;
    --aw-text-light: #94A3B8;
    --aw-bg-body: #F8FAFC;
    --aw-white: #FFFFFF;
    --aw-border: #E2E8F0;
    --aw-shadow-sm: 0px 2px 4px rgba(0, 0, 0, 0.05);
    --aw-shadow-md: 0px 8px 32px rgba(0, 0, 0, 0.05);
    --aw-radius-lg: 24px;
    --aw-radius-md: 16px;
    --aw-radius-sm: 12px;
}

.aw-portal-wrapper {
    font-family: 'Inter', 'Outfit', sans-serif;
    color: var(--aw-text-dark);
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px;
    background: var(--aw-bg-body);
}

.aw-portal-container {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .aw-portal-container {
        flex-direction: column;
    }

    .aw-portal-wrapper {
        padding: 16px;
    }
}

/* SIDEBAR */
.aw-portal-sidebar {
    flex: 0 0 300px;
    background: var(--aw-white);
    padding: 24px;
    border-radius: var(--aw-radius-lg);
    box-shadow: var(--aw-shadow-md);
    position: sticky;
    top: 20px;
}

.aw-sidebar-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--aw-text-dark);
}

.aw-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aw-nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-radius: var(--aw-radius-md);
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
    position: relative;
}

.aw-nav-item:hover {
    background: #F1F5F9;
}

.aw-nav-item.is-active {
    background: var(--aw-primary-soft);
    border-color: rgba(0, 165, 181, 0.1);
}

.aw-nav-item.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 4px;
    background: var(--aw-primary);
    border-radius: 0 4px 4px 0;
}

.aw-nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    border-radius: 12px;
    color: var(--aw-text-muted);
    flex-shrink: 0;
}

.aw-nav-item.is-active .aw-nav-icon {
    background: #CCFBF1;
    color: var(--aw-primary);
}

.aw-nav-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--aw-text-main);
}

.aw-nav-item.is-active .aw-nav-label {
    color: var(--aw-primary);
}

/* MAIN CONTENT */
.aw-portal-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

/* HERO */
.aw-portal-hero {
    border-radius: var(--aw-radius-lg);
    overflow: hidden;
    background: var(--aw-white);
    box-shadow: var(--aw-shadow-md);
}

.aw-hero-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.aw-hero-overlay {
    padding: 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    width: 100%;
}

.aw-hero-title {
    color: #FFF;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.aw-hero-title-underline {
    width: 80px;
    height: 4px;
    background: var(--aw-tangerine);
}

.aw-hero-content {
    padding: 24px 40px;
}

.aw-hero-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--aw-text-muted);
}

/* MODE TOGGLE - REFINED MATCHING MOCKUP */
.aw-portal-mode-toggle {
    background: var(--aw-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--aw-shadow-md);

}

.aw-portal-mode-toggle h4 {
    margin: 0 0 20px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--aw-text-dark);
}

.aw-toggle-options {
    display: flex;
    gap: 12px;
}

.aw-toggle-card {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 48px;
    background: #FFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
    user-select: none;
    overflow: visible;
    /* Prevent clipping */
}

.aw-toggle-card:hover {
    border-color: var(--aw-primary);
}

.aw-toggle-card.is-active {
    background: rgba(0, 165, 181, 0.04);
    border-color: var(--aw-primary);
}

.aw-toggle-card input[type="radio"] {
    display: none;
}

.aw-toggle-radio {
    width: 18px;
    height: 18px;
    border: 1.5px solid #CBD5E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #FFF;
    box-sizing: border-box;
}

.aw-toggle-card.is-active .aw-toggle-radio {
    border-color: var(--aw-primary);
}

.aw-toggle-card.is-active .aw-toggle-radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--aw-primary);
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}

.aw-toggle-icon {
    font-size: 18px;
    color: #64748B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    line-height: 1;
}

.aw-toggle-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    transition: all 0.2s ease;
}

.aw-toggle-card.is-active .aw-toggle-icon {
    color: var(--aw-primary);
}

/* Force FontAwesome to show if missing */
.aw-toggle-icon i {
    display: inline-block !important;
    font-family: "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900;
    font-style: normal;
}

.aw-toggle-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--aw-text-dark);
    white-space: nowrap;
}

.aw-toggle-card:not(.is-active) .aw-toggle-text {
    color: #64748B;
}

.aw-toggle-card.is-active .aw-toggle-radio::after {
    content: "";
    position: absolute;

    background: var(--aw-primary);
    border-radius: 50%;
}

.aw-toggle-icon {
    font-size: 22px;
    color: var(--aw-text-muted);
}

.aw-toggle-card.is-active .aw-toggle-icon {
    color: var(--aw-primary);
}

.aw-toggle-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--aw-text-main);
}

.aw-toggle-card.is-active .aw-toggle-text {
    color: var(--aw-text-dark);
}

/* ═══════════════════════════════════════════════════ */
/* FLOW CONTAINER: Controls visual order by mode       */
/* ═══════════════════════════════════════════════════ */

/* Unified single-card container for ALL modes */
.aw-flow-container {
    display: flex;
    flex-direction: column;
    background: #FFF;
    border-radius: var(--aw-radius-lg);
    border: 1.5px solid var(--aw-border);
    box-shadow: var(--aw-shadow-sm);
    padding: 32px;

}

/* Base styles for sections inside the unified container */
.aw-flow-container>section {
    transition: opacity 0.35s ease;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
}

/* —— Mode: Artwork (default) —— */
.aw-flow-container[data-mode="artwork"] .aw-artwork-selector {
    order: 1;
}

.aw-flow-container[data-mode="artwork"] .aw-session-scheduler {
    order: 2;
    margin-top: 32px;
    border-top: 1px solid var(--aw-border);
}

.aw-flow-container[data-mode="artwork"] .aw-booking-selection {
    order: 3;
    /* padding-top: 32px;
    margin-top: 32px; */
    border-top: 1px solid var(--aw-border);
}

/* —— Mode: Date —— */
.aw-flow-container[data-mode="date"] .aw-session-scheduler {
    order: 1;
}

.aw-flow-container[data-mode="date"] .aw-artwork-selector {
    order: 2;
    margin-top: 10px;
}

.aw-flow-container[data-mode="date"] .aw-booking-selection {
    order: 3;
    margin-top: 10px;
}

.aw-session-scheduler {
    display: none;
}

.aw-session-scheduler.is-visible {
    display: block;
}


.aw-selector-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    gap: 24px;
}

@media (max-width: 768px) {
    .aw-selector-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.aw-header-text h3,
#aw-gallery-main-title,
.aw-scheduler-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 24px 0;
    color: var(--aw-text-dark, #1E293B);
    display: block !important;
}

.aw-section-subtitle,
#aw-gallery-secondary-title,
#aw-slots-title {
    font-size: 11px;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 !important;
}

.aw-header-text p {
    font-size: 15px;
    color: var(--aw-text-muted);
    margin: 0;
}

#aw-active-date-display {
    color: var(--aw-text-dark, #1E293B);
    /* Make it black instead of primary color to match mockup */
    font-weight: 800;
}

#aw-gallery-secondary-header {
    margin: 0 0 24px 0;
    padding: 0;
}

#aw-gallery-secondary-header h4 {
    margin-top: 0;
}

.aw-gallery-secondary-note,
.aw-scheduler-note {
    font-size: 14px;
    color: #94A3B8;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.aw-header-search {
    flex: 0 0 320px;
    align-self: flex-start;
}

.aw-search-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.aw-search-container input {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 44px !important;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    background: #F8FAFC;
    font-size: 14px;
    color: var(--aw-text-main);
    transition: all 0.2s;
    outline: none;
}

.aw-search-container input:focus {
    border-color: var(--aw-primary);
    background: #FFF;
    box-shadow: 0 0 0 4px rgba(0, 165, 181, 0.08);
}

.aw-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #94A3B8;
    pointer-events: none;
    z-index: 5;
    display: block !important;
}

.aw-filter-chips {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.aw-chip {
    padding: 10px 22px;
    border-radius: 100px;
    background: #FFF;
    border: 1.5px solid #E2E8F0;
    color: #64748B;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.aw-chip:hover {
    border-color: var(--aw-primary-soft);
    color: var(--aw-primary);
}

.aw-chip.is-active {
    background: var(--aw-primary);
    color: #FFF;
    border-color: var(--aw-primary);
    box-shadow: 0 4px 12px rgba(0, 165, 181, 0.25);
}

/* SLIDER LAYOUT */
.aw-gallery-slider-container {
    position: relative;
    margin-bottom: 32px;
    padding: 0 10px;
}

.aw-artworks-gallery {
    overflow: hidden;
    padding: 10px 0 20px 0;
}

.swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.swiper-slide {
    flex-shrink: 0;
    height: auto;
    position: relative;
    transition-property: transform;
}

.aw-artwork-card {
    background: var(--aw-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--aw-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: var(--aw-shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.aw-artwork-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.aw-artwork-card.is-selected {
    border: 2px solid #45AAB8;
}

.aw-artwork-card.is-agotado {
    opacity: 0.6;
    cursor: not-allowed;

}

.aw-artwork-card.is-agotado:hover {
    transform: none;
    box-shadow: var(--aw-shadow-sm);
}

.aw-card-image {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* BADGES */
.aw-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    color: #FFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.aw-badge-limited {
    background: #F97316;
    /* Orange */
}

.aw-badge-session {
    background: rgba(30, 41, 59, 0.8);
    /* Dark Slate Grey */
    backdrop-filter: blur(4px);
}

.aw-badge-agotado {
    background: #94A3B8;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SELECTION INDICATOR */
.aw-card-check {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    background: var(--aw-primary);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 165, 181, 0.3);
    z-index: 2;
}

.is-selected .aw-card-check {
    opacity: 1;
    transform: scale(1);
}

.aw-card-info {
    padding: 16px 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.aw-card-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: var(--aw-text-dark);
}

/* SLIDER NAVIGATION */
.aw-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aw-text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.aw-slider-nav:hover {
    background: var(--aw-primary);
    color: #FFF;
    transform: translateY(-50%) scale(1.1);
}

.aw-slider-nav svg {
    width: 22px;
    height: 22px;
}

.aw-nav-prev {
    left: -10px;
}

.aw-nav-next {
    right: -10px;
}

/* FOOTER BUTTON */
.aw-gallery-footer {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.aw-btn-browse-all {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: #FFF;
    border: 2px dashed #CBD5E1;
    border-radius: 16px;
    color: #64748B;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.aw-btn-browse-all:hover {
    border-color: var(--aw-primary);
    color: var(--aw-primary);
    background: rgba(0, 165, 181, 0.02);
}

.aw-btn-browse-all svg {
    color: #94A3B8;
    transition: color 0.2s;
}

.aw-btn-browse-all:hover svg {
    color: var(--aw-primary);
}

.aw-gallery-footer {
    margin-top: 16px;
}

.aw-btn-secondary {
    width: 100%;
    padding: 14px;
    border: 1.5px dashed var(--aw-border);
    background: transparent;
    border-radius: var(--aw-radius-sm);
    color: var(--aw-text-muted);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* SCHEDULER CONTROLS ROW */
.aw-scheduler-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 !important;

}

.aw-scheduler-controls {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .aw-scheduler-controls {
        flex-direction: column;
    }
}

.aw-control-item {
    flex: 1;
    position: relative;
}

.aw-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--aw-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

.aw-input-icon svg {
    width: 18px;
    height: 18px;
    stroke: #00A5B5;
    /* Teal icon */
    stroke-width: 2.5px;
}

.aw-control-item select,
.aw-people-counter {
    width: 100%;
    height: 54px;
    padding: 0 16px 0 48px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #FFF;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    appearance: none;
    transition: all 0.2s;
}

.aw-control-item select:focus,
.aw-people-counter:focus-within {
    border-color: #00A5B5;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 165, 181, 0.08);
}

.aw-control-item select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

.aw-people-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aw-counter-controls {
    display: flex;
    gap: 12px;
}

.aw-counter-controls button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--aw-border);
    background: #FFF;
    color: var(--aw-text-muted);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CALENDAR STRIP */
.aw-weekly-calendar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.aw-cal-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--aw-border);
    background: #FFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aw-primary);
    transition: all 0.2s ease;
    padding: 0;
}

.aw-cal-nav:hover {
    background: var(--aw-primary-soft);
    border-color: var(--aw-primary);
}

.aw-cal-nav svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.aw-days-strip {
    flex: 1;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0 12px;
}

/* CALENDAR EMPTY STATE */
.aw-calendar-empty {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 24px;
    text-align: center;
    background: #F8FAFC;
    border: 2px dashed var(--aw-border);
    border-radius: var(--aw-radius-md);
}

.aw-calendar-empty svg {
    color: var(--aw-text-light);
    opacity: 0.6;
}

.aw-calendar-empty p {
    font-size: 15px;
    font-weight: 500;
    color: var(--aw-text-muted);
    margin: 0;
    line-height: 1.5;
}

.aw-calendar-empty p strong {
    color: var(--aw-primary);
    font-weight: 700;
}



.aw-cal-day {
    flex: 0 0 94px;
    height: 112px;
    background: #F1F5F9;
    border: 1px solid transparent;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.aw-cal-day.is-active {
    background: #45AAB8;
    box-shadow: 0 10px 15px -3px rgba(69, 170, 184, 0.3);
}

.aw-cal-day .day-name {
    font-size: 10px;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.aw-cal-day .day-number {
    font-size: 26px;
    font-weight: 800;
    color: #1E293B;
    line-height: 1;
}

.aw-cal-day .day-month {
    font-size: 10px;
    font-weight: 600;
    color: #94A3B8;
    margin-top: 4px;
}

.aw-cal-day.is-active .day-name,
.aw-cal-day.is-active .day-number,
.aw-cal-day.is-active .day-month {
    color: #FFF;
}

/* Availability dot */
.aw-cal-day::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: #45AAB8;
    border-radius: 50%;
    margin-top: 8px;
}

.aw-cal-day.is-active::after {
    background: #FFF;
}

.aw-cal-day.is-active .day-name,
.aw-cal-day.is-active .day-number,
.aw-cal-day.is-active .day-month {
    color: #FFF;
}

.aw-cal-day.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* SLOTS AREA / EMPTY STATE */
.aw-time-slots-area {
    background: #F8FAFC;
    border-radius: var(--aw-radius-md);

    text-align: center;
    margin-bottom: 24px;
}

.aw-empty-slots {
    color: var(--aw-text-muted);
}

.aw-empty-slots .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
    opacity: 0.4;
}

.aw-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.aw-slot-pill {
    padding: 24px;
    background: #FFF;
    border: 1.5px solid var(--aw-border);
    border-radius: var(--aw-radius-md);
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aw-slot-pill:hover {
    border-color: var(--aw-primary-300);
}

.aw-slot-pill.is-selected {
    border-color: var(--aw-primary);
    background: var(--aw-primary-soft);
}

.aw-slot-pill.is-selected::after {
    content: "✓";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: var(--aw-primary);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 4px 8px rgba(0, 165, 181, 0.3);
}

.aw-slot-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--aw-text-dark);
}

.aw-slot-time svg {
    color: var(--aw-primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.aw-slot-stock {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--aw-text-muted);
    font-weight: 600;
}

.aw-slot-stock svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    color: var(--aw-primary);
    flex-shrink: 0;
}

/* GALLERY FOOTER BUTTON */
.aw-gallery-footer {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.aw-btn-browse-all {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1.5px dashed var(--aw-border);
    border-radius: var(--aw-radius-md);
    color: var(--aw-text-muted);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.aw-btn-browse-all:hover {
    border-color: var(--aw-primary);
    color: var(--aw-primary);
    background: var(--aw-primary-soft);
}

.aw-btn-browse-all svg {
    opacity: 0.7;
}

/* FOOTER / CONTINUE BUTTON */
.aw-btn-booking {
    width: 100%;
    height: 64px;
    background: var(--aw-primary);
    color: #FFF;
    border: none;
    border-radius: var(--aw-radius-md);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.aw-btn-booking:disabled {
    background: #E2E8F0;
    color: #94A3B8;
    cursor: not-allowed;
}

.aw-btn-booking:not(:disabled):hover {
    background: var(--aw-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 165, 181, 0.2);
}

.aw-notice {
    padding: 24px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
}

.aw-notice-agotado {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FEE2E2;
    margin: 20px 0;
}

.aw-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 32px;
}

.aw-slot-pill {
    background: #FFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.aw-slot-pill.is-selected {
    border: 1.5px solid #45AAB8;
    background: #F0F9FA;
}

.aw-slot-pill.is-selected::after {
    content: '✓';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #45AAB8;
    color: #FFF;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    border: 2px solid #FFF;
}

.aw-slot-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
}

.aw-slot-time svg {
    color: #45AAB8;
    width: 18px;
    height: 18px;
}

.aw-slot-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748B;
}

.aw-slot-stock svg {
    color: #94A3B8;
    width: 16px;
    height: 16px;
}

.aw-empty-slots {
    padding: 60px 40px;
    text-align: center;
    color: #94A3B8;
    background: #F8FAFC;
    border-radius: 20px;
    border: 2px dashed #E2E8F0;
}

.aw-empty-slots .icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
    opacity: 0.5;
}