/* ═══════════════════════════════════════════════════════
   Buyz.co.il - Netflix-Style Light Theme
   ═══════════════════════════════════════════════════════ */

:root {
  --primary: #6C5CE7;
  --primary-light: #A29BFE;
  --primary-dark: #5A4BD1;
  --primary-bg: #F0EDFF;
  --accent: #E84393;
  --accent-light: #FD79A8;
  --accent-dark: #D63384;
  --accent-bg: #FFF0F6;
  --success: #00B894;
  --success-bg: #D1FAE5;
  --warning: #FDCB6E;
  --warning-dark: #E17055;
  --warning-bg: #FEF3C7;
  --danger: #FF6B6B;
  --danger-bg: #FEE2E2;
  --info: #74B9FF;
  --info-bg: #DBEAFE;

  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --bg: #F5F7FB;
  --surface: #FFFFFF;
  --text: #1E293B;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.04);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.04), 0 0 1px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 12px 28px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);

  --sidebar-width: 240px;
  --aside-width: 300px;
  --topbar-height: 68px;

  --transition: 0.2s ease;
  --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Noto Sans Hebrew', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button { cursor: pointer; }
ul, ol { list-style: none; }

/* ─── Layout ───────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

main { padding-top: var(--topbar-height); min-height: calc(100vh - 200px); }

.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ═══════════════════════════════════════════════════════
   TOPBAR - Netflix-Style Navigation
   ═══════════════════════════════════════════════════════ */

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--topbar-height);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.topbar-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 28px;
  gap: 24px;
}

.topbar-logo img {
  height: 36px;
  transition: var(--transition);
}
.topbar-logo:hover img { opacity: 0.85; }

.topbar-categories {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 12px;
}

.topbar-cat {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}

.topbar-cat:hover {
  color: var(--text);
  background: var(--gray-100);
}

.topbar-cat.active {
  color: var(--primary);
  font-weight: 700;
  background: var(--primary-bg);
}

.topbar-search {
  flex: 1;
  max-width: 420px;
  position: relative;
}

.topbar-search-input {
  width: 100%;
  padding: 10px 42px 10px 16px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--text);
  border: 2px solid transparent;
  transition: var(--transition);
}

.topbar-search-input:focus {
  background: var(--surface);
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px var(--primary-bg);
}

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

.topbar-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

.topbar-search .topbar-filter-btn {
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 4px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--gray-500);
  transition: var(--transition);
}

.topbar-filter-btn:hover {
  background: var(--gray-200);
  color: var(--text);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.topbar-action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--gray-500);
  transition: var(--transition);
  position: relative;
}

.topbar-action-btn:hover {
  background: var(--gray-100);
  color: var(--text);
}

.topbar-notification-dot {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid var(--surface);
}

.topbar-avatar {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(108,92,231,0.25);
}
.topbar-avatar:hover { transform: scale(1.05); }

.topbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
}
.topbar-hamburger span {
  display: block;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════
   NETFLIX 3-COLUMN LAYOUT
   ═══════════════════════════════════════════════════════ */

.nf-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr var(--aside-width);
  min-height: calc(100vh - var(--topbar-height));
  gap: 0;
}

.nf-sidebar {
  position: sticky;
  top: var(--topbar-height);
  height: calc(100vh - var(--topbar-height));
  overflow-y: auto;
  padding: 28px 0;
  background: var(--surface);
  border-left: 1px solid var(--border-light);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nf-sidebar::-webkit-scrollbar { display: none; }

.nf-sidebar-section {
  padding: 0 16px;
  margin-bottom: 28px;
}

.nf-sidebar-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 12px;
  margin-bottom: 10px;
}

.nf-sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  cursor: pointer;
}

.nf-sidebar-link:hover {
  background: var(--gray-100);
  color: var(--text);
}

.nf-sidebar-link.active {
  background: var(--primary-bg);
  color: var(--primary);
  font-weight: 600;
}

.nf-sidebar-link.active .nf-sidebar-icon {
  background: var(--primary);
  color: #fff;
}

.nf-sidebar-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--gray-100);
  color: var(--gray-500);
  flex-shrink: 0;
  transition: var(--transition);
}

.nf-sidebar-link:hover .nf-sidebar-icon {
  background: var(--gray-200);
  color: var(--gray-700);
}

.nf-sidebar-link.active:hover .nf-sidebar-icon {
  background: var(--primary);
  color: #fff;
}

.nf-sidebar-divider {
  height: 1px;
  background: var(--border-light);
  margin: 8px 16px 16px;
}

/* Main Content Area */

.nf-main {
  padding: 28px 32px;
  overflow-x: hidden;
}

/* Aside Panel (Right sidebar in the screenshot, Left in RTL) */

.nf-aside {
  position: sticky;
  top: var(--topbar-height);
  height: calc(100vh - var(--topbar-height));
  overflow-y: auto;
  padding: 28px 20px;
  background: var(--surface);
  border-right: 1px solid var(--border-light);
  scrollbar-width: none;
}
.nf-aside::-webkit-scrollbar { display: none; }

.nf-aside-section {
  margin-bottom: 32px;
}

.nf-aside-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 18px;
}

.nf-aside-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}
.nf-aside-item:last-child { border-bottom: none; }
.nf-aside-item:hover { opacity: 0.85; }

.nf-aside-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.nf-aside-info { flex: 1; min-width: 0; }

.nf-aside-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nf-aside-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.nf-aside-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--primary-bg);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
}

.nf-aside-badge.rating {
  background: var(--warning-bg);
  color: var(--warning-dark);
}

.nf-aside-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  margin-top: 12px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--border-light);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition);
  cursor: pointer;
}
.nf-aside-more:hover {
  background: var(--gray-100);
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════
   HERO BANNER
   ═══════════════════════════════════════════════════════ */

.nf-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 340px;
  background-size: cover;
  background-position: center;
  margin-bottom: 36px;
  box-shadow: var(--shadow-lg);
}

.nf-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.15) 100%
  );
}

.nf-hero-content {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 36px;
  z-index: 2;
  max-width: 65%;
}

.nf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.nf-hero-title {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.nf-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.nf-hero-tag {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.nf-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
}

.nf-hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nf-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
}

.nf-hero-btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(108,92,231,0.35);
}
.nf-hero-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(108,92,231,0.4);
}

.nf-hero-btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nf-hero-btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.nf-hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.nf-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
  cursor: pointer;
}

.nf-hero-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════
   CAROUSEL / HORIZONTAL SCROLL SECTIONS
   ═══════════════════════════════════════════════════════ */

.nf-section {
  margin-bottom: 36px;
}

.nf-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.nf-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
}

.nf-section-nav {
  display: flex;
  gap: 8px;
}

.nf-nav-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}

.nf-nav-btn:hover {
  background: var(--gray-200);
  color: var(--text);
}

.nf-nav-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.nf-carousel-wrap {
  position: relative;
}

.nf-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 8px;
  scroll-snap-type: x proximity;
}
.nf-carousel::-webkit-scrollbar { display: none; }

/* ═══════════════════════════════════════════════════════
   CARD STYLES - Netflix Poster Cards
   ═══════════════════════════════════════════════════════ */

.nf-card {
  flex: 0 0 220px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
  cursor: pointer;
  scroll-snap-align: start;
  border: 1px solid var(--border-light);
}

.nf-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
}

.nf-card-image {
  height: 150px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.nf-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.nf-card:hover .nf-card-image::after {
  opacity: 1;
}

.nf-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  z-index: 1;
}

.nf-card-badge.green {
  background: var(--success);
}

.nf-card-badge.pink {
  background: var(--accent);
}

.nf-card-price {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(108,92,231,0.3);
  z-index: 1;
}

.nf-card-body {
  padding: 18px 14px 14px;
}

.nf-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nf-card-subtitle {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
}

.nf-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.nf-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}

.nf-card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: var(--warning-dark);
  font-weight: 600;
}

.nf-card-location {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--text-muted);
}

.nf-card-action {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  background: var(--primary-bg);
  color: var(--primary);
  transition: var(--transition);
}

.nf-card:hover .nf-card-action {
  background: var(--primary);
  color: #fff;
}

/* Wide landscape cards */
.nf-card-wide {
  flex: 0 0 280px;
}

.nf-card-wide .nf-card-image {
  height: 170px;
}

/* ═══════════════════════════════════════════════════════
   CATEGORIES BAR (on home)
   ═══════════════════════════════════════════════════════ */

.categories-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.categories-bar::-webkit-scrollbar { display: none; }

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}
.category-pill:hover, .category-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(108,92,231,0.25);
}

.category-pill-icon { font-size: 18px; }

/* ═══════════════════════════════════════════════════════
   SECTION HEADERS (for non-home pages)
   ═══════════════════════════════════════════════════════ */

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

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.section-link:hover { color: var(--primary-dark); }

/* ═══════════════════════════════════════════════════════
   LEGACY CARDS (for supplier, product pages)
   ═══════════════════════════════════════════════════════ */

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }

.card-body { padding: 20px; }
.card-body-lg { padding: 28px; }

/* Business Cards */

.business-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.business-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.business-card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.business-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.business-card-booking-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--success);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.business-card-body { padding: 16px 20px; }

.business-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.business-card-supplier {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.business-card-location {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.business-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.business-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--warning-dark);
  font-weight: 600;
}

.business-card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}
.business-card-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-secondary);
}

/* Voucher Cards */

.voucher-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.voucher-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.voucher-card-image {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.voucher-card-price-tag {
  position: absolute;
  bottom: -14px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.voucher-card-body { padding: 24px 20px 16px; }

.voucher-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.voucher-card-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════
   SUPPLIER DETAIL
   ═══════════════════════════════════════════════════════ */

.supplier-hero {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.supplier-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
  border-radius: inherit;
}

.supplier-hero-content {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 32px;
  color: #fff;
  z-index: 1;
}

.supplier-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  border: 3px solid #fff;
  background: #fff;
  object-fit: cover;
  margin-bottom: 12px;
}

.supplier-name {
  font-size: 32px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.supplier-category-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
}

.supplier-info-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.9;
}

.supplier-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Info Cards Row */

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: -40px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 8px;
}

.info-card-icon.purple { background: var(--primary-bg); color: var(--primary); }
.info-card-icon.pink   { background: var(--accent-bg); color: var(--accent-dark); }
.info-card-icon.green  { background: var(--success-bg); color: var(--success); }
.info-card-icon.blue   { background: var(--info-bg); color: var(--info); }

.info-card-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
}

.info-card-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.info-card-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 4px;
}

.supplier-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.supplier-contact-link:last-child { border-bottom: none; }
.supplier-contact-link:hover { color: var(--primary); }

/* ═══════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════ */

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 20px;
  transition: var(--transition);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.service-card-image {
  width: 100px;
  height: 100px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

.service-card-content { flex: 1; }

.service-card-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.service-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.service-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.service-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-secondary);
}

.service-card-price {
  margin-right: auto;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.service-card-offer {
  background: var(--danger-bg);
  color: var(--danger);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.service-card-original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════
   BOOKING FLOW
   ═══════════════════════════════════════════════════════ */

.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  padding: 0 10px;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  position: relative;
}

.booking-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  background: var(--gray-200);
  color: var(--gray-500);
  transition: var(--transition);
  flex-shrink: 0;
}

.booking-step.active .booking-step-number {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 3px var(--primary-bg);
}

.booking-step.completed .booking-step-number {
  background: var(--success);
  color: #fff;
}

.booking-step-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.booking-step.active .booking-step-label {
  color: var(--primary);
  font-weight: 600;
}
.booking-step.completed .booking-step-label {
  color: var(--success);
}

.booking-step-line {
  width: 40px;
  height: 2px;
  background: var(--gray-200);
  flex-shrink: 0;
}
.booking-step-line.completed { background: var(--success); }

/* Participants */

.participant-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
}

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

.participant-number {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

.participant-remove {
  color: var(--danger);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.participant-remove:hover { opacity: 0.7; }

/* Date Picker */

.datepicker {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

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

.datepicker-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
}

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

.datepicker-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-600);
  transition: var(--transition);
  font-size: 18px;
}
.datepicker-nav-btn:hover { background: var(--gray-200); }
.datepicker-nav-btn:disabled { opacity: 0.3; pointer-events: none; }

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

.datepicker-weekday {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 0;
}

.datepicker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.datepicker-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}
.datepicker-day:hover { background: var(--primary-bg); }
.datepicker-day.selected {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(108,92,231,0.3);
}
.datepicker-day.today {
  border: 2px solid var(--primary);
}
.datepicker-day.disabled {
  color: var(--gray-300);
  pointer-events: none;
}
.datepicker-day.other-month { color: var(--gray-300); }

/* Time Slots */

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}

.time-slot {
  padding: 12px 8px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}
.time-slot:hover {
  border-color: var(--primary-light);
  background: var(--primary-bg);
}
.time-slot.selected {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.time-slot.unavailable {
  opacity: 0.4;
  pointer-events: none;
  text-decoration: line-through;
}

/* ═══════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════ */

.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 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  transition: var(--transition);
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-bg);
}
.form-input::placeholder { color: var(--gray-400); }

.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  cursor: pointer;
  transition: var(--transition);
}
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-bg);
}

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

.form-error {
  font-size: 13px;
  color: var(--danger);
  margin-top: 4px;
}

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Gender Toggle */

.gender-toggle {
  display: flex;
  gap: 8px;
}

.gender-option {
  flex: 1;
  padding: 10px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-600);
}

.gender-option.selected {
  border-color: var(--primary);
  background: var(--primary-bg);
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: var(--radius);
}

.btn-block {
  width: 100%;
  display: flex;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gray-700);
}
.btn-outline:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}

.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #059669; }

.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 8px 16px;
}
.btn-ghost:hover { background: var(--primary-bg); }

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════
   SUMMARY / PRICING
   ═══════════════════════════════════════════════════════ */

.summary-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.summary-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.summary-body { padding: 20px 24px; }

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.summary-row-value {
  font-weight: 600;
  color: var(--gray-800);
}

.summary-row.discount .summary-row-value { color: var(--success); }

.summary-divider {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 12px 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
}

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

.summary-total-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.summary-footer {
  padding: 20px 24px;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════ */

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

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

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
}

.review-name { font-weight: 600; font-size: 15px; }

.review-date { font-size: 12px; color: var(--text-muted); }

.review-stars {
  color: var(--warning-dark);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-content {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.star { font-size: 16px; }
.star-full { color: var(--warning-dark); }
.star-half { color: var(--warning-dark); opacity: 0.5; }
.star-empty { color: var(--gray-300); }

/* Rating Summary */

.rating-summary {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.rating-big {
  text-align: center;
  min-width: 120px;
}

.rating-big-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.rating-big-stars {
  color: var(--warning-dark);
  font-size: 18px;
  margin: 8px 0 4px;
  letter-spacing: 2px;
}

.rating-big-count {
  font-size: 13px;
  color: var(--text-muted);
}

.rating-bars { flex: 1; }

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.rating-bar {
  flex: 1;
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--warning-dark);
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* ═══════════════════════════════════════════════════════
   TABS
   ═══════════════════════════════════════════════════════ */

.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 28px;
  overflow-x: auto;
}

.tab {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.tab:hover { color: var(--gray-700); }
.tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ═══════════════════════════════════════════════════════
   BADGES & ALERTS
   ═══════════════════════════════════════════════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.badge-primary { background: var(--primary-bg); color: var(--primary); }
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning-dark); }
.badge-danger  { background: var(--danger-bg); color: var(--danger); }
.badge-info    { background: var(--info-bg); color: var(--info); }

.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success { background: var(--success-bg); color: #065F46; }
.alert-error   { background: var(--danger-bg); color: #991B1B; }
.alert-warning { background: var(--warning-bg); color: #92400E; }
.alert-info    { background: var(--info-bg); color: #1E40AF; }

/* ═══════════════════════════════════════════════════════
   HOURS TABLE
   ═══════════════════════════════════════════════════════ */

.hours-table { width: 100%; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }

.hours-day { font-weight: 500; color: var(--gray-700); }
.hours-time { color: var(--text-secondary); }
.hours-closed { color: var(--danger); font-weight: 500; }
.hours-row.today { background: var(--primary-bg); padding: 10px 12px; border-radius: var(--radius); }

/* ═══════════════════════════════════════════════════════
   CONFIRMATION
   ═══════════════════════════════════════════════════════ */

.confirmation-box {
  text-align: center;
  padding: 60px 20px;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--success-bg);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 24px;
}

.confirmation-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.confirmation-ref {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.confirmation-ref strong {
  color: var(--primary);
  font-size: 20px;
}

/* ═══════════════════════════════════════════════════════
   VOUCHER PAGE
   ═══════════════════════════════════════════════════════ */

.voucher-display {
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
}

.voucher-display-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.voucher-display-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.voucher-display-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.voucher-display-info {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.voucher-code-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 12px;
}

.voucher-code-label {
  font-size: 13px;
  color: var(--text-muted);
}

.voucher-code-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════
   ADMIN
   ═══════════════════════════════════════════════════════ */

.admin-login-wrapper {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-box {
  width: 400px;
  max-width: 100%;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  text-align: center;
}

.admin-sidebar {
  position: fixed;
  top: 72px;
  right: 0;
  width: 260px;
  height: calc(100vh - 72px);
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 24px 0;
  overflow-y: auto;
  z-index: 50;
}

.admin-content {
  margin-right: 260px;
  padding: 32px;
}

/* ═══════════════════════════════════════════════════════
   MISC COMPONENTS
   ═══════════════════════════════════════════════════════ */

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

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

.empty-state-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.loading-spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.loading-overlay.active { opacity: 1; visibility: visible; }

/* Quantity Control */

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gray-600);
  background: var(--gray-50);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--gray-100); }
.qty-btn:disabled { opacity: 0.3; pointer-events: none; }

.qty-value {
  width: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
}

/* Promo Code */

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

.promo-input-group input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
}

.promo-input-group button {
  padding: 10px 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-700);
  transition: var(--transition);
}
.promo-input-group button:hover { background: var(--gray-200); }

/* Hours Mini */

.hours-mini {
  font-size: 13px;
  color: var(--text-secondary);
}

.hours-status-open  { color: var(--success); font-weight: 600; }
.hours-status-closed { color: var(--danger); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

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

.slide-up {
  animation: slideUp 0.4s ease forwards;
}

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

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.nf-hero { animation: fadeInScale 0.6s ease forwards; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.site-footer {
  background: var(--gray-900);
  color: #fff;
  margin-top: 30px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo { height: 32px; margin-bottom: 12px; filter: brightness(10); }

.footer-container p {
  color: var(--gray-400);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-links a, .footer-contact a {
  display: block;
  color: var(--gray-400);
  font-size: 14px;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════
   TWO-COLUMN LAYOUTS
   ═══════════════════════════════════════════════════════ */

.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
}

.layout-sidebar-booking {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
}

/* ═══════════════════════════════════════════════════════
   MOBILE NAVIGATION
   ═══════════════════════════════════════════════════════ */

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--topbar-height);
  right: 0;
  left: 0;
  background: var(--surface);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: block; }

.nav-mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.nav-mobile-link:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════
   SEARCH RESULTS DROPDOWN
   ═══════════════════════════════════════════════════════ */

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  z-index: 200;
  max-height: 420px;
  overflow-y: auto;
  display: none;
}

@media (max-width: 768px) {
  .search-results {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    margin-top: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    max-height: calc(100vh - var(--topbar-height) - 40px);
  }
}
.search-results.active { display: block; }

.search-results-group {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.search-results-group:last-child { border-bottom: none; }

.search-results-label {
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  transition: var(--transition);
  cursor: pointer;
}
.search-result-item:hover { background: var(--gray-50); }

.search-result-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  background-color: var(--gray-100);
}

.search-result-info { flex: 1; min-width: 0; }

.search-result-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.search-result-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.search-result-rating {
  font-size: 12px;
  color: var(--warning-dark);
  font-weight: 600;
}

.search-loading {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.search-no-results {
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════
   ADMIN SIDEBAR LAYOUT
   ═══════════════════════════════════════════════════════ */

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - var(--topbar-height));
}

.admin-nav {
  position: sticky;
  top: var(--topbar-height);
  height: calc(100vh - var(--topbar-height));
  overflow-y: auto;
  background: var(--surface);
  border-left: 1px solid var(--border-light);
  padding: 24px 0;
  scrollbar-width: none;
}
.admin-nav::-webkit-scrollbar { display: none; }

.admin-nav-header {
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.admin-nav-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
}

.admin-nav-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.admin-nav-section {
  padding: 0 12px;
  margin-bottom: 24px;
}

.admin-nav-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 12px;
  margin-bottom: 8px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  cursor: pointer;
}

.admin-nav-link:hover {
  background: var(--gray-100);
  color: var(--text);
}

.admin-nav-link.active {
  background: var(--primary-bg);
  color: var(--primary);
  font-weight: 600;
}

.admin-nav-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  color: var(--gray-500);
  flex-shrink: 0;
  transition: var(--transition);
}

.admin-nav-link.active .admin-nav-icon {
  background: var(--primary);
  color: #fff;
}

.admin-nav-link:hover .admin-nav-icon {
  background: var(--gray-200);
  color: var(--gray-700);
}

.admin-nav-badge {
  margin-right: auto;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  min-width: 20px;
  text-align: center;
}

.admin-body {
  padding: 32px;
  overflow-x: auto;
}

.admin-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.admin-page-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.admin-stat-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.admin-stat-card:hover { box-shadow: var(--shadow-md); }

.admin-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.admin-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 4px;
}

.admin-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.admin-table-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.admin-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.admin-table-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .nf-layout {
    grid-template-columns: var(--sidebar-width) 1fr;
  }

  .nf-aside {
    display: none;
  }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --topbar-height: 60px;
  }

  main { padding-top: var(--topbar-height); }

  .nf-layout {
    grid-template-columns: 1fr;
  }

  .nf-sidebar {
    display: none;
  }

  .nf-main {
    padding: 20px 16px;
  }

  .topbar-inner {
    padding: 0 16px;
  }

  .topbar-categories { display: none; }
  .topbar-search { max-width: none; flex: 1; }
  .topbar-hamburger { display: flex; }
  .topbar-action-btn,
  .topbar-avatar { display: none; }

  .nf-hero {
    height: 300px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
  }

  .nf-hero-content {
    max-width: 90%;
    padding: 24px;
  }

  .nf-hero-title {
    font-size: 26px;
  }

  .nf-hero-meta { gap: 8px; }

  .nf-section-title { font-size: 18px; }

  .nf-card { flex: 0 0 180px; }
  .nf-card-wide { flex: 0 0 240px; }
  .nf-card-image { height: 120px; }
  .nf-card-wide .nf-card-image { height: 140px; }

  .section-title { font-size: 22px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

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

  .booking-steps { gap: 0; }
  .booking-step { padding: 6px 4px; gap: 0; }
  .booking-step-number { width: 28px; height: 28px; font-size: 13px; }
  .booking-step.active .booking-step-number { box-shadow: 0 0 0 2px var(--primary-bg); }
  .booking-step-line { width: 24px; }
  .booking-step-label { display: none; }

  .supplier-hero { height: 260px; }
  .supplier-name { font-size: 26px; }
  .supplier-hero-content { padding: 24px 16px; }
  .supplier-info-bar { gap: 12px; font-size: 13px; }

  .info-cards { grid-template-columns: repeat(2, 1fr); margin-top: -30px; gap: 10px; }

  .rating-summary { flex-direction: column; gap: 20px; }

  .service-card { flex-direction: column; }
  .service-card-image { width: 100%; height: 160px; }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

  .admin-sidebar { display: none; }
  .admin-content { margin-right: 0; }

  .admin-layout { grid-template-columns: 1fr; }
  .admin-nav { display: none; }
  .admin-body { padding: 20px 16px; }
  .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }

  .time-slots-grid { grid-template-columns: repeat(3, 1fr); }

  .summary-total-value { font-size: 24px; }

  .container { padding: 0 16px; }
}

@media (max-width: 960px) {
  .layout-sidebar,
  .layout-sidebar-booking {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nf-hero { height: 280px; border-radius: var(--radius); }
  .nf-hero-title { font-size: 22px; }
  .nf-hero-content { max-width: 100%; padding: 20px; }
  .nf-hero-btn { padding: 10px 20px; font-size: 13px; }

  .nf-card { flex: 0 0 160px; }
  .nf-card-wide { flex: 0 0 200px; }

  .info-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .info-card { padding: 14px; }
  .info-card-value { font-size: 18px; }

  .time-slots-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .time-slot { padding: 10px 4px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════ */

.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }
.w-full { width: 100%; }
