/* ===================================
   BILLETTERIE FONDATION BREL
   =================================== */

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gold: #c9a962;
    --gold-light: #e0c989;
    --gold-dark: #a68a4b;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--font-body); 
    font-size: 15px; 
    line-height: 1.6; 
    color: var(--gray-800); 
    background: var(--gray-50);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; font-size: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
}
.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-light); }
.btn--gold:disabled { background: var(--gray-300); color: var(--gray-500); cursor: not-allowed; }
.btn--outline { background: transparent; color: var(--gray-700); border: 2px solid var(--gray-300); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; }

/* Header */
.header {
    background: var(--black);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img { height: 40px; }
.nav { display: flex; gap: 32px; }
.nav__link { color: var(--gray-400); font-size: 14px; transition: var(--transition); }
.nav__link:hover, .nav__link--active { color: var(--white); }
.header__lang select {
    background: var(--gray-800);
    color: var(--white);
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.header__lang select:focus {
    outline: none;
}

.header__cart {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}
.header__cart:hover { background: var(--gold); color: var(--black); }
.header__cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main */
.main { flex: 1; padding: 40px 0 80px; }

/* Steps */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    padding: 0 24px;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.step__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}
.step--active .step__number,
.step--done .step__number {
    background: var(--gold);
    color: var(--black);
}
.step--done .step__number {
    background: var(--success);
    color: var(--white);
}
.step__label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.step--active .step__label { color: var(--black); font-weight: 600; }
.step__line {
    width: 80px;
    height: 2px;
    background: var(--gray-200);
    margin: 0 16px;
    margin-bottom: 28px;
}

/* Sections */
.section { display: none; }
.section--active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.section__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}
.section__subtitle {
    color: var(--gray-500);
    font-size: 16px;
    margin-bottom: 32px;
}
.section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}
.section__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

/* Calendar */
.calendar-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}
.calendar {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.calendar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.calendar__month {
    font-family: var(--font-display);
    font-size: 24px;
}
.calendar__nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    transition: var(--transition);
}
.calendar__nav:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}
.calendar__weekdays span {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    padding: 8px;
}
.calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.calendar__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.calendar__day:hover:not(.calendar__day--disabled):not(.calendar__day--empty) {
    background: var(--gray-100);
}
.calendar__day--empty { cursor: default; }
.calendar__day--disabled {
    color: var(--gray-300);
    cursor: not-allowed;
}
.calendar__day--today {
    border-color: var(--gold);
}
.calendar__day--selected {
    background: var(--gold) !important;
    color: var(--black);
}
.calendar__day { position: relative; }

.calendar__day--high::after,
.calendar__day--medium::after,
.calendar__day--low::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.calendar__day--high::after { background: #22c55e; }
.calendar__day--medium::after { background: #f59e0b; }
.calendar__day--low::after { background: #ef4444; }

.calendar__day--selected::after { display: none; }

.calendar-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.calendar-info__card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.calendar-info__card i {
    font-size: 24px;
    color: var(--gold);
}
.calendar-info__card strong {
    display: block;
    margin-bottom: 4px;
}
.calendar-info__card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}
.calendar-info__card a {
    color: var(--gold);
    font-weight: 600;
}

/* Activities */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.activity-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: var(--transition);
}
.activity-card--selected {
    border-color: var(--gold);
}
.activity-card__header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.activity-card__icon {
    width: 56px;
    height: 56px;
    background: var(--black);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.activity-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 4px;
}
.activity-card__duration {
    font-size: 13px;
    color: var(--gray-500);
}
.activity-card__desc {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}
.activity-card__slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.slot {
    padding: 10px 16px;
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.slot:hover { background: var(--gray-200); }
.slot--selected {
    background: var(--gold);
    color: var(--black);
}
.slot--full {
    background: var(--gray-100);
    color: var(--gray-400);
    cursor: not-allowed;
    text-decoration: line-through;
}
.slot__time { font-weight: 600; }
.slot__places {
    font-size: 11px;
    color: var(--gray-500);
    margin-left: 8px;
}
.slot--selected .slot__places { color: var(--gray-700); }

/* Tickets */
.tickets-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}
.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ticket-activity {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.ticket-activity__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}
.ticket-activity__header h3 {
    font-family: var(--font-display);
    font-size: 18px;
}
.ticket-activity__time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-500);
}
.ticket-activity__time i { color: var(--gold); }

.ticket-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}
.ticket-row:last-child { border-bottom: none; }
.ticket-info h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
}
.ticket-info p {
    font-size: 13px;
    color: var(--gray-500);
}
.ticket-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    min-width: 80px;
    text-align: right;
}
.ticket-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ticket-qty button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--white);
    font-size: 18px;
    color: var(--gray-600);
    transition: var(--transition);
}
.ticket-qty button:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.ticket-qty span {
    font-size: 18px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

/* Order Summary */
.order-summary {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}
.order-summary h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 20px;
}
.order-summary__items {
    margin-bottom: 20px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}
.summary-item:last-child { border-bottom: none; }
.summary-item span:first-child { color: var(--gray-600); }
.summary-item span:last-child { font-weight: 500; }
.order-summary__promo {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}
.order-summary__promo input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
}
.order-summary__promo input:focus {
    outline: none;
    border-color: var(--gold);
}
.order-summary__total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.order-summary__total span:last-child {
    color: var(--gold);
}

/* Checkout */
.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}
.checkout-form {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.checkout-form h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 32px;
}
.checkout-form h3:first-child { margin-top: 0; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--gray-700);
}
.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
}
.form-group input:focus {
    outline: none;
    border-color: var(--gold);
}

.payment-methods {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}
.payment-method {
    flex: 1;
    cursor: pointer;
}
.payment-method input { display: none; }
.payment-method__box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}
.payment-method input:checked + .payment-method__box {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.1);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-600);
}
.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}
.checkbox a {
    color: var(--gold);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-500);
}

.trust-badge i {
    color: var(--success);
    font-size: 14px;
}

/* Pack Banner */
.pack-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.pack-banner__content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pack-banner__icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.pack-banner__text h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 4px;
}

.pack-banner__text p {
    font-size: 14px;
    color: var(--gray-600);
}

.pack-banner__text strong {
    color: var(--gold);
}

.pack-banner.selected {
    background: var(--gold);
}

.pack-banner.selected .pack-banner__icon {
    background: var(--black);
    color: var(--gold);
}

.pack-banner.selected .pack-banner__text h4,
.pack-banner.selected .pack-banner__text p {
    color: var(--black);
}

.pack-banner.selected .pack-banner__text strong {
    color: var(--black);
}

@media (max-width: 640px) {
    .pack-banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .pack-banner__content {
        flex-direction: column;
    }
}

/* Select */
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

/* Boutique Upsell */
.boutique-upsell {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.boutique-upsell__intro {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.boutique-upsell__intro i {
    color: var(--gold);
    font-size: 18px;
}

.boutique-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.boutique-product {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.boutique-product.added {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.05);
}

.boutique-product img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.boutique-product__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.boutique-product__name {
    font-size: 14px;
    font-weight: 500;
}

.boutique-product__price {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

.boutique-product__add {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
}

.boutique-product__add:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.boutique-product.added .boutique-product__add {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.boutique-product.added .boutique-product__add i::before {
    content: "\f00c"; /* check icon */
}

.boutique-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
}

.boutique-link:hover {
    text-decoration: underline;
}

/* Boutique Filters */
.boutique-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.boutique-search {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.boutique-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.boutique-search input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    font-size: 15px;
    background: var(--white);
}

.boutique-search input:focus {
    outline: none;
    border-color: var(--gold);
}

.boutique-categories {
    display: flex;
    gap: 8px;
}

.boutique-cat {
    padding: 10px 20px;
    border: 1px solid var(--gray-300);
    border-radius: 25px;
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.boutique-cat:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.boutique-cat.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* Boutique Page (Step 4) */
.boutique-page {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
}

.boutique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.boutique-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: var(--transition);
}

.boutique-card.added {
    border-color: var(--gold);
}

.boutique-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.boutique-card__info {
    padding: 16px;
}

.boutique-card__cat {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 6px;
}

.boutique-card__info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.boutique-card__info p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.boutique-card__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.boutique-card__add {
    width: 100%;
    padding: 12px;
    border: none;
    background: var(--gray-100);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.boutique-card__add:hover {
    background: var(--gray-200);
}

.boutique-card.added .boutique-card__add {
    background: var(--gold);
    color: var(--black);
}

.boutique-card.added .boutique-card__add i::before {
    content: "\f00c";
}

.boutique-summary {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.boutique-summary h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.boutique-summary h3 i {
    color: var(--gold);
}

.boutique-summary__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.boutique-summary__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.boutique-summary__item button {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px;
}

.boutique-summary__item button:hover {
    color: var(--error);
}

.boutique-summary__total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
}

.boutique-summary__total span:last-child {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .boutique-page {
        grid-template-columns: 1fr;
    }
    
    .boutique-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .boutique-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .boutique-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-summary {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
    height: fit-content;
}
.checkout-summary h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 16px;
}
.checkout-summary__date {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--gray-100);
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 500;
}
.checkout-summary__date i { color: var(--gold); }
.checkout-summary__items {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}
.checkout-summary__item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}
.checkout-summary__total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
}
.checkout-summary__total span:last-child { color: var(--gold); }

/* Confirmation */
.confirmation-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.confirmation-box__icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
}
.confirmation-box h1 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 16px;
}
.confirmation-box__ref {
    font-size: 18px;
    margin-bottom: 8px;
}
.confirmation-box__ref strong {
    color: var(--gold);
    font-size: 20px;
}
.confirmation-box__details {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}
.confirmation-box__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 0;
}
.confirmation-box__row i { color: var(--gold); }
.confirmation-box__qr {
    margin: 24px 0;
}
.confirmation-box__qr img {
    margin: 0 auto;
}
.confirmation-box__qr p {
    margin-top: 8px;
    font-size: 13px;
    color: var(--gray-500);
}
.confirmation-box__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 200;
}
.cart-overlay--active {
    opacity: 1;
    visibility: visible;
}
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 201;
    display: flex;
    flex-direction: column;
}
.cart-sidebar--active { right: 0; }
.cart-sidebar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}
.cart-sidebar__header h3 {
    font-family: var(--font-display);
    font-size: 20px;
}
.cart-sidebar__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    font-size: 16px;
    transition: var(--transition);
}
.cart-sidebar__close:hover { background: var(--gray-200); }
.cart-sidebar__items {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}
.cart-empty {
    text-align: center;
    color: var(--gray-500);
    padding: 40px 0;
}
.cart-sidebar__footer {
    padding: 24px;
    border-top: 1px solid var(--gray-200);
}
.cart-sidebar__total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
}
.footer a { color: var(--gold); }

/* Slots Grid */
.slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 16px;
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    min-width: 70px;
}

.slot:hover:not(.slot--full) { 
    background: var(--gray-200); 
    border-color: var(--gray-300);
}

.slot--selected {
    background: var(--gold) !important;
    color: var(--black);
    border-color: var(--gold-dark);
}

.slot--low {
    background: #fef3c7;
    border-color: #f59e0b;
}

.slot--last {
    background: #fef2f2;
    border-color: #fca5a5;
}

.slot--last .slot__status {
    color: #dc2626;
    font-weight: 600;
}

.slot--full {
    background: var(--gray-100);
    color: var(--gray-400);
    cursor: not-allowed;
    opacity: 0.6;
}

.slot--blocked {
    background: var(--gray-100);
    color: var(--gray-400);
    cursor: not-allowed;
    opacity: 0.5;
    position: relative;
}

.slot--blocked .slot__status {
    font-size: 9px;
    color: var(--gray-500);
}

/* Activities Notice */
.activities-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 24px;
}

.activities-notice i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 2px;
}

.activities-notice p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Day Recap */
.day-recap {
    display: none;
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.day-recap.active {
    display: block;
}

.day-recap h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-recap h3 i {
    color: var(--gold);
}

.day-recap__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 24px;
}

.day-recap__timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--gray-200);
}

.recap-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    position: relative;
}

.recap-item::before {
    content: '';
    position: absolute;
    left: -17px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
}

.recap-item__time {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    min-width: 50px;
}

.recap-item__activity {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.recap-item__icon {
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
}

.recap-item__name {
    font-weight: 500;
}

.recap-item__duration {
    font-size: 12px;
    color: var(--gray-500);
}

.slot__time { 
    font-weight: 600; 
    font-size: 14px;
}

.slot__status {
    font-size: 10px;
    margin-top: 2px;
    opacity: 0.8;
}

.slot--selected .slot__status { color: var(--gray-700); }
.slot--low .slot__status { color: #b45309; }

/* Ticket Sections */
.ticket-section {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.ticket-section__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.ticket-section__header i {
    width: 48px;
    height: 48px;
    background: var(--black);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ticket-section__header h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 4px;
}

.ticket-section__header p {
    font-size: 13px;
    color: var(--gray-500);
}

.ticket-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 10px;
}

.ticket-type__info {
    display: flex;
    flex-direction: column;
}

.ticket-type__name {
    font-weight: 500;
    margin-bottom: 2px;
}

.ticket-type__price {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
}

.ticket-type__qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-600);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover:not(:disabled) {
    border-color: var(--gold);
    color: var(--gold);
}

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

.qty-value {
    font-size: 18px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

/* Summary Discount */
.summary-item--discount {
    color: var(--success) !important;
}

.summary-item--discount span {
    color: var(--success) !important;
}

.summary-empty {
    text-align: center;
    color: var(--gray-400);
    padding: 20px;
    font-size: 14px;
}

/* Checkout Items */
.checkout-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item__activity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.checkout-item__activity i {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    color: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.checkout-item__activity strong {
    flex: 1;
}

.checkout-item__time {
    font-size: 13px;
    color: var(--gray-500);
}

.checkout-item__ticket {
    display: flex;
    justify-content: space-between;
    padding: 6px 0 6px 44px;
    font-size: 14px;
    color: var(--gray-600);
}

.checkout-item--promo {
    display: flex;
    justify-content: space-between;
    color: var(--success);
    font-weight: 500;
}

/* Cart Active States */
.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar.active {
    right: 0;
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.3s ease;
}

/* Language Toast */
.lang-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--black);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
}

.lang-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Card Form */
.card-form {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .calendar-wrapper { grid-template-columns: 1fr; }
    .calendar-info { flex-direction: row; flex-wrap: wrap; }
    .calendar-info__card { flex: 1; min-width: 200px; }
    .activities-grid { grid-template-columns: 1fr; }
    .tickets-wrapper { grid-template-columns: 1fr; }
    .checkout-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .steps { gap: 0; }
    .step__line { width: 40px; margin: 0 8px; }
    .step__label { font-size: 10px; }
    .nav { display: none; }
    .form-row { grid-template-columns: 1fr; }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: white;
    flex-direction: column;
}

.loading-spinner {
    text-align: center;
}

