/* Vietnam Restaurante Booking — Brand CSS v2 */
:root {
  --vnrest-primary: #17371E;
  --vnrest-primary-dark: #102615;
  --vnrest-primary-light: #245830;
  --vnrest-accent: #F5A623;
  --vnrest-accent-dark: #E8960F;
  --vnrest-dark: #1A1A1A;
  --vnrest-bg: #F5F5F5;
  --vnrest-white: #FFFFFF;
  --vnrest-radius: 12px;
  --vnrest-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --vnrest-border: #e5e7eb;
  --vnrest-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vnrest-booking {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--vnrest-dark);
}

/* ══════════════════════════════════════
   Step Indicators — Connected Progress
   ══════════════════════════════════════ */
.vnrest-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 36px;
  padding: 0 16px;
  position: relative;
}

.vnrest-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  flex: 1;
  padding: 0;
  background: none;
  border-radius: 0;
  font-size: 13px;
  transition: all var(--vnrest-transition);
}

.vnrest-step::before {
  content: '';
  position: absolute;
  top: 16px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--vnrest-border);
  transition: background var(--vnrest-transition);
  z-index: 0;
}

.vnrest-step:first-child::before {
  display: none;
}

.vnrest-step.completed::before {
  background: var(--vnrest-primary);
}

.vnrest-step.active::before {
  background: var(--vnrest-primary);
}

.vnrest-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  background: var(--vnrest-bg);
  color: #999;
  border: 2px solid var(--vnrest-border);
  transition: all var(--vnrest-transition);
  position: relative;
  z-index: 1;
}

.vnrest-step.active .vnrest-step-num {
  background: var(--vnrest-primary);
  color: var(--vnrest-white);
  border-color: var(--vnrest-primary);
  box-shadow: 0 0 0 4px rgba(23, 55, 30, 0.15);
}

.vnrest-step.completed .vnrest-step-num {
  background: var(--vnrest-primary);
  color: var(--vnrest-white);
  border-color: var(--vnrest-primary);
}

.vnrest-step-label {
  display: none;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-align: center;
  white-space: nowrap;
  transition: color var(--vnrest-transition);
}

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

.vnrest-step.completed .vnrest-step-label {
  color: var(--vnrest-primary-light);
}

@media (min-width: 540px) {
  .vnrest-step-label {
    display: block;
  }
}

/* ══════════════════════════════════════
   Panels — with transitions
   ══════════════════════════════════════ */
.vnrest-panel {
  background: var(--vnrest-white);
  border-radius: var(--vnrest-radius);
  padding: 32px 24px;
  box-shadow: var(--vnrest-shadow);
}

.vnrest-panel-active {
  animation: vnrestPanelIn 0.3s ease forwards;
}

.vnrest-panel-exit {
  animation: vnrestPanelOut 0.25s ease forwards;
}

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

@keyframes vnrestPanelOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.vnrest-panel-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--vnrest-primary);
  margin: 0 0 24px;
  text-align: center;
  position: relative;
  padding-bottom: 14px;
}

.vnrest-panel-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--vnrest-accent);
  border-radius: 2px;
}

/* ══════════════════════════════════════
   Location Cards
   ══════════════════════════════════════ */
.vnrest-locations {
  display: grid;
  gap: 12px;
}

@media (min-width: 540px) {
  .vnrest-locations {
    grid-template-columns: 1fr 1fr;
  }
}

.vnrest-location-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: var(--vnrest-white);
  border: none;
  border-radius: var(--vnrest-radius);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  font-family: inherit;
  font-size: 14px;
  color: var(--vnrest-dark);
  overflow: hidden;
  box-shadow: var(--vnrest-shadow);
  position: relative;
}

.vnrest-location-card:hover {
  box-shadow: 0 8px 24px rgba(60, 69, 48, 0.16);
  transform: translateY(-3px);
}

.vnrest-location-card.selected {
  box-shadow: 0 0 0 2px var(--vnrest-primary), 0 4px 16px rgba(60, 69, 48, 0.12);
}

.vnrest-location-badge {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--vnrest-primary);
  color: var(--vnrest-white);
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.vnrest-location-card.selected .vnrest-location-badge {
  display: flex;
  animation: vnrestBadgePop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

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

.vnrest-location-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.vnrest-location-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
  pointer-events: none;
}

.vnrest-location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vnrest-location-card:hover .vnrest-location-img img {
  transform: scale(1.05);
}

.vnrest-location-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
}

.vnrest-location-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--vnrest-primary);
}

.vnrest-location-addr {
  color: #666;
  font-size: 13px;
  line-height: 1.4;
}

.vnrest-location-phone {
  color: var(--vnrest-accent);
  font-size: 13px;
  font-weight: 600;
}

.vnrest-location-email {
  color: #888;
  font-size: 11px;
  font-weight: 400;
  word-break: break-all;
}

/* ══════════════════════════════════════
   Booking Notice — Collapsible
   ══════════════════════════════════════ */
.vnrest-notice {
  max-width: 760px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-left: 4px solid var(--vnrest-primary);
  border-radius: 0 var(--vnrest-radius) var(--vnrest-radius) 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--vnrest-dark);
  overflow: hidden;
}

.vnrest-notice-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.vnrest-notice-header:hover {
  background: rgba(23, 55, 30, 0.04);
}

.vnrest-notice-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--vnrest-primary);
}

.vnrest-notice-title {
  font-weight: 600;
  margin: 0;
  color: var(--vnrest-primary);
  font-size: 15px;
  flex: 1;
}

.vnrest-notice-chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #999;
  transition: transform 0.3s ease;
}

.vnrest-notice.expanded .vnrest-notice-chevron {
  transform: rotate(180deg);
}

.vnrest-notice-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.vnrest-notice.expanded .vnrest-notice-body {
  max-height: 300px;
  padding: 0 20px 16px;
}

.vnrest-notice-list {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
}

.vnrest-notice-list li {
  position: relative;
  padding: 3px 0;
}

.vnrest-notice-list li::before {
  content: '\2022';
  position: absolute;
  left: -16px;
  color: var(--vnrest-accent);
  font-weight: 700;
}

.vnrest-notice-list li strong {
  color: var(--vnrest-primary);
}

.vnrest-notice-list a {
  color: var(--vnrest-accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.vnrest-notice-list a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════
   Form Fields — Consistent with Contact
   ══════════════════════════════════════ */
.vnrest-form-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 540px) {
  .vnrest-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vnrest-field-full {
  grid-column: 1 / -1;
}

.vnrest-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--vnrest-primary-dark);
  margin-bottom: 6px;
}

.vnrest-field input[type="text"],
.vnrest-field input[type="email"],
.vnrest-field input[type="tel"],
.vnrest-field input[type="date"],
.vnrest-field select,
.vnrest-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--vnrest-border);
  border-radius: var(--vnrest-radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--vnrest-dark);
  background: var(--vnrest-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.vnrest-field input:focus,
.vnrest-field select:focus,
.vnrest-field textarea:focus {
  outline: none;
  border-color: var(--vnrest-primary);
  box-shadow: 0 0 0 3px rgba(23, 55, 30, 0.12);
}

.vnrest-field input[type="checkbox"] {
  accent-color: var(--vnrest-primary);
  margin-right: 6px;
}

/* Field validation states */
.vnrest-field-error input,
.vnrest-field-error select,
.vnrest-field-error textarea {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

.vnrest-field-valid input,
.vnrest-field-valid select,
.vnrest-field-valid textarea {
  border-color: #16a34a !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.08) !important;
}

.vnrest-field-msg {
  display: none;
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
  line-height: 1.4;
}

.vnrest-field-error .vnrest-field-msg {
  display: block;
  animation: vnrestShake 0.4s ease;
}

@keyframes vnrestShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
}

/* ══════════════════════════════════════
   Time Slots
   ══════════════════════════════════════ */
.vnrest-slots {
  margin-top: 20px;
}

.vnrest-slots-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 10px;
}

.vnrest-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vnrest-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  min-width: 80px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--vnrest-bg);
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  color: var(--vnrest-dark);
  transition: all 0.2s;
  opacity: 0;
  animation: vnrestSlotIn 0.3s ease forwards;
}

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

.vnrest-slot:hover {
  background: rgba(60, 69, 48, 0.08);
  border-color: var(--vnrest-border);
}

.vnrest-slot.selected {
  background: var(--vnrest-primary);
  color: var(--vnrest-white);
  border-color: var(--vnrest-primary);
}

.vnrest-slot-time {
  font-size: 16px;
  font-weight: 700;
}

.vnrest-slot-cap {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
}

.vnrest-slot-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vnrest-slot-ok .vnrest-slot-dot { background: #22c55e; }
.vnrest-slot-ok .vnrest-slot-cap { color: #16a34a; }
.vnrest-slot-low .vnrest-slot-dot { background: #f59e0b; }
.vnrest-slot-low .vnrest-slot-cap { color: #d97706; }
.vnrest-slot-critical .vnrest-slot-dot { background: #ef4444; animation: vnrestPulse 1.5s ease infinite; }
.vnrest-slot-critical .vnrest-slot-cap { color: #dc2626; font-weight: 700; }

@keyframes vnrestPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.vnrest-slot.selected .vnrest-slot-dot { background: rgba(255, 255, 255, 0.6); }
.vnrest-slot.selected .vnrest-slot-cap { color: rgba(255, 255, 255, 0.8); }

/* ══════════════════════════════════════
   Navigation
   ══════════════════════════════════════ */
.vnrest-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 12px;
}

.vnrest-btn-back {
  padding: 10px 24px;
  border: none;
  border-radius: 24px;
  background: var(--vnrest-bg);
  color: #666;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.vnrest-btn-back:hover {
  background: #e5e7eb;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.vnrest-btn-next,
.vnrest-btn-submit {
  padding: 12px 32px;
  border: none;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
  margin-left: auto;
}

.vnrest-btn-next {
  background: var(--vnrest-primary);
  color: var(--vnrest-white);
}

.vnrest-btn-next:hover:not(:disabled) {
  background: var(--vnrest-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(23, 55, 30, 0.25);
}

.vnrest-btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.vnrest-btn-submit {
  background: var(--vnrest-accent);
  color: var(--vnrest-white);
  width: auto;
}

.vnrest-btn-submit:hover {
  background: var(--vnrest-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.vnrest-btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ══════════════════════════════════════
   Summary — Receipt Card
   ══════════════════════════════════════ */
.vnrest-summary {
  background: var(--vnrest-white);
  border-radius: var(--vnrest-radius);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.vnrest-summary-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--vnrest-primary), var(--vnrest-accent));
}

.vnrest-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 14px;
  border-bottom: 1px solid #f3f4f6;
}

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

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

.vnrest-summary-label {
  color: #999;
  font-size: 13px;
}

.vnrest-summary-value {
  font-weight: 600;
  text-align: right;
  color: var(--vnrest-dark);
}

/* ══════════════════════════════════════
   Alerts
   ══════════════════════════════════════ */
.vnrest-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  background: #FFF3CD;
  color: #856404;
  border: none;
  margin-top: 12px;
}

.vnrest-alert-error {
  background: #F8D7DA;
  color: #721C24;
}

/* Closed day alert */
.vnrest-alert-closed {
  background: #FEF2F2;
  color: #991B1B;
  border: none;
  text-align: center;
  padding: 20px 16px;
}

.vnrest-closed-icon {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

.vnrest-alert-closed strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.vnrest-alert-closed p {
  margin: 0;
  font-size: 13px;
  color: #B91C1C;
}

/* ══════════════════════════════════════
   Success Step — Enhanced
   ══════════════════════════════════════ */
.vnrest-success {
  text-align: center;
  padding: 24px 0;
}

.vnrest-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vnrest-primary), var(--vnrest-primary-light));
  color: var(--vnrest-white);
  font-size: 36px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(23, 55, 30, 0.25);
  animation: vnrestSuccessPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes vnrestSuccessPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.vnrest-success h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  color: var(--vnrest-primary);
  margin: 0 0 8px;
}

.vnrest-success p {
  color: #666;
  font-size: 15px;
  margin: 0 0 16px;
}

.vnrest-success-next {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 0 auto 24px;
  max-width: 400px;
  text-align: left;
  font-size: 13px;
  color: var(--vnrest-primary);
  line-height: 1.5;
}

.vnrest-success-next strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.vnrest-btn-home {
  display: inline-block;
  padding: 10px 28px;
  border: none;
  border-radius: 24px;
  background: var(--vnrest-primary);
  color: var(--vnrest-white);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}

.vnrest-btn-home:hover {
  background: var(--vnrest-primary-dark);
  box-shadow: 0 4px 12px rgba(23, 55, 30, 0.25);
  transform: translateY(-1px);
  color: var(--vnrest-white);
}

/* ══════════════════════════════════════
   Loading Spinner
   ══════════════════════════════════════ */
.vnrest-loading {
  text-align: center;
  padding: 20px;
  color: #999;
}

.vnrest-loading::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--vnrest-primary-light);
  border-top-color: var(--vnrest-primary);
  border-radius: 50%;
  animation: vnrestSpin 0.6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

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

/* ══════════════════════════════════════
   Step 2: Party Size Pills
   ══════════════════════════════════════ */
.vnrest-party-bar {
  margin-bottom: 24px;
}

.vnrest-party-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--vnrest-primary-dark);
  margin-bottom: 10px;
}

.vnrest-party-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.vnrest-party-pill {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--vnrest-bg);
  color: var(--vnrest-dark);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vnrest-party-pill:hover {
  background: rgba(23, 55, 30, 0.08);
}

.vnrest-party-pill.active {
  background: var(--vnrest-primary);
  color: var(--vnrest-white);
  box-shadow: 0 2px 8px rgba(23, 55, 30, 0.25);
}

.vnrest-party-more {
  height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: 22px;
  background: var(--vnrest-bg);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: var(--vnrest-dark);
  cursor: pointer;
}

.vnrest-party-select-hidden {
  display: none !important;
}

/* ══════════════════════════════════════
   Calendar Strip
   ══════════════════════════════════════ */
.vnrest-calendar {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.vnrest-cal-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--vnrest-bg);
  color: var(--vnrest-dark);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.vnrest-cal-arrow:hover:not(:disabled) {
  background: rgba(23, 55, 30, 0.08);
}

.vnrest-cal-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.vnrest-cal-strip {
  display: flex;
  gap: 6px;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}

.vnrest-cal-strip::-webkit-scrollbar {
  display: none;
}

.vnrest-cal-day {
  flex: 1;
  min-width: 72px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px 8px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--vnrest-bg);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  color: var(--vnrest-dark);
  position: relative;
}

.vnrest-cal-day:hover:not(:disabled):not(.vnrest-cal-closed) {
  border-color: var(--vnrest-primary);
  background: rgba(23, 55, 30, 0.04);
}

.vnrest-cal-day:active:not(:disabled):not(.vnrest-cal-closed) {
  transform: scale(0.95);
}

.vnrest-cal-day.selected {
  border-color: var(--vnrest-primary);
  background: var(--vnrest-primary);
  color: var(--vnrest-white);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(23, 55, 30, 0.25);
}

.vnrest-cal-day.vnrest-cal-closed {
  opacity: 0.45;
  cursor: pointer;
  background: repeating-linear-gradient(
    -45deg,
    var(--vnrest-bg),
    var(--vnrest-bg) 4px,
    rgba(0, 0, 0, 0.03) 4px,
    rgba(0, 0, 0, 0.03) 8px
  );
}

.vnrest-cal-day.vnrest-cal-past {
  opacity: 0.3;
  cursor: not-allowed;
}

.vnrest-cal-day.vnrest-cal-today:not(.selected) {
  border-color: var(--vnrest-accent);
}

.vnrest-cal-dow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.vnrest-cal-num {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.vnrest-cal-month {
  font-size: 11px;
  opacity: 0.6;
}

.vnrest-cal-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 1px 6px;
  border-radius: 8px;
  background: #dc3545;
  color: #fff;
  margin-top: 2px;
}

.vnrest-cal-badge-today {
  background: var(--vnrest-accent);
  color: var(--vnrest-dark);
}

.vnrest-cal-day.selected .vnrest-cal-badge {
  background: rgba(255, 255, 255, 0.3);
  color: var(--vnrest-white);
}

.vnrest-cal-day.selected .vnrest-cal-dow,
.vnrest-cal-day.selected .vnrest-cal-month {
  opacity: 0.85;
}

/* Service group (Lunch / Dinner) */
.vnrest-service-group {
  margin-bottom: 20px;
}

.vnrest-service-group:last-child {
  margin-bottom: 0;
}

.vnrest-service-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.vnrest-service-icon {
  font-size: 18px;
}

.vnrest-service-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--vnrest-primary);
}

.vnrest-service-hours {
  font-size: 12px;
  color: #999;
  margin-left: auto;
}

/* Selected time confirmation bar */
.vnrest-time-selected {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--vnrest-primary);
}

.vnrest-time-selected-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--vnrest-primary);
  color: var(--vnrest-white);
  font-size: 14px;
  flex-shrink: 0;
}
