
/* ========== CSS Reset & Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== CSS Variables ========== */
:root {
    /* Colors */
    --primary-color: #fbbf24;
    --primary-dark: #f59e0b;
    --success-color: #10b981;
    --success-dark: #059669;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    
    /* Background Colors */
    --bg-gradient-start: #0a1428;
    --bg-gradient-mid: #1e3a5f;
    --bg-gradient-end: #2c5282;
    --bg-dark: rgba(15, 23, 42, 0.95);
    --bg-card: rgba(30, 41, 59, 0.6);
    --bg-hover: rgba(100, 116, 139, 0.2);
    
    /* Text Colors */
    --text-primary: #f7fafc;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    /* Border Colors */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(100, 116, 139, 0.3);
    --border-dark: rgba(100, 116, 139, 0.2);
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
}

/* ========== Typography ========== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 50%, var(--bg-gradient-end) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* ========== Layout Components ========== */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
}

/* ========== Header Section ========== */
.header {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* .header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
} */

.header h1 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.header .subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.header .contact-info {
    font-size: 0.85rem;
}

.header a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease;
}
/* ========== footer ========== */
.footer {
    background: #1a202c; /* dark footer */
    color: var(--text-secondary);
    text-align: center;
    padding: 15px 10px;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-light);
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--text-primary);
}


/* ========== Progress Bar ========== */
.progress-container {
    background: rgba(26, 32, 44, 0.8);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-dim);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.progress-step.active {
    color: var(--primary-color);
}

.progress-step.completed {
    color: var(--success-color);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    font-size: 1.2rem;
    transition: all var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
}

.progress-step.active .step-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #1a202c;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.progress-step.completed .step-icon {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-dark) 100%);
    color: white;
    border-color: var(--success-color);
    animation: unlockPulse 0.6s ease-out;
}

.progress-line {
    width: 60px;
    height: 3px;
    background: var(--bg-hover);
    margin: 0 10px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-line.completed {
    background: var(--success-color);
    animation: progressFill 0.8s ease-out;
}

.step-label {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 4px;
}

/* ========== Content Area ========== */
.content {
    padding: 30px 20px;
    min-height: 500px;
    position: relative;
}

.step {
    display: none;
    animation: slideInFade 0.6s ease-out;
}

.step.active {
    display: block;
}

.section-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ========== Game Cards ========== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.game-card {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-slow);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(251, 191, 36, 0.3);
}

.game-card.selected {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.game-card.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    pointer-events: none;
}

.game-image-container {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}


.duration-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg,color-mix(in srgb, var(--primary-color) 70%, transparent),color-mix(in srgb, var(--primary-dark) 70%, transparent));
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 4px;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.game-info {
    padding: 20px;
    position: relative;
}

.game-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.game-description {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.game-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    color: #cbd5e1;
    background: var(--bg-hover);
    padding: 5px 12px;
    border-radius: 15px;
}

/* ========== Player Controls ========== */
.player-controls {
    margin-top: 15px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    display: none;
    /*align-items: center;
    justify-content: space-between;*/

    flex-direction: column;
    align-items: center;
    gap: 15px;  
}

.game-card.selected .player-controls {
    display: flex;
    animation: slideDown 0.4s ease-out;
}

.player-counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-btn {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.player-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 40px;
    text-align: center;
}

/* ========== Forms ========== */
.form-section {
    max-width: 450px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-medium);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: var(--bg-card);
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
    background: rgba(30, 41, 59, 0.8);
}

/* ========== Calendar & Time Selection ========== */
.calendar-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.calendar-box, 
.time-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-dark);
}

.calendar-box h3, 
.time-box h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
    font-size: 1.1rem;
    text-align: center;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 10px;
}

.calendar-nav-btn {
    background: var(--primary-color);
    color: #1a202c;
    border: none;
    border-radius: var(--radius-full);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    transition: all var(--transition-normal);
}

.calendar-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.calendar-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.calendar-month-year {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-top: 12px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(100, 116, 139, 0.1);
}

.calendar-day:hover:not(.disabled) {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #1a202c;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #1a202c;
    transform: scale(1.05);
}

.calendar-day.disabled {
    color: #475569;
    cursor: not-allowed;
    opacity: 0.5;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: var(--spacing-sm);
}

.time-slot {
    padding: 10px 8px;
    background: rgba(100, 116, 139, 0.1);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 600;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.time-slot:hover {
    border-color: var(--primary-color);
    background: rgba(251, 191, 36, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #1a202c;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.no-slots-message {
    text-align: center;
    color: var(--text-muted);
    padding: 20px;
    font-style: italic;
}

/* ========== Booking Summary ========== */
.booking-summary {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--border-dark);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-secondary);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* ========== Navigation Buttons ========== */
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #1a202c;
    border: 2px solid transparent;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: var(--bg-hover);
    color: var(--text-secondary);
    border: 2px solid rgba(100, 116, 139, 0.5);
}

.btn-secondary:hover {
    background: rgba(100, 116, 139, 0.5);
    border-color: #64748b;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ========== Success State ========== */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
    animation: successPulse 1s ease-out;
}

/* ========== Selection Summary ========== */
.selection-summary {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-bottom: 25px;
    display: none;
}

.selected-room {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.selected-room:last-child {
    margin-bottom: 0;
}

.remove-btn {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: var(--error-color);
    border-radius: var(--radius-full);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: all var(--transition-normal);
}

.remove-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: var(--error-color);
    transform: scale(1.1);
}

/* ========== Special Effects ========== */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    animation: sparkle 1s ease-out forwards;
    pointer-events: none;
}

.lead-capture-hint {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* ========== Payment Type Toggle ========== */
.btn-group {
    display: flex;
    width: 100%;
}

.payment-type-selector {
    display: flex;
    gap: 15px;
    padding: 10px;
    background: rgba(30, 41, 59, 0.4);
    border-radius: var(--radius-md);
}

.payment-option {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-label {
    display: block;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    background: rgba(100, 116, 139, 0.2);
    border: 2px solid transparent;
    color: var(--text-muted);
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
}

.payment-label:hover {
    background: rgba(100, 116, 139, 0.3);
    border-color: rgba(251, 191, 36, 0.3);
}

.payment-option input:checked + .payment-label {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #1a202c;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.payment-label .amount {
    display: block;
    font-size: 1.2rem;
    margin-top: 5px;
}

.payment-label .description {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========== Skeleton Loading ========== */
.skeleton-card {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid transparent;
    position: relative;
}

.skeleton-image {
    width: 100%;
    height: 180px;
    background: rgba(100, 116, 139, 0.2);
    position: relative;
    overflow: hidden;
}

.skeleton-content {
    padding: 20px;
}

.skeleton-title {
    height: 28px;
    background: rgba(100, 116, 139, 0.2);
    border-radius: 4px;
    margin-bottom: 10px;
    width: 70%;
}

.skeleton-description {
    margin-bottom: 15px;
}

.skeleton-text {
    height: 14px;
    background: rgba(100, 116, 139, 0.2);
    border-radius: 4px;
    margin-bottom: 6px;
}

.skeleton-text:last-child {
    width: 85%;
}

.skeleton-details {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.skeleton-detail-item {
    height: 30px;
    width: 80px;
    background: rgba(100, 116, 139, 0.2);
    border-radius: 15px;
}

.skeleton-player-controls {
    padding: 15px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skeleton-player-label {
    height: 20px;
    width: 60px;
    background: rgba(100, 116, 139, 0.2);
    border-radius: 4px;
}

.skeleton-counter {
    display: flex;
    gap: 15px;
    align-items: center;
}

.skeleton-counter-btn {
    width: 35px;
    height: 35px;
    background: rgba(100, 116, 139, 0.2);
    border-radius: 50%;
}

.skeleton-count {
    width: 30px;
    height: 24px;
    background: rgba(100, 116, 139, 0.2);
    border-radius: 4px;
}

.skeleton-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.04),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.loading-container {
    display: none;
}

.loading-container.active {
    display: grid;
}

.games-container-wrapper {
    position: relative;
}

/* ========== Animations ========== */
@keyframes unlockPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 60px; }
}

@keyframes slideInFade {
    from { 
        opacity: 0; 
        transform: translateX(30px);
    }
    to { 
        opacity: 1; 
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from { 
        opacity: 0; 
        transform: translateY(-10px);
        max-height: 0;
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
        max-height: 100px;
    }
}

@keyframes successPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes sparkle {
    0% { 
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    100% { 
        transform: scale(1) rotate(180deg);
        opacity: 0;
    }
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .progress-bar {
        padding: 0 15px;
    }
    
    .progress-line {
        width: 40px;
        margin: 0 8px;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .content {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }

    .calendar-section {
        grid-template-columns: 1fr !important;
    }

    .calendar-header {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .calendar-month-year {
        font-size: 1rem;
        text-align: center;
    }

    .calendar-grid {
        grid-template-columns: repeat(7, minmax(35px, 1fr));
        gap: 4px;
    }

    .calendar-day {
        font-size: 0.8rem;
        aspect-ratio: 1 / 1;
        padding: 4px;
    }

}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coupon-btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
}












