/**
 * Studio Kay Booking - Frontend Styles
 * Design: Clean, minimal, simple
 * @package StudioKayBooking
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --skb-liver: #775b59;
  --skb-rosy: #d1a09d;
  --skb-isabelline: #f4f0ec;
  --skb-licorice: #1b1110;
  --skb-white: #ffffff;
  --skb-transition: all 0.2s ease;
}

/* ==========================================================================
   FORM WRAPPER
   ========================================================================== */
.skb-booking-form-wrapper {
  max-width: 750px;
  margin: 50px auto;
  margin-top: 0px;
  padding: 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.skb-booking-form-wrapper * {
  box-sizing: border-box;
}

.skb-form-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--skb-licorice);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

/* ==========================================================================
   STEPS INDICATOR - Clean Design
   ========================================================================== */
.skb-steps-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 0px;
  padding: 30px 0;
  padding-top: 0px;
}

.skb-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.skb-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--skb-liver);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  transition: var(--skb-transition);
}

.skb-step.active .skb-step-number {
  background: var(--skb-white);
  color: var(--skb-rosy);
  border-color: var(--skb-white);
}

.skb-step.completed .skb-step-number {
  background: var(--skb-liver);
  color: var(--skb-white);
  border-color: var(--skb-liver);
}

.skb-step-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.skb-step.active .skb-step-label {
  color: var(--skb-white);
  font-weight: 600;
}

.skb-step.completed .skb-step-label {
  color: var(--skb-white);
}

/* ==========================================================================
   FORM STEPS
   ========================================================================== */
.skb-form-step {
  display: none;
}

.skb-form-step.active {
  display: block;
}

.skb-step-content {
  background: var(--skb-white);
  padding: 40px;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
}

.skb-step-content h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--skb-licorice);
  font-weight: 500;
  text-align: center;
}

.skb-step-description {
  color: #666;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

/* ==========================================================================
   PRODUCT CARDS - Simple & Clean
   ========================================================================== */
.skb-products-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.skb-product-card {
  position: relative;
}

.skb-product-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.skb-product-label {
  display: block;
  padding: 20px;
  background: #fafafa;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--skb-transition);
}

.skb-product-label:hover {
  background: var(--skb-isabelline);
  border-color: var(--skb-rosy);
}

.skb-product-card input[type="radio"]:checked + .skb-product-label {
  background: var(--skb-isabelline);
  border-color: var(--skb-rosy);
}

/* Product Header */
.skb-product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
}

.skb-product-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.skb-product-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--skb-transition);
}

.skb-product-card
  input[type="radio"]:checked
  + .skb-product-label
  .skb-product-radio {
  border-color: var(--skb-rosy);
  border-width: 6px;
}

.skb-product-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--skb-licorice);
  margin-bottom: 2px;
}

.skb-product-sessions {
  font-size: 13px;
  color: #666;
}

.skb-product-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.skb-product-price-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.skb-product-price-regular {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
  text-decoration-color: #999;
}

.skb-product-price-regular .skb-product-price-currency {
  font-size: 14px;
  color: #999;
}

.skb-product-price {
  font-size: 24px;
  font-weight: 600;
  color: var(--skb-rosy);
}

.skb-product-price-currency {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
}

.skb-product-savings {
  font-size: 15px;
  font-weight: 600;
  color: var(--skb-rosy);
  text-align: right;
}

/* Product Details */
.skb-product-details-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.skb-product-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
}

.skb-product-detail-icon {
  font-size: 14px;
  opacity: 0.7;
}

.skb-product-detail-text strong {
  font-weight: 600;
  color: var(--skb-liver);
}

/* ==========================================================================
   FIRST FREE SESSION CARD
   ========================================================================== */
.skb-product-card.skb-first-free-offer {
  position: relative;
}

.skb-product-card.skb-first-free-offer .skb-product-label {
  background: linear-gradient(135deg, #f1faf4 0%, #e7f6ed 50%, #f1faf4 100%);
  border: none;
  position: relative;
  padding-top: 50px;
  border-radius: 6px;
}

.skb-product-card.skb-first-free-offer .skb-product-label::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(90deg, #2f9e5e 0%, #5dc18a 100%);
  border-radius: 6px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.skb-product-card.skb-first-free-offer .skb-product-label:hover {
  background: linear-gradient(135deg, #e8f6ee 0%, #ddf1e5 50%, #e8f6ee 100%);
}

.skb-product-card.skb-first-free-offer input[type="radio"]:checked + .skb-product-label {
  background: linear-gradient(135deg, #e8f6ee 0%, #ddf1e5 50%, #e8f6ee 100%);
  box-shadow: 0 4px 15px rgba(47, 158, 94, 0.2);
}

.skb-first-free-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #2f9e5e 0%, #5dc18a 100%);
  color: #ffffff;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;
  border-radius: 6px 6px 0 0;
}

.skb-first-free-text {
  text-transform: uppercase;
}

.skb-product-card.skb-first-free-offer .skb-product-header,
.skb-product-card.skb-first-free-offer .skb-product-details-section {
  position: relative;
  z-index: 1;
}

/* In free-session mode the payment step stays visible, but the paid-flow
   sub-sections (coupon, gateway selection, bring-a-friend) are hidden. */
.skb-booking-form-wrapper.skb-free-mode .skb-hidden-for-free {
  display: none !important;
}

/* ==========================================================================
   CHRISTMAS OFFER CARD
   ========================================================================== */
.skb-product-card.skb-christmas-offer {
  position: relative;
}

.skb-product-card.skb-christmas-offer .skb-product-label {
  background: linear-gradient(135deg, #fef7f7 0%, #fdf5f4 50%, #fef7f7 100%);
  border: none;
  position: relative;
}

.skb-product-card.skb-christmas-offer .skb-product-label::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(90deg, #c9463d 0%, var(--skb-rosy) 100%);
  border-radius: 6px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.skb-product-card.skb-christmas-offer .skb-product-label::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Christmas icons scattered randomly */
.skb-christmas-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.skb-christmas-icons span {
  position: absolute;
  opacity: 0.18;
}

.skb-christmas-icons .xmas-1 { top: 12%; left: 3%; font-size: 18px; }
.skb-christmas-icons .xmas-2 { top: 65%; left: 8%; font-size: 14px; }
.skb-christmas-icons .xmas-3 { top: 30%; left: 18%; font-size: 20px; }
.skb-christmas-icons .xmas-4 { top: 78%; left: 25%; font-size: 15px; }
.skb-christmas-icons .xmas-5 { top: 8%; left: 38%; font-size: 16px; }
.skb-christmas-icons .xmas-6 { top: 55%; left: 45%; font-size: 18px; }
.skb-christmas-icons .xmas-7 { top: 85%; left: 52%; font-size: 14px; }
.skb-christmas-icons .xmas-8 { top: 18%; left: 60%; font-size: 17px; }
.skb-christmas-icons .xmas-9 { top: 48%; left: 72%; font-size: 19px; }
.skb-christmas-icons .xmas-10 { top: 10%; left: 82%; font-size: 15px; }
.skb-christmas-icons .xmas-11 { top: 70%; left: 85%; font-size: 16px; }
.skb-christmas-icons .xmas-12 { top: 38%; left: 90%; font-size: 14px; }
.skb-christmas-icons .xmas-13 { top: 42%; left: 5%; font-size: 13px; }
.skb-christmas-icons .xmas-14 { top: 90%; left: 68%; font-size: 17px; }

.skb-product-card.skb-christmas-offer .skb-product-label:hover {
  background: linear-gradient(135deg, #fef2f2 0%, #fcf0ef 50%, #fef2f2 100%);
}

.skb-product-card.skb-christmas-offer input[type="radio"]:checked + .skb-product-label {
  background: linear-gradient(135deg, #fef2f2 0%, #fcf0ef 50%, #fef2f2 100%);
  box-shadow: 0 4px 15px rgba(201, 70, 61, 0.2);
}

/* Christmas Badge */
.skb-christmas-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #c9463d 0%, var(--skb-rosy) 100%);
  color: #ffffff;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;
  border-radius: 6px 6px 0 0;
}

.skb-christmas-icon {
  font-size: 16px;
}

.skb-christmas-text {
  text-transform: uppercase;
}

.skb-christmas-countdown {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

/* Adjust label padding for Christmas cards to account for badge */
.skb-product-card.skb-christmas-offer .skb-product-label {
  padding-top: 50px;
  border-radius: 6px;
}

/* Christmas card content positioning */
.skb-product-card.skb-christmas-offer .skb-product-header,
.skb-product-card.skb-christmas-offer .skb-product-details-section {
  position: relative;
  z-index: 1;
}

/* Christmas price styling */
.skb-product-card.skb-christmas-offer .skb-product-price {
  color: #c9463d;
}

.skb-product-card.skb-christmas-offer .skb-product-savings {
  color: #228b22;
}

/* Christmas radio button */
.skb-product-card.skb-christmas-offer input[type="radio"]:checked + .skb-product-label .skb-product-radio {
  border-color: #c9463d;
}

/* Christmas detail text */
.skb-product-card.skb-christmas-offer .skb-product-detail-text strong {
  color: #c9463d;
}

/* ==========================================================================
   EASTER OFFER CARD
   ========================================================================== */
.skb-product-card.skb-easter-offer {
  position: relative;
}

.skb-product-card.skb-easter-offer .skb-product-label {
  background: linear-gradient(135deg, #f8f5fd 0%, #f5f2fb 50%, #f8f5fd 100%);
  border: none;
  position: relative;
}

.skb-product-card.skb-easter-offer .skb-product-label::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(90deg, #7B5EA7 0%, #B39DDB 100%);
  border-radius: 6px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.skb-product-card.skb-easter-offer .skb-product-label::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Easter icons scattered randomly */
.skb-easter-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.skb-easter-icons span {
  position: absolute;
  opacity: 0.18;
}

.skb-easter-icons .easter-1 { top: 12%; left: 3%; font-size: 18px; }
.skb-easter-icons .easter-2 { top: 65%; left: 8%; font-size: 14px; }
.skb-easter-icons .easter-3 { top: 30%; left: 18%; font-size: 20px; }
.skb-easter-icons .easter-4 { top: 78%; left: 25%; font-size: 15px; }
.skb-easter-icons .easter-5 { top: 8%; left: 38%; font-size: 16px; }
.skb-easter-icons .easter-6 { top: 55%; left: 45%; font-size: 18px; }
.skb-easter-icons .easter-7 { top: 85%; left: 52%; font-size: 14px; }
.skb-easter-icons .easter-8 { top: 18%; left: 60%; font-size: 17px; }
.skb-easter-icons .easter-9 { top: 48%; left: 72%; font-size: 19px; }
.skb-easter-icons .easter-10 { top: 10%; left: 82%; font-size: 15px; }
.skb-easter-icons .easter-11 { top: 70%; left: 85%; font-size: 16px; }
.skb-easter-icons .easter-12 { top: 38%; left: 90%; font-size: 14px; }
.skb-easter-icons .easter-13 { top: 42%; left: 5%; font-size: 13px; }
.skb-easter-icons .easter-14 { top: 90%; left: 68%; font-size: 17px; }

.skb-product-card.skb-easter-offer .skb-product-label:hover {
  background: linear-gradient(135deg, #f3eef9 0%, #f0ebf7 50%, #f3eef9 100%);
}

.skb-product-card.skb-easter-offer input[type="radio"]:checked + .skb-product-label {
  background: linear-gradient(135deg, #f3eef9 0%, #f0ebf7 50%, #f3eef9 100%);
  box-shadow: 0 4px 15px rgba(123, 94, 167, 0.2);
}

/* Easter Badge */
.skb-easter-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #7B5EA7 0%, #B39DDB 100%);
  color: #ffffff;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;
  border-radius: 6px 6px 0 0;
}

.skb-easter-icon {
  font-size: 16px;
}

.skb-easter-text {
  text-transform: uppercase;
}

.skb-easter-countdown {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

/* Easter limited spots text */
.skb-easter-limited {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  background: rgba(123, 94, 167, 0.08);
  color: #7B5EA7;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  z-index: 10;
  letter-spacing: 0.3px;
}

/* Adjust label padding for Easter cards to account for badge + limited text */
.skb-product-card.skb-easter-offer .skb-product-label {
  padding-top: 76px;
  border-radius: 6px;
}

/* Easter card content positioning */
.skb-product-card.skb-easter-offer .skb-product-header,
.skb-product-card.skb-easter-offer .skb-product-details-section {
  position: relative;
  z-index: 1;
}

/* Easter price styling */
.skb-product-card.skb-easter-offer .skb-product-price {
  color: #7B5EA7;
}

.skb-product-card.skb-easter-offer .skb-product-savings {
  color: #228b22;
}

/* Easter radio button */
.skb-product-card.skb-easter-offer input[type="radio"]:checked + .skb-product-label .skb-product-radio {
  border-color: #7B5EA7;
}

/* Easter detail text */
.skb-product-card.skb-easter-offer .skb-product-detail-text strong {
  color: #7B5EA7;
}

/* ==========================================================================
   BRING A FRIEND SECTION
   ========================================================================== */
.skb-bring-friend-section {
  background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 100%);
  border: 2px solid #4caf50;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.skb-bring-friend-section h4 {
  color: #2e7d32;
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
}

.skb-bring-friend-description {
  color: #558b2f;
  font-size: 14px;
  margin: 0 0 15px 0;
}

.skb-btn-add-friend {
  background: #4caf50 !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  cursor: pointer;
  transition: background 0.2s ease;
}

.skb-btn-add-friend:hover {
  background: #43a047 !important;
}

.skb-bring-friend-form {
  margin-top: 15px;
}

.skb-bring-friend-form label {
  display: block;
  font-weight: 500;
  color: var(--skb-liver);
  margin-bottom: 8px;
  font-size: 14px;
}

.skb-friend-email-message {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  display: none;
}

.skb-friend-email-message.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.skb-friend-email-message.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* Friend Products List */
.skb-friend-products {
  margin-top: 15px;
}

.skb-friend-products > label {
  margin-bottom: 10px;
}

.skb-friend-products-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

/* Friend product cards use same styles as main product cards */
.skb-friend-product-card {
  /* Inherits all styles from .skb-product-card */
}

.skb-friend-product-card .skb-product-label {
  border: 2px solid #e0e0e0;
}

.skb-friend-product-card input[type="radio"]:checked + .skb-product-label {
  border-color: #4caf50;
  background: #f9fdf9;
}

.skb-friend-product-card input[type="radio"]:checked + .skb-product-label .skb-product-radio {
  border-color: #4caf50;
}

.skb-bring-friend-actions {
  margin-top: 15px;
}

.skb-btn-cancel-friend {
  background: #f5f5f5 !important;
  color: #666 !important;
  border: 1px solid #ddd !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  cursor: pointer;
}

.skb-btn-cancel-friend:hover {
  background: #eeeeee !important;
  color: #333 !important;
}

/* Summary friend rows */
.skb-summary-friend-row .skb-summary-label {
  color: #2e7d32;
}

.skb-summary-friend-row .skb-summary-value {
  color: #2e7d32;
}

#skb-summary-baf-discount-row .skb-summary-label {
  color: #2e7d32;
}

#skb-summary-baf-discount-row .skb-discount-value {
  color: #2e7d32;
  font-weight: 600;
}

/* ==========================================================================
   FORM GROUPS & INPUTS
   ========================================================================== */
.skb-form-group {
  margin-bottom: 20px;
}

.skb-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--skb-licorice);
  font-size: 14px;
}

.skb-input,
.skb-textarea,
.skb-select {
  width: 100%;
  padding: 12px 14px !important;
  border: 1px solid #ddd !important;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  height: auto;
  min-height: 44px;
  transition: var(--skb-transition);
  font-family: inherit;
  color: var(--skb-licorice);
  background: var(--skb-white);
  box-sizing: border-box;
}

.skb-input:focus,
.skb-textarea:focus,
.skb-select:focus {
  outline: none;
  border-color: var(--skb-rosy) !important;
  box-shadow: 0 0 0 1px var(--skb-rosy);
}

.skb-textarea {
  resize: vertical;
  min-height: 100px;
}

.skb-field-description {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.skb-step-actions {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-top: 20px !important;
  gap: 12px !important;
}

.skb-step-actions button,
.skb-step-actions .button,
.skb-btn-prev,
.skb-btn-next,
.skb-btn-submit {
  all: unset !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 28px !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: var(--skb-transition) !important;
  font-family: inherit !important;
}

.skb-btn-prev,
.skb-step-actions .skb-btn-prev,
.skb-step-actions button.skb-btn-prev {
  background: var(--skb-rosy) !important;
  color: var(--skb-isabelline) !important;
  margin-right: auto !important;
  margin-left: 0 !important;
  border: none !important;
}

.skb-btn-prev:hover,
.skb-step-actions .skb-btn-prev:hover,
.skb-step-actions button.skb-btn-prev:hover {
  background: var(--skb-liver) !important;
  color: var(--skb-isabelline) !important;
}

.skb-btn-next,
.skb-btn-submit,
.skb-step-actions .skb-btn-next,
.skb-step-actions button.skb-btn-next,
.skb-step-actions .button-primary {
  background: var(--skb-rosy) !important;
  color: var(--skb-isabelline) !important;
  margin-left: auto !important;
  border: none !important;
}

.skb-btn-next:hover,
.skb-btn-submit:hover,
.skb-step-actions .skb-btn-next:hover,
.skb-step-actions button.skb-btn-next:hover,
.skb-step-actions .button-primary:hover {
  background: var(--skb-liver) !important;
  color: var(--skb-isabelline) !important;
}

.skb-btn-next:disabled,
.skb-btn-submit:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* ==========================================================================
   NOTICES
   ========================================================================== */
.skb-notice {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  border-left: 3px solid;
}

.skb-notice-error {
  background: #fef2f2;
  border-color: #dc2626;
  color: #991b1b;
}

.skb-notice-success {
  background: #f0fdf4;
  border-color: #16a34a;
  color: #166534;
}

.skb-notice-info {
  background: var(--skb-isabelline);
  border-color: var(--skb-rosy);
  color: var(--skb-liver);
}

/* ==========================================================================
   CALENDAR & DATETIME
   ========================================================================== */
.skb-calendar-section,
.skb-timeslots-section {
  background: #fafafa;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.skb-calendar-section h4,
.skb-timeslots-section h4 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 13px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skb-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skb-calendar-header h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--skb-licorice);
  flex: 1;
  text-align: center;
}

.skb-calendar-prev,
.skb-calendar-next {
  all: unset !important;
  box-sizing: border-box !important;
  background: var(--skb-rosy) !important;
  color: var(--skb-isabelline) !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 28px !important;
  cursor: pointer !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  transition: var(--skb-transition) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: inherit !important;
}

.skb-calendar-prev:hover,
.skb-calendar-next:hover {
  background: var(--skb-liver) !important;
  color: var(--skb-isabelline) !important;
}

.skb-calendar-nav {
  display: flex;
  gap: 8px;
}

.skb-calendar-nav button {
  background: var(--skb-white);
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  color: var(--skb-liver);
  font-weight: 500;
  font-size: 13px;
  transition: var(--skb-transition);
}

.skb-calendar-nav button:hover {
  background: #f5f5f5;
}

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

.skb-calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  padding: 8px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--skb-transition);
  background: var(--skb-white);
}

.skb-calendar-day-header {
  font-weight: 600;
  background: transparent;
  color: #999;
  border: none;
  cursor: default;
  font-size: 11px;
  text-transform: uppercase;
}

.skb-calendar-day:not(.skb-day-disabled):not(.skb-calendar-day-header):hover {
  background: var(--skb-isabelline);
  border-color: var(--skb-rosy);
}

.skb-calendar-day.skb-day-selected {
  background: var(--skb-rosy);
  color: var(--skb-white);
  border-color: var(--skb-rosy);
}

.skb-calendar-day.skb-day-disabled {
  background: transparent;
  color: #ccc;
  cursor: not-allowed;
}

.skb-calendar-day.skb-day-sunday {
  background: #fff0f0;
  color: #999;
}

.skb-calendar-day.skb-day-sunday:not(.skb-day-disabled):hover {
  background: #ffe6e6;
  cursor: pointer;
}

.skb-calendar-day.skb-day-today {
  border-color: var(--skb-rosy);
  font-weight: 600;
}

/* ==========================================================================
   TIME SLOTS
   ========================================================================== */
.skb-timeslots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.skb-timeslot {
  padding: 12px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: var(--skb-transition);
  background: var(--skb-white);
}

.skb-timeslot:hover:not(.skb-timeslot-disabled) {
  background: var(--skb-isabelline);
  border-color: var(--skb-rosy);
}

.skb-timeslot.skb-timeslot-selected {
  background: var(--skb-rosy);
  color: var(--skb-white);
  border-color: var(--skb-rosy);
}

.skb-timeslot.skb-timeslot-disabled {
  background: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
}

.skb-timeslot-label {
  font-size: 14px;
  font-weight: 600;
}

.skb-timeslot-spots {
  font-size: 11px;
  margin-top: 4px;
  opacity: 0.7;
}

.skb-timeslot-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 7px;
  border-radius: 9px;
  font-size: 8px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-align: center;
}

.skb-text-muted {
  color: #999;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

/* ==========================================================================
   PAYMENT & BILLING
   ========================================================================== */
.skb-payment-container,
.skb-billing-container {
  max-width: 600px;
  margin: 0 auto;
}

.skb-order-summary {
  background: #fafafa;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.skb-order-summary h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 13px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skb-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #e8e8e8;
}

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

.skb-summary-label {
  color: #666;
}

.skb-summary-value {
  font-weight: 600;
  color: var(--skb-licorice);
}

.skb-summary-total {
  font-size: 16px;
  padding-top: 8px;
  margin-top: 8px;
}

.skb-summary-total .skb-summary-value {
  color: var(--skb-liver);
  font-weight: 600;
}

.skb-discount-value {
  color: #16a34a !important;
  font-weight: 600 !important;
}

/* Coupon Code Section */
.skb-coupon-section {
  background: #fafafa;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.skb-coupon-section h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 13px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skb-coupon-message {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  display: none;
}

.skb-coupon-message.success {
  color: #166534;
  background: #f0fdf4;
  border-left: 3px solid #16a34a;
  display: block;
}

.skb-coupon-message.error {
  color: #991b1b;
  background: #fef2f2;
  border-left: 3px solid #dc2626;
  display: block;
}

.skb-payment-methods h4 {
  margin-bottom: 12px;
  font-size: 13px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skb-payment-method {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #fafafa;
  border-radius: 6px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: var(--skb-transition);
}

.skb-payment-method:hover {
  background: var(--skb-isabelline);
}

.skb-payment-method-content {
  flex: 1;
}

.skb-payment-method-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--skb-licorice);
}

.skb-payment-method-description {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.skb-terms-container {
  margin: 20px 0;
  padding: 16px;
  background: #fafafa;
  border-radius: 6px;
  font-size: 13px;
}

.skb-terms-checkbox {
  display: flex;
  align-items: start;
  gap: 8px;
  cursor: pointer;
}

.skb-privacy-notice {
  font-size: 12px;
  color: #666;
  padding: 12px;
  background: #fafafa;
  border-radius: 6px;
}

.skb-privacy-notice p {
  margin: 0;
}

/* ==========================================================================
   FORM ROWS & GROUPS
   ========================================================================== */
.skb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.skb-input-group {
  display: flex;
  gap: 8px;
}

.skb-input-group .skb-input,
.skb-input-group .skb-select {
  flex: 1;
}

.skb-input-group .button {
  all: unset !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  padding: 12px 20px !important;
  background: var(--skb-rosy) !important;
  color: var(--skb-white) !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: var(--skb-transition) !important;
  font-size: 14px !important;
}

.skb-input-group .button:hover {
  background: var(--skb-liver) !important;
}

.required {
  color: #dc2626;
}

#skb-cui-verification-result {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
}

#skb-cui-verification-result.success {
  color: #166534;
  background: #f0fdf4;
  border-left: 3px solid #16a34a;
}

#skb-cui-verification-result.error {
  color: #991b1b;
  background: #fef2f2;
  border-left: 3px solid #dc2626;
}

/* ==========================================================================
   AUTH FORMS
   ========================================================================== */
.skb-auth-container {
  max-width: 500px;
  margin: 0 auto;
}

.skb-auth-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 24px 0;
}

@media (max-width: 768px) {
  .skb-auth-buttons {
    flex-direction: column;
  }
}

.skb-auth-buttons .button {
  all: unset !important;
  box-sizing: border-box !important;
  flex: 1 !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  background: var(--skb-rosy) !important;
  color: var(--skb-white) !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: var(--skb-transition) !important;
  text-align: center !important;
}

.skb-auth-buttons .button:hover {
  background: var(--skb-liver) !important;
}

.skb-auth-form {
  background: #fafafa;
  padding: 20px;
  border-radius: 6px;
  margin-top: 20px;
}

.skb-error-message {
  background-color: #fee;
  border: 1px solid #fcc;
  border-radius: 6px;
  color: #c33;
  padding: 12px 14px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.skb-auth-form-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.skb-auth-form-buttons .button {
  flex: 1;
  padding: 12px 24px !important;
  font-size: 14px !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: var(--skb-transition) !important;
  text-align: center !important;
  border: none !important;
}

.skb-auth-form-buttons .button:not(.button-primary) {
  background: #f0f0f0 !important;
  color: #333 !important;
}

.skb-auth-form-buttons .button:not(.button-primary):hover {
  background: #e0e0e0 !important;
}

.skb-auth-form-buttons .button-primary {
  background: var(--skb-rosy) !important;
  color: var(--skb-white) !important;
}

.skb-auth-form-buttons .button-primary:hover {
  background: var(--skb-liver) !important;
}

.skb-auth-form-buttons .button:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

@media (max-width: 768px) {
  .skb-auth-form-buttons {
    flex-direction: column;
  }
}

.skb-auth-form h4 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--skb-licorice);
  font-weight: 600;
}

.skb-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  gap: 12px;
}

.skb-form-actions .button {
  all: unset !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
  background: transparent !important;
  color: var(--skb-liver) !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: var(--skb-transition) !important;
}

.skb-form-actions .button:hover {
  background: #f0f0f0 !important;
}

.skb-form-actions a {
  color: var(--skb-liver);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}

.skb-form-actions a:hover {
  color: var(--skb-licorice);
}

/* ==========================================================================
   LOADING OVERLAY
   ========================================================================== */
.skb-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 17, 16, 0.9);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.skb-loading-overlay.active {
  display: flex;
}

.skb-loading-spinner {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid var(--skb-white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: skbSpin 0.8s linear infinite;
}

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

.skb-loading-overlay p {
  color: var(--skb-white);
  font-size: 14px;
  margin-top: 16px;
}

/* ==========================================================================
   MY ACCOUNT - BOOKINGS
   ========================================================================== */
/* ==========================================================================
   MY ACCOUNT - BOOKINGS PAGE - Aligned with booking form style
   Updated: Removed centering, aligned left for WooCommerce integration
   ========================================================================== */
.woocommerce-MyAccount-content .skb-my-bookings,
.skb-my-bookings {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-MyAccount-content .skb-my-bookings h2,
.skb-my-bookings h2 {
  text-align: left !important;
  margin-bottom: 30px !important;
  margin-top: 0 !important;
  color: var(--skb-licorice);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

/* Booking Card - one per row, full width */
.skb-booking-card {
  background: var(--skb-white);
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 30px;
  border: 1px solid var(--skb-isabelline);
  box-shadow: 0 2px 8px rgba(27, 17, 16, 0.08);
  transition: var(--skb-transition);
  width: 100%;
  display: block;
}

.skb-booking-card:hover {
  box-shadow: 0 4px 16px rgba(27, 17, 16, 0.12);
  border-color: var(--skb-rosy);
}

.skb-booking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--skb-isabelline);
}

.skb-booking-title-section h3,
.skb-booking-title-section .skb-booking-title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 500;
  color: var(--skb-licorice);
  letter-spacing: -0.3px;
}

.skb-booking-meta {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: #666;
  align-items: center;
}

.skb-meta-separator {
  color: var(--skb-rosy);
}

.skb-expiry-info {
  font-weight: 500;
}

/* Status Badges - aligned with booking form */
.skb-status-badge {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skb-status-active,
.skb-status-badge.skb-status-active {
  background: rgba(209, 160, 157, 0.15);
  color: var(--skb-liver);
}

.skb-status-completed,
.skb-status-badge.skb-status-completed {
  background: rgba(34, 197, 94, 0.15);
  color: #166534;
}

.skb-status-cancelled,
.skb-status-badge.skb-status-cancelled {
  background: rgba(239, 68, 68, 0.15);
  color: #991b1b;
}

/* ==========================================================================
   SESSIONS TABLE - Custom Styling
   ========================================================================== */
.skb-sessions-wrapper {
  margin-top: 30px;
}

.skb-sessions-wrapper h4 {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--skb-licorice);
}

.skb-sessions-table-responsive {
  overflow-x: auto;
}

.skb-sessions-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fafafa;
  border-radius: 6px;
  overflow: hidden;
}

/* Header - align left */
.skb-sessions-table thead th {
  text-align: left;
  padding: 16px 20px !important;
  padding-inline-start: 20px !important;
  background: var(--skb-isabelline);
  font-weight: 600;
  font-size: 14px;
  color: var(--skb-liver);
  border: none;
  border-bottom: 2px solid #e0e0e0;
}

.skb-sessions-table thead th:first-child {
  border-top-left-radius: 8px;
}

.skb-sessions-table thead th:last-child {
  border-top-right-radius: 8px;
}

/* Rows - border only between rows */
.skb-sessions-table tbody tr {
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid #e0e0e0;
}

.skb-sessions-table tbody tr:last-child {
  border-bottom: none;
}

.skb-sessions-table tbody td {
  text-align: left;
  padding: 16px 20px !important;
  padding-inline-start: 20px !important;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
  vertical-align: middle !important;
}

.skb-sessions-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.skb-sessions-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

/* Status styling */
.skb-session-status-pending {
  color: var(--skb-liver);
  font-weight: 500;
}

.skb-session-status-scheduled {
  color: var(--skb-liver);
  font-weight: 600;
}

.skb-session-status-completed {
  color: #16a34a;
  font-weight: 600;
}

.skb-session-status-cancelled {
  color: #666;
}

/* Complete button - same style as Vezi Comanda */
.skb-btn-complete-session {
  all: unset !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 28px !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: var(--skb-transition) !important;
  font-family: inherit !important;
  background: var(--skb-rosy) !important;
  color: var(--skb-isabelline) !important;
  border: none !important;
}

.skb-btn-complete-session:hover {
  background: var(--skb-liver) !important;
  color: var(--skb-isabelline) !important;
}

/* Cancel button - IDENTICAL style to complete button */
.skb-btn-cancel-session {
  all: unset !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 28px !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: var(--skb-transition) !important;
  font-family: inherit !important;
  background: var(--skb-rosy) !important;
  color: var(--skb-isabelline) !important;
  border: none !important;
}

.skb-btn-cancel-session:hover {
  background: var(--skb-liver) !important;
  color: var(--skb-isabelline) !important;
}

.skb-text-muted {
  color: #999;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.skb-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 17, 16, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.skb-modal.skb-hidden {
  display: none;
}

.skb-modal-dialog {
  background: var(--skb-white);
  border-radius: 6px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
}

.skb-modal-header {
  padding: 20px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skb-modal-body {
  padding: 20px;
}

.skb-modal-footer {
  padding: 20px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Modal close button - same style as other buttons */
.skb-modal-close {
  all: unset !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 28px !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: var(--skb-transition) !important;
  font-family: inherit !important;
  background: var(--skb-rosy) !important;
  color: var(--skb-isabelline) !important;
  border: none !important;
}

.skb-modal-close:hover {
  background: var(--skb-liver) !important;
  color: var(--skb-isabelline) !important;
}

/* Modal Footer - Center button */
.skb-modal-footer {
  padding: 20px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Confirm button styling - same as other buttons */
.skb-btn-confirm-session {
  all: unset !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 28px !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: var(--skb-transition) !important;
  font-family: inherit !important;
  background: var(--skb-rosy) !important;
  color: var(--skb-isabelline) !important;
  border: none !important;
}

.skb-btn-confirm-session:hover:not(:disabled) {
  background: var(--skb-liver) !important;
  color: var(--skb-isabelline) !important;
}

.skb-btn-confirm-session:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.skb-hidden {
  display: none !important;
}

.skb-text-center {
  text-align: center;
}

.skb-billing-fields.skb-hidden {
  display: none;
}

.skb-auth-form.skb-hidden {
  display: none;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
  .skb-booking-form-wrapper {
    padding: 16px;
    margin: 30px auto;
    margin-top: 0px;
  }

  .skb-form-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .skb-step-content {
    padding: 24px;
  }

  .skb-steps-indicator {
    gap: 20px;
    padding-top: 0px;
  }

  .skb-step-label {
    font-size: 11px;
  }

  .skb-step-actions {
    flex-direction: row;
    gap: 8px;
  }

  .skb-btn-prev,
  .skb-btn-next,
  .skb-btn-submit {
    flex: 1;
    width: auto !important;
    margin-left: 0 !important;
    font-size: 13px !important;
    padding: 10px 16px !important;
  }

  .skb-form-row {
    grid-template-columns: 1fr;
  }

  .skb-product-details-section {
    grid-template-columns: 1fr;
  }

  .skb-calendar-grid {
    gap: 4px;
  }

  /* Calendar mobile adjustments */
  .skb-calendar-section {
    padding: 16px;
  }

  .skb-calendar-header h5 {
    font-size: 14px;
  }

  .skb-calendar-prev,
  .skb-calendar-next {
    padding: 8px 16px !important;
    font-size: 12px !important;
  }

  .skb-calendar-day {
    font-size: 12px;
    padding: 4px;
  }

  .skb-calendar-day-header {
    font-size: 10px;
  }

  .skb-timeslots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .skb-timeslot {
    padding: 8px;
  }

  .skb-timeslot-label {
    font-size: 12px;
  }

  .skb-timeslot-spots {
    font-size: 10px;
  }

  /* Sessions Table - Responsive - Card Layout on Mobile */
  .skb-sessions-table {
    border: none !important;
    background: transparent !important;
  }

  .skb-sessions-table thead {
    display: none !important;
  }

  .skb-sessions-table tbody {
    display: block !important;
  }

  .skb-sessions-table tbody tr {
    display: block !important;
    background: #fafafa !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 16px !important;
    margin-bottom: 12px !important;
  }

  .skb-sessions-table tbody td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 0 !important;
    border: none !important;
    text-align: left !important;
  }

  .skb-sessions-table tbody td::before {
    content: attr(data-label) !important;
    font-weight: 600 !important;
    color: var(--skb-liver) !important;
    font-size: 12px !important;
  }

  .skb-sessions-table tbody td strong {
    font-size: 12px !important;
  }

  .skb-btn-complete-session,
  .skb-btn-cancel-session {
    font-size: 11px !important;
    padding: 8px 16px !important;
    white-space: nowrap !important;
  }

  /* Hide date/time fields on mobile for pending (unprogrammed) sessions */
  .skb-sessions-table tbody tr.skb-session-pending td.skb-session-date,
  .skb-sessions-table tbody tr.skb-session-pending td.skb-session-start,
  .skb-sessions-table tbody tr.skb-session-pending td.skb-session-end {
    display: none !important;
  }

  /* Booking meta - make expiry info display on second line on mobile */
  .skb-booking-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .skb-meta-separator-mobile {
    display: none !important;
  }

  .skb-expiry-info {
    flex-basis: 100%;
  }
}

@media (max-width: 620px) {
  .skb-product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .skb-product-price-wrapper {
    align-items: flex-start;
    width: 100%;
  }

  .skb-product-price-container {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .skb-product-savings {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .skb-step-content h3 {
    font-size: 20px;
  }

  .skb-btn-prev,
  .skb-btn-next,
  .skb-btn-submit {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }

  /* Product selection smaller on mobile */
  .skb-product-radio {
    width: 16px;
    height: 16px;
  }

  .skb-product-card
    input[type="radio"]:checked
    + .skb-product-label
    .skb-product-radio {
    border-width: 5px;
  }

  .skb-product-name {
    font-size: 15px;
  }

  /* Christmas badge mobile */
  .skb-christmas-badge {
    padding: 6px 10px;
    font-size: 10px;
    gap: 4px;
  }

  .skb-christmas-countdown {
    font-size: 9px;
    margin-left: 6px;
    padding-left: 6px;
  }

  .skb-product-card.skb-christmas-offer .skb-product-label {
    padding-top: 40px;
  }

  /* Easter badge mobile */
  .skb-easter-badge {
    padding: 6px 10px;
    font-size: 10px;
    gap: 4px;
  }

  .skb-easter-countdown {
    font-size: 9px;
    margin-left: 6px;
    padding-left: 6px;
  }

  .skb-easter-limited {
    top: 30px;
    font-size: 9px;
    padding: 3px 10px;
  }

  .skb-product-card.skb-easter-offer .skb-product-label {
    padding-top: 62px;
  }

  /* Calendar extra small screens */
  .skb-calendar-section {
    padding: 12px;
  }

  .skb-calendar-section h4 {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .skb-calendar-header h5 {
    font-size: 13px;
  }

  .skb-calendar-prev,
  .skb-calendar-next {
    padding: 6px 12px !important;
    font-size: 11px !important;
  }

  .skb-calendar-grid {
    gap: 3px;
  }

  .skb-calendar-day {
    font-size: 11px;
    padding: 2px;
  }

  .skb-calendar-day-header {
    font-size: 9px;
  }

  .skb-timeslots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .skb-timeslots-section {
    padding: 12px;
  }

  .skb-timeslots-section h4 {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .skb-timeslot {
    padding: 6px;
  }

  .skb-timeslot-label {
    font-size: 11px;
  }

  .skb-timeslot-spots {
    font-size: 9px;
    margin-top: 2px;
  }

  .skb-product-header {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }

  /* Christmas card mobile adjustments */
  .skb-christmas-badge {
    padding: 6px 12px;
    font-size: 11px;
    gap: 6px;
  }

  .skb-christmas-icon {
    font-size: 14px;
  }

  .skb-product-card.skb-christmas-offer .skb-product-label {
    padding-top: 42px;
  }

  /* Easter card mobile adjustments */
  .skb-easter-badge {
    padding: 6px 12px;
    font-size: 11px;
    gap: 6px;
  }

  .skb-easter-icon {
    font-size: 14px;
  }

  .skb-easter-limited {
    font-size: 10px;
    padding: 3px 12px;
  }

  .skb-product-card.skb-easter-offer .skb-product-label {
    padding-top: 66px;
  }
}
