:root {
    --bg-color: #0d0d0d;
    --surface-color: #1a1a1a;
    --surface-highlight: #252525;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --gold-primary: #d4af37;
    --gold-hover: #b5952f;
    --gold-faint: rgba(212, 175, 55, 0.1);
    --success: #4caf50;
    --danger: #f44336;
    --border-radius: 12px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 600px;
    /* Mobile focused max width */
    margin: 0 auto;
    padding: var(--spacing-md);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--surface-highlight);
}

h1 {
    font-size: 1.5rem;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.step {
    font-size: 0.8rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    background: var(--bg-color);
    padding: 0 4px;
}

.step.active {
    color: var(--gold-primary);
    font-weight: bold;
}

/* CARDS */
.card-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.card {
    background-color: var(--surface-color);
    border: 1px solid var(--surface-highlight);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card:hover {
    border-color: var(--gold-primary);
    background-color: var(--surface-highlight);
}

.card.selected {
    border-color: var(--gold-primary);
    background-color: var(--gold-faint);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.card-price {
    font-weight: bold;
    color: var(--gold-primary);
    font-size: 1.1rem;
}

/* TIME SLOTS */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 cols on mobile */
    gap: var(--spacing-sm);
}

.time-slot {
    background-color: var(--surface-color);
    border: 1px solid var(--surface-highlight);
    border-radius: var(--border-radius);
    padding: 12px;
    text-align: center;
    cursor: pointer;
    color: var(--text-primary);
}

.time-slot:hover {
    border-color: var(--gold-primary);
}

.time-slot.selected {
    background-color: var(--gold-primary);
    color: #000;
    font-weight: bold;
    border-color: var(--gold-primary);
}

.time-slot.disabled {
    opacity: 0.3;
    pointer-events: none;
    text-decoration: line-through;
}

/* BUTTONS */
.btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
    margin-top: var(--spacing-lg);
}

.btn-primary {
    background-color: var(--gold-primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--gold-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--surface-highlight);
    color: var(--text-secondary);
}

/* UTILS */
.hidden {
    display: none !important;
}

.summary-card {
    background: var(--surface-color);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border: 1px solid var(--gold-primary);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--surface-highlight);
    padding-bottom: var(--spacing-sm);
}

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

.summary-label {
    color: var(--text-secondary);
}

.summary-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* ANIMATIONS & INTERACTIVITY */
.fade-in {
    animation: fadeIn 0.4s ease-in-out forwards;
}

.fade-out {
    animation: fadeOut 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Enhanced Hover Effects */
.card:active,
.time-slot:active {
    transform: scale(0.98);
}

.btn:active {
    transform: scale(0.98);
}

/* Smooth Transition for Step Content */
.step-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
    <<<<<<< HEAD
}

/* Date Carousel */
.date-scroll-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.date-scroll {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) var(--surface-color);
}

.date-scroll::-webkit-scrollbar {
    height: 6px;
}

.date-scroll::-webkit-scrollbar-track {
    background: var(--surface-color);
}

.date-scroll::-webkit-scrollbar-thumb {
    background-color: var(--gold-primary);
    border-radius: 20px;
}

.date-card {
    min-width: 90px;
    background: var(--surface-color);
    border: 1px solid var(--surface-highlight);
    border-radius: var(--border-radius);
    padding: 12px 4px;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
}

.date-card:hover {
    border-color: var(--gold-primary);
}

.date-card.selected {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #000;
}

.date-day {
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
}

.date-weekday {
    font-size: 0.8rem;
    text-transform: capitalize;
    color: var(--text-secondary);
}

.date-card.selected .date-weekday {
    color: #000;
    font-weight: 600;
    =======>>>>>>>f925af803e9e773e4aaeb4d998f77489c3bdcc8c
}