/* ===== Everland Smart Reservation - Common Styles ===== */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1B2A4A;
  --navy-dark: #0F1D35;
  --navy-light: #2C3E5A;
  --orange: #FF6B00;
  --orange-hover: #E55F00;
  --orange-light: #FFF3E8;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --green: #10B981;
  --red: #EF4444;
  --blue: #3B82F6;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-top: 0 -2px 10px rgba(0,0,0,0.08);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--gray-100);
  color: var(--gray-800);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Mobile Container */
.mobile-container {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
  position: relative;
  box-shadow: var(--shadow-lg);
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 56px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.header-logo .logo-icon {
  width: 28px;
  height: 28px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--gray-600);
  background: var(--white);
}

.lang-selector svg {
  width: 16px;
  height: 16px;
}

.header-reservation-btn {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  padding: 6px 12px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}

/* Language Dropdown */
.lang-dropdown {
  position: absolute;
  top: 50px;
  right: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
  min-width: 140px;
}

.lang-dropdown button {
  display: block;
  width: 100%;
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white);
  border: none;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: background 0.15s;
}

.lang-dropdown button:last-child {
  border-bottom: none;
}

.lang-dropdown button:hover {
  background: var(--orange-light);
  color: var(--orange);
}

.header-inner {
  position: relative;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  padding: 12px 24px;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

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

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

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--navy);
  font-size: 15px;
}

.btn-secondary:hover {
  background: var(--gray-50);
}

.btn-outline {
  background: var(--white);
  color: var(--gray-600);
  border: 1px solid var(--gray-300);
  font-size: 14px;
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

/* Fixed Bottom CTA */
.bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  box-shadow: var(--shadow-top);
}

.bottom-cta-inner {
  max-width: 480px;
  margin: 0 auto;
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== Form Elements ===== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-input::placeholder {
  color: var(--gray-400);
}

/* ===== Section ===== */
.section {
  padding: 20px 16px;
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-divider {
  height: 8px;
  background: var(--gray-100);
}

/* ===== Badge / Tag ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.badge-green {
  background: #ECFDF5;
  color: #059669;
}

.badge-orange {
  background: var(--orange-light);
  color: var(--orange);
}

.badge-blue {
  background: #EFF6FF;
  color: #2563EB;
}

.badge-gray {
  background: var(--gray-100);
  color: var(--gray-500);
}

/* ===== Radio / Selection ===== */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}

.radio-option:hover {
  border-color: var(--gray-300);
}

.radio-option.active {
  border-color: var(--orange);
  background: var(--orange-light);
}

.radio-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radio-option.active .radio-circle {
  border-color: var(--orange);
}

.radio-option.active .radio-circle::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.radio-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
}

.radio-icon {
  width: 28px;
  height: 20px;
  object-fit: contain;
}

/* ===== Quantity Selector ===== */
.qty-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.qty-label {
  font-size: 15px;
  color: var(--gray-700);
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gray-500);
  transition: all 0.15s;
}

.qty-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.qty-btn:active {
  background: var(--orange-light);
}

.qty-value {
  font-size: 18px;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
  color: var(--navy);
}

/* ===== Info Row ===== */
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
}

.info-label {
  font-size: 14px;
  color: var(--gray-500);
  flex-shrink: 0;
  min-width: 100px;
}

.info-value {
  font-size: 14px;
  color: var(--gray-800);
  font-weight: 500;
  text-align: right;
}

/* ===== Banner / Slider ===== */
.banner-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-track {
  position: relative;
  width: 100%;
}

.banner-slide {
  display: none;
  width: 100%;
  aspect-ratio: 16/9;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
  animation: bannerFadeIn 0.5s ease;
}

.banner-slide.active {
  display: flex;
}

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

.banner-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--gray-200);
}

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 0;
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s;
}

.banner-dot.active {
  background: var(--navy);
  width: 20px;
  border-radius: 4px;
}

/* ===== Period Filter ===== */
.period-filter {
  display: flex;
  gap: 8px;
}

.period-btn {
  flex: 1;
  padding: 10px 8px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  text-align: center;
  transition: all 0.2s;
}

.period-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* ===== Empty State ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.empty-text {
  font-size: 15px;
  color: var(--gray-400);
}

/* ===== Price ===== */
.price {
  font-weight: 700;
  color: var(--navy);
}

.price-original {
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.price-discount {
  font-size: 14px;
  color: var(--red);
  font-weight: 600;
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 12px; }
.text-gray { color: var(--gray-500); }
.text-navy { color: var(--navy); }
.text-orange { color: var(--orange); }
.mt-4 { margin-top: 16px; }
.mt-2 { margin-top: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 8px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }

/* Back Button */
.back-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--gray-600);
  background: none;
  padding: 8px 0;
}

.back-btn svg {
  width: 20px;
  height: 20px;
}

/* Coupon Section */
.coupon-section {
  display: flex;
  gap: 8px;
}

.coupon-section .form-input {
  flex: 1;
}

.coupon-btn {
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* Total Amount Bar */
.total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-top: 12px;
}

.total-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-600);
}

.total-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

/* Calendar Picker UI */
.date-picker-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 15px;
  color: var(--gray-800);
}

.date-picker-btn svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
}

.date-picker-btn.placeholder {
  color: var(--gray-400);
}

/* QR Code Area */
.qr-area {
  text-align: center;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  margin: 16px 0;
}

.qr-code {
  width: 180px;
  height: 180px;
  margin: 0 auto 12px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code svg {
  width: 140px;
  height: 140px;
}

.qr-number {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
}

/* Success Icon */
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ECFDF5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  color: var(--green);
}

/* Page padding for fixed bottom */
.page-bottom-pad {
  padding-bottom: 80px;
}

/* Scrollbar */
.mobile-container::-webkit-scrollbar {
  display: none;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px 16px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.2s;
}

.category-card:hover {
  transform: scale(1.02);
}

.category-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--gray-200);
}

.category-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
}

.category-card-title {
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.category-card-sub {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}

/* Product Card in list */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 16px;
}

.product-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.2s;
}

.product-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
}

.product-thumb {
  width: 90px;
  height: 90px;
  border-radius: var(--radius);
  background: var(--gray-200);
  object-fit: cover;
  flex-shrink: 0;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.product-desc {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 14px;
}

.product-price .starting {
  font-size: 12px;
  color: var(--gray-400);
}

.product-price .amount {
  font-weight: 700;
  color: var(--navy);
}

/* Reservation Card */
.reservation-card {
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.reservation-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow);
}

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

.reservation-no {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.reservation-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reservation-product {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
}

.reservation-meta {
  font-size: 13px;
  color: var(--gray-500);
}

.reservation-amount {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 6px;
}

/* Detail Info Table */
.detail-table {
  width: 100%;
}

.detail-table .row {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.detail-table .label {
  width: 110px;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--gray-500);
}

.detail-table .value {
  flex: 1;
  font-size: 14px;
  color: var(--gray-800);
  font-weight: 500;
}

/* Notice Box */
.notice-box {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 16px;
  margin: 16px 0;
}

.notice-box .notice-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.notice-box ul {
  list-style: none;
  padding: 0;
}

.notice-box li {
  font-size: 13px;
  color: var(--gray-500);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}

.notice-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-400);
}

/* Two Button Row */
.two-btn-row {
  display: flex;
  gap: 10px;
  padding: 16px;
}

.two-btn-row .btn {
  flex: 1;
  padding: 14px;
}

/* Page Title Bar */
.page-title-bar {
  padding: 20px 16px 12px;
}

.page-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.page-subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Image placeholder for demo */
.img-placeholder {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
}

.img-placeholder.orange {
  background: linear-gradient(135deg, #FF8C42 0%, var(--orange) 100%);
}

.img-placeholder.green {
  background: linear-gradient(135deg, #34D399 0%, #059669 100%);
}

.img-placeholder.blue {
  background: linear-gradient(135deg, #60A5FA 0%, #2563EB 100%);
}

/* Tabs */
.tabs {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
}

.tab {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.tab.active {
  color: var(--navy);
  font-weight: 700;
  border-bottom-color: var(--navy);
}

/* ===== Site Footer ===== */
.site-footer {
  background: var(--gray-800);
  color: var(--gray-400);
  padding: 24px 16px;
  margin-top: auto;
}

.site-footer .footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-700);
}

.site-footer .footer-nav a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.2s;
}

.site-footer .footer-nav a:hover {
  color: var(--white);
}

.site-footer .footer-nav a.privacy {
  font-weight: 700;
  color: var(--white);
}

.site-footer .footer-info {
  font-size: 12px;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.site-footer .footer-copy {
  font-size: 11px;
  color: var(--gray-600);
}

/* Flex container to push footer down */
.mobile-container {
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
}

/* ===== Price Table (Everland style) ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 12px 0;
}

.price-table thead th {
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  text-align: center;
}

.price-table tbody td {
  padding: 12px;
  text-align: center;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}

.price-table tbody td:last-child {
  font-weight: 800;
  color: var(--orange);
  font-size: 16px;
}

/* Booking Panel */
.booking-panel {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  margin: 0 16px;
}

.booking-panel .panel-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.booking-panel .panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}

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

.booking-panel .panel-label {
  font-size: 14px;
  color: var(--gray-500);
}

.booking-panel .panel-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
}

.booking-panel .panel-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid var(--gray-300);
}

.booking-panel .panel-total .total-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-600);
}

.booking-panel .panel-total .total-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}

.booking-panel .panel-buttons {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.booking-panel .panel-buttons .btn {
  flex: 1;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 15px;
}

/* Detail Tabs */
.detail-tabs {
  display: flex;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.detail-tab {
  flex: 1;
  padding: 14px 4px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--white);
  border: none;
  border-right: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.2s;
}

.detail-tab:last-child {
  border-right: none;
}

.detail-tab.active {
  color: var(--navy);
  font-weight: 700;
  background: var(--gray-50);
}

/* Calendar Widget */
.calendar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.calendar-header {
  background: var(--orange);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.calendar-header .cal-month {
  font-size: 32px;
  font-weight: 800;
}

.calendar-header .cal-year {
  font-size: 14px;
  font-weight: 600;
}

.calendar-grid {
  padding: 12px;
}

.calendar-grid .cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 4px;
}

.calendar-grid .cal-weekdays span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  padding: 8px 0;
}

.calendar-grid .cal-weekdays span:first-child {
  color: var(--red);
}

.calendar-grid .cal-weekdays span:last-child {
  color: var(--blue);
}

.calendar-grid .cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar-grid .cal-day {
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.15s;
}

.calendar-grid .cal-day:hover {
  background: var(--orange-light);
}

.calendar-grid .cal-day.selected {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
}

.calendar-grid .cal-day.today {
  color: var(--orange);
  font-weight: 700;
}

.calendar-grid .cal-day.sunday {
  color: var(--red);
}

.calendar-grid .cal-day.saturday {
  color: var(--blue);
}

.calendar-grid .cal-day.disabled {
  color: var(--gray-300);
  cursor: default;
}

.calendar-grid .cal-day.disabled:hover {
  background: none;
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 12px;
  font-size: 12px;
  color: var(--gray-500);
}

.calendar-legend span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.calendar-legend .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.calendar-legend .dot.available {
  border: 2px solid var(--orange);
}

.calendar-legend .dot.soldout {
  border: 2px solid var(--gray-400);
}

.calendar-legend .dot.closed {
  border: 2px solid var(--gray-300);
  background: var(--gray-300);
}

/* Calendar Popup inside booking-panel */
.calendar-popup {
  margin: 8px -16px 0;
  padding: 0 0 8px;
  border-top: 1px solid var(--gray-200);
}

.calendar-popup .calendar-widget {
  border-radius: 0;
  box-shadow: none;
}

.calendar-popup .calendar-header {
  border-radius: 0;
}
