/* ==========================================
   ORIGINAL PRICING CARD STYLES (Your Layout)
   ========================================== */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow);
}

.pricing-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
}

.pricing-card .description {
    margin-bottom: 1.5rem;
    color: var(--sub);
    min-height: 120px;
    font-size: 14px;
}

.pricing-card .price-area {
    margin-bottom: 1.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--sand);
}

.pricing-card .price-label {
    font-size: 14px;
    color: var(--sub);
}

.btn-book {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-weight: 700;
    border: 1px solid rgba(0,0,0,.12);
    background: var(--sand);
    color: var(--bg);
    cursor:pointer;
    transition: transform .12s ease, filter .12s ease, background .12s ease;
    font-family: inherit;
}

.btn-book:hover {
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================
   NEW FLOW STYLES (Hidden Until Clicked)
   ========================================== */
.flow-container {
    background-color: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text);
}

.btn-back {
    background: transparent;
    border: none;
    color: var(--sub);
    cursor: pointer;
    margin-bottom: 1rem;
    font-size: 14px;
    padding: 0;
}

.btn-back:hover {
    color: var(--sand);
}

.flow-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}

.form-grid {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--sub);
}

.flow-input {
    background: var(--bg);
    border: 1px solid var(--line);
    color: var(--text);
    padding: 10px;
    border-radius: var(--radius);
    width: 100%;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.sets-container, .roster-container, .payment-container {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.set-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg);
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 10px;
    border: 1px solid var(--line);
}

.player-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-add {
    background: transparent;
    border: 1px dashed var(--sub);
    color: var(--sub);
    padding: 8px 15px;
    border-radius: var(--radius);
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
}

.btn-add:hover {
    border-color: var(--sand);
    color: var(--sand);
}

.btn-delete {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: bold;
}

.checkout-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg);
    padding: 15px;
    border-radius: var(--radius);
}

.total-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--sand);
}

.payment-container {
    text-align: center;
}

.qr-code {
    max-width: 350px; /* Increased from 200px to make it much bigger */
    width: 100%; /* Ensures it shrinks nicely on small mobile screens */
    margin: 15px auto;
    border-radius: 0; /* Forces square corners instead of rounded */
    display: block; /* Ensures the margin auto centers it perfectly */
}

.set-blocks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-set-block {
    background: var(--bg);
    border: 1px solid var(--line);
    color: var(--text);
    padding: 20px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.btn-set-block:hover {
    background: var(--sand);
    color: var(--bg);
    border-color: var(--sand);
}