/* ================================
   VARIABLES & RESET
   ================================ */
:root {
    --bg-dark: #1a1a1a;
    --bg-darker: #0d0d0d;
    --text-white: #ffffff;
    --text-gray: #999999;
    --border-gray: #333333;
    --border-white: #ffffff;
    --primary: #6366f1;
    --success: #10b981;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.vip-book-panel-right .wc-book-now{
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(22, 22, 22, 1);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none;
  background: rgba(249, 249, 249, 1);
  padding: 12px 15px;
  border-radius: 999px;
  display: inline-flex;
  transition: 0.5s;
}
.vip-book-panel-right .wc-book-now:hover{
  background: rgba(22, 22, 22, 1);
  color: rgba(249, 249, 249, 1);
}
/* ================================
   MODAL BASE
   ================================ */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.checkout-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    width: 95%;
    max-width: 1200px;
    max-height: 95vh;
    background: var(--bg-darker);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ================================
   TOP BAR
   ================================ */
.modal-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-gray);
}

.modal-logo img {
    height: 40px;
}

.modal-close {
    background: transparent;
    border: 1px solid var(--border-gray);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-close:hover {
    background: var(--bg-darker);
    border-color: var(--text-white);
}

/* ================================
   PROGRESS INDICATOR (1 2 3 4)
   ================================ */
.progress-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 15px;
    background: var(--bg-darker);
}

.progress-step {
    display: flex;
    align-items: center;
}

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border-gray);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: scale(1.1);
}

.progress-step.completed .step-circle {
    background: var(--success);
    border-color: var(--success);
    color: var(--text-white);
}

/* ================================
   MODAL BODY
   ================================ */
.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.checkout-step {
    display: none;
    padding: 0px 15px;
    min-height: 500px;
}

.checkout-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Credit Progress Bar */
.credit-progress-wrapper {
    padding: 5px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.progress-bar-container {
    width: 100%;
    height: 12px;
    background: var(--bg-black);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success), #059669);
    transition: all 0.5s ease;
    width: 0%;
    border-radius: 20px;
}

.progress-bar-fill.over-limit {
    background: linear-gradient(90deg, var(--danger), #dc2626);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
}

.progress-used {
    color: var(--text-white);
    font-weight: 600;
}

.progress-status {
    color: var(--text-gray);
}

.progress-status.over {
    color: var(--danger);
    font-weight: 600;
}

/* Status Row */
.status-row {
    background: rgba(16, 185, 129, 0.1);
    padding: 12px;
    border-radius: 6px;
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--success);
    font-size: 13px;
}

.status-row.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.status-row.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.divider-small {
    height: 1px;
    background: var(--border-gray);
    margin: 8px 0;
}

/* ================================
   STEP TITLE SECTION
   ================================ */
.step-title-section {
    text-align: left;
    margin-bottom: 15px;
}

.step-title-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.step-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

/* ================================
   STEP 1: DRINKS GRID LAYOUT
   ================================ */
.step-content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin-top: 20px;
}

.addons-panel {
    background: var(--bg-darker);
    border-radius: 12px;
    padding: 0px;
    max-height: 600px;
    overflow-y: auto;
}

/* Collapsible Categories */
.category-section {
    background: var(--bg-darker);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.category-header {
    background: transparent;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    /* border-bottom: 1px solid var(--border-gray); */
}

.category-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.category-header h3 {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.category-toggle {
    color: var(--text-white);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.category-section.collapsed .category-toggle {
    transform: rotate(-90deg);
}

.category-products {
    padding: 15px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.product-item {
    background: var(--bg-darker);
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.product-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.product-item.selected {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.product-quantity {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--text-white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--bg-dark);
}

.product-item.selected .product-quantity {
    display: flex;
}

.product-image {
    width: 100%;
    height: 80px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--bg-dark);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
    line-height: 1.3;
    min-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

/* Quantity Controls */
.product-controls {
    display: none;
    margin-top: 8px;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.product-item.selected .product-controls {
    display: flex;
}

.qty-btn {
    background: var(--primary);
    border: none;
    color: var(--text-white);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #4f46e5;
}

.qty-display {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    min-width: 30px;
    text-align: center;
}
/* ================================
   PRODUCTS LIST (VERTICAL LAYOUT)
   ================================ */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--bg-darker);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.product-list-item:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.product-list-item.has-quantity {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

/* Left: Product Thumbnail */
.product-thumb {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right: Product Info */
.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
}

.product-description {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 4px 0;
}

/* Quantity Controls (after price) */
.quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-dark);
    padding: 6px 10px;
    border-radius: 50px;
    border: 1px solid var(--border-gray);
    width: fit-content;
    margin-top: 4px;
}

.qty-decrease,
.qty-increase {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.qty-decrease:hover,
.qty-increase:hover {
    background: #4f46e5;
    transform: scale(1.1);
}

.qty-decrease:active,
.qty-increase:active {
    transform: scale(0.95);
}

.qty-decrease:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.qty-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    min-width: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .product-list-item {
        flex-direction: column;
    }
    
    .product-thumb {
        width: 100%;
        height: 120px;
    }
    
    .product-info {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .product-list-item {
        padding: 12px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 16px;
    }
}

/* ================================
   ORDER SIDEBAR
   ================================ */
.order-sidebar {
    background: var(--bg-darker);
    border-radius: 12px;
    padding: 25px;
    max-height: 600px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-header {
    text-align: center;
}

.credit-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.badge-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.badge-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
}

.sidebar-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.clear-selection-btn {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
}

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

.order-item.main-product {
    background: rgba(99, 102, 241, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-bottom: none;
}

.item-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.item-qty {
    font-size: 12px;
    color: var(--text-gray);
    margin-left: 6px;
}

.remove-item {
    background: transparent;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 18px;
    padding: 0 5px;
    margin-left: 10px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.remove-item:hover {
    opacity: 1;
}

.divider {
    height: 1px;
    background: var(--border-gray);
    margin: 10px 0;
}

.order-totals {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-white);
}

.total-row:first-child {
    font-size: 18px;
    font-weight: 700;
}

.total-row.remaining {
    color: #f59e0b;
    font-weight: 600;
    background: rgba(245, 158, 11, 0.1);
    padding: 10px;
    border-radius: 6px;
    margin-top: 8px;
}

/* ================================
   STEP 2: BOOKING FORM
   ================================ */
.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
}

#booking-details-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row-full {
    width: 100%;
}

.form-field {
    display: flex;
    flex-direction: column;
}
.form-field-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px; /* spacing between fields */
}
.form-field label, .form-field-3  label  {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea,.form-field-3 input, .form-field-3 textarea {
    background: var(--bg-darker);
    border: 2px solid var(--border-white);
    border-radius: 21px;
    padding: 10px 13px;
    font-size: 14px;
    color: var(--text-white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus, .form-field-3 input:focus,.form-field-3 textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.form-field textarea, .form-field-3 textarea {
    resize: vertical;
    min-height: 100px;
}

.field-note {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 6px;
    line-height: 1.4;
}

/* ================================
   STEP 3: SUMMARY
   ================================ */
.summary-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-block {
    background: var(--bg-darker);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-gray);
}

.block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-gray);
}

.block-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    letter-spacing: 0.5px;
}

.edit-btn {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.2s ease;
}

.edit-btn:hover {
    transform: scale(1.2);
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

.info-value {
    font-size: 14px;
    color: var(--text-gray);
}

.table-notes {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.table-notes p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 5px 0;
    line-height: 1.5;
}

.booking-details,
#summary-addons-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--text-white);
}

.detail-row strong {
    color: var(--primary);
}

/* Summary Totals Section */
.totals-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-white);
}

.total-line.highlight {
    background: rgba(99, 102, 241, 0.1);
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
}

.total-line.success-highlight {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
}

.total-line.danger-highlight {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
}

.total-line.grand-total {
    font-size: 22px;
    padding-top: 15px;
    margin-top: 10px;
    color: var(--primary);
}

.divider-thick {
    height: 2px;
    background: var(--border-gray);
    margin: 10px 0;
}

.status-message {
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 10px;
}

.status-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.status-message.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.totals-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: var(--text-white);
    padding: 8px 0;
}

.total-line.grand-total {
    font-size: 20px;
    font-weight: 700;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid var(--border-gray);
    color: var(--primary);
}

/* ================================
   STEP 4: PAYMENT
   ================================ */
.payment-container {
    max-width: 600px;
    margin: 0 auto;
}

#payment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-input-wrapper {
    position: relative;
}

.card-input-wrapper input {
    padding-right: 120px;
}

.card-icons {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
}

.card-icons img {
    height: 24px;
    opacity: 0.7;
}

.payment-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}

.lock-icon {
    font-size: 24px;
}

.payment-notice p {
    font-size: 14px;
    color: var(--success);
    margin: 0;
}
/* Payment Result Modal */
.payment-result-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeIn 0.3s ease;
}

.payment-result-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.result-icon.success {
    background: #4caf50;
    color: white;
}

.result-icon.error {
    background: #f44336;
    color: white;
}

.payment-result-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: #2c3e50;
}

.result-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.detail-value {
    font-weight: 700;
    color: #2c3e50;
    font-size: 14px;
}

.result-done-btn {
    width: 100%;
    padding: 15px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.result-done-btn:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ================================
   STEP FOOTER
   ================================ */
.step-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 30px 0 10px 0;
    margin-top: 30px;
    border-top: 1px solid var(--border-gray);
}

.footer-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 10px;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-skip {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-gray);
}

.btn-skip:hover {
    background: rgba(255, 255, 255, 0.05);
     color: var(--text-white);
    border-color: var(--text-white);
}

.btn-continue {
    background:var(--text-white);
    color: var(--border-gray);
}

.btn-continue:hover {
    transform: translateY(-2px);
    color: var(--border-gray);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn-pay {
    background: var(--success);
    color: var(--text-white);
}

.btn-pay:hover {
    background: #059669;
}

.wc-book-now {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wc-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* ================================
   LOADING & EMPTY STATES
   ================================ */
.loading-spinner {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border: 4px solid var(--border-gray);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner p {
    color: var(--text-gray);
    font-size: 14px;
}

.no-addons-state {
    text-align: center;
    padding: 60px 30px;
}

.no-addons-state .icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.no-addons-state h3 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.no-addons-state p {
    font-size: 15px;
    color: var(--text-gray);
}

/* ================================
   SCROLLBAR
   ================================ */
.modal-body::-webkit-scrollbar,
.addons-panel::-webkit-scrollbar,
.order-sidebar::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track,
.addons-panel::-webkit-scrollbar-track,
.order-sidebar::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

.modal-body::-webkit-scrollbar-thumb,
.addons-panel::-webkit-scrollbar-thumb,
.order-sidebar::-webkit-scrollbar-thumb {
    background: var(--border-gray);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover,
.addons-panel::-webkit-scrollbar-thumb:hover,
.order-sidebar::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .step-content-grid {
        grid-template-columns: 1fr;
    }
    
    .order-sidebar {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .modal-container {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .checkout-step {
        padding: 20px;
    }
    
    .form-row-group {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-footer {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
