
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@600;700&display=swap');

:root {
  --bg-main: #f9fafb;
  --bg-surface: #ffffff;
  --bg-surface-hover: #f3f4f6;
  --bg-card: #ffffff;
  --bg-card-border: #e5e7eb;
  
  --primary: #111827;
  --primary-accent: #f59e0b;
  --primary-glow: rgba(245, 158, 11, 0.2);
  
  --text-main: #111827;
  --text-muted: #4b5563;
  --text-dim: #9ca3af;
  
  --danger: #ef4444;
  --success: #16a34a;
  
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
}

/* TOPNAV BAR */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-card-border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.topnav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.topnav-brand-icon {
  width: 36px;
  height: 36px;
  background: #111827;
  color: #f59e0b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.topnav-brand-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.admin-btn {
  background: #f3f4f6;
  color: #111827;
  border: 1px solid #d1d5db;
  padding: 8px 14px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.admin-btn:hover {
  background: #111827;
  color: #ffffff;
}

/* CONTAINER WRAPPER */
.page-wrapper {
  width: min(100%, 900px);
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 14px 40px 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HERO BANNER WHITE */
.hero-banner-white {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--r-lg);
  padding: 22px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.hero-banner-white h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.hero-banner-white p {
  font-size: 13.5px;
  color: #4b5563;
  font-weight: 500;
}

/* BRAND SELECTOR (2 BRANDS) */
.brands-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.brands-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.brand-card {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--r-lg);
  padding: 16px 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.brand-card.active {
  border-color: #111827;
  background: #ffffff;
  box-shadow: 0 0 0 2px #111827;
}

.brand-card-icon-wrap {
  width: 42px;
  height: 42px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  margin-bottom: 8px;
}

.brand-card-name {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}

.brand-card-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-top: 4px;
  background: #fef3c7;
  color: #b45309;
}

/* CONTROLS SECTION */
.controls-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.outlet-search-box {
  position: relative;
  width: 100%;
}

.section-label {
  font-size: 11px;
  font-weight: 800;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.outlet-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.outlet-input-wrap input {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  color: #111827;
  padding: 14px 42px 14px 44px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.outlet-input-wrap input:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

.outlet-input-icon {
  position: absolute;
  left: 16px;
  color: #4b5563;
  font-size: 18px;
  pointer-events: none;
}

.clear-search-btn {
  position: absolute;
  right: 14px;
  background: #e5e7eb;
  border: none;
  color: #374151;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clear-search-btn:hover {
  background: var(--danger);
  color: #fff;
}


/* ULTRA-CLEAN OUTLET SEARCH DROPDOWN & LOADING STYLING */
.outlet-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--r-lg);
  max-height: 300px;
  overflow-y: auto;
  z-index: 120;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  display: none;
  padding: 6px;
}

.outlet-suggestions-loading {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #4b5563;
  background: #ffffff;
  border-radius: var(--r-md);
}

.dots-spinner {
  display: flex;
  gap: 5px;
}

.dots-spinner div {
  width: 7px;
  height: 7px;
  background: #f59e0b;
  border-radius: 50%;
  animation: dotsBounce 1.4s infinite ease-in-out both;
}

.dots-spinner div:nth-child(1) { animation-delay: -0.32s; }
.dots-spinner div:nth-child(2) { animation-delay: -0.16s; }

@keyframes dotsBounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

.outlet-suggestions-empty {
  padding: 22px 16px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.45;
  background: #ffffff;
  border-radius: var(--r-md);
}

.outlet-suggestion-item {
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
  border-radius: var(--r-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: all 0.2s ease;
  margin-bottom: 2px;
}

.outlet-suggestion-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.outlet-suggestion-item:hover {
  background: #f8fafc;
}

.osi-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.osi-pin-wrap {
  width: 38px;
  height: 38px;
  background: #fef3c7;
  border: 1px solid #fde047;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b45309;
  font-size: 16px;
  flex-shrink: 0;
}

.osi-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.osi-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.osi-address {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.outlet-status-badge-cool {
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.outlet-status-badge-cool.status-open {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
}

.outlet-status-badge-cool.status-close {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

.outlet-status-badge-cool.status-pesan-tempat {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde047;
}


/* WIFI CARD */
.wifi-section { width: 100%; }

.wifi-toggle-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, #fffdf5 0%, #fff7d6 55%, #ffedb0 100%);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #92400e;
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.14), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

html:not(.platform-ready) .topnav-brand-icon {
  visibility: hidden;
  opacity: 0;
}

.platform-ready .topnav-brand-icon {
  visibility: visible;
  opacity: 1;
  transition: opacity .14s ease;
}

/* Jadwal TIX ID */
.tix-theater-card{display:grid;grid-template-columns:minmax(220px,320px) 1fr;gap:24px;align-items:start}
.tix-theater-heading{display:flex;flex-direction:column;gap:6px}
.tix-theater-heading>span{color:#e3222b;font-size:11px;font-weight:800;letter-spacing:.1em}
.tix-theater-heading>strong{font-size:17px;line-height:1.35}
.tix-theater-heading>small{color:#667085;line-height:1.5}
.tix-show-groups{display:flex;flex-direction:column;gap:18px;min-width:0}
.tix-show-category{padding-bottom:16px;border-bottom:1px solid #e7eaf0}
.tix-show-category:last-child{padding-bottom:0;border-bottom:0}
.tix-show-category-head{display:flex;justify-content:space-between;gap:12px;margin-bottom:10px}
.tix-show-category-head strong{font-size:13px;color:#1c2738}
.tix-show-category-head small{color:#667085;font-weight:600}
.tix-show-times{display:flex;flex-wrap:wrap;gap:8px}
.tix-time-button{min-width:76px;padding:9px 12px;border:1px solid #d9dee7;border-radius:11px;background:#fff;color:#101828;cursor:pointer;display:flex;flex-direction:column;align-items:center;gap:2px;transition:.18s ease}
.tix-time-button:hover{border-color:#e3222b;box-shadow:0 6px 16px rgba(227,34,43,.12);transform:translateY(-1px)}
.tix-time-button strong{font-size:14px}
.tix-time-button small{font-size:10px;color:#667085}
.tix-time-button.expired{background:#f2f4f7;border-color:#e4e7ec;color:#98a2b3;cursor:not-allowed;box-shadow:none;transform:none}
.tix-time-button.expired strong{text-decoration:line-through}
.tix-detail-controls{margin-bottom:20px;padding:18px;border:1px solid #e1e5ec;border-radius:18px;background:#fff}
.tix-date-strip{display:flex;gap:9px;overflow-x:auto;padding-bottom:13px;margin-bottom:15px;border-bottom:1px solid #eaecf0;scrollbar-width:thin}
.tix-date-button{min-width:76px;padding:9px 12px;border:1px solid #d9dee7;border-radius:13px;background:#fff;color:#344054;display:flex;flex-direction:column;align-items:center;gap:2px;cursor:pointer}
.tix-date-button small,.tix-date-button span{font-size:10px}
.tix-date-button strong{font-size:18px}
.tix-date-button.active{border-color:#e3222b;background:#e3222b;color:#fff;box-shadow:0 7px 16px rgba(227,34,43,.2)}
.tix-theater-search{height:46px;padding:0 14px;margin-bottom:13px;border:1px solid #d9dee7;border-radius:12px;display:flex;align-items:center;gap:10px}
.tix-theater-search span{font-size:23px;color:#667085;transform:rotate(-20deg)}
.tix-theater-search input{width:100%;border:0;outline:0;background:transparent;font:inherit;color:#101828}
.tix-detail-filters{display:flex;flex-wrap:wrap;gap:8px}
.tix-empty-state{padding:24px 10px;text-align:center;color:#667085;display:flex;flex-direction:column;align-items:center;gap:6px;background:transparent;border:0}
.tix-empty-state strong{color:#344054;font-size:15px}
.tix-empty-state span{font-size:12px}
#cgvScheduleArea.active{display:block;margin-top:18px}.ticket-request-modal.cgv-inline-flow{width:100%;max-width:none;max-height:none;margin:0;overflow:visible;border-radius:24px;box-shadow:0 12px 35px rgba(15,23,42,.08)}.ticket-request-modal.cgv-inline-flow .ticket-modal-header{position:static}@media(max-width:600px){.ticket-request-modal.cgv-inline-flow{border-radius:18px}}
body.cgv-full-page-open{overflow:hidden}body.cgv-full-page-open #cgvScheduleArea.active{position:fixed;inset:0;z-index:2000;margin:0;padding:20px max(20px,calc((100vw - 1000px)/2)) 48px;background:#f8fafc;overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain}body.cgv-full-page-open #cgvScheduleArea>.tix-detail-header{margin-top:0}@media(max-width:600px){body.cgv-full-page-open #cgvScheduleArea.active{padding:10px 10px 32px}}
.ticket-request-modal.cgv-seat-page .ticket-modal-header>button{width:auto;min-width:86px;padding:0 14px;font-size:11px;font-weight:800}.ticket-request-modal.cgv-seat-page{background:#fff}.ticket-request-modal.cgv-seat-page .seat-warning{margin-top:18px}
.cgv-seat-page .cgv-location-field,.cgv-seat-page .cgv-cinema-field,.cgv-seat-page .cgv-date-field,.cgv-seat-page .cgv-time-field{display:none}.cgv-seat-selection-summary{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:10px;margin:18px 20px 0;padding:14px 16px;border:1px solid #e4e7ec;border-radius:14px;background:#f8fafc}.cgv-seat-selection-summary div{min-width:0}.cgv-seat-selection-summary small{display:block;margin-bottom:4px;color:#98a2b3;font-size:8px;font-weight:900;letter-spacing:.8px}.cgv-seat-selection-summary strong{display:block;overflow:hidden;color:#101828;font-size:11px;text-overflow:ellipsis;white-space:nowrap}@media(max-width:600px){.cgv-seat-selection-summary{grid-template-columns:1fr 1fr;margin:13px 14px 0;padding:12px}.cgv-seat-selection-summary strong{font-size:10px}}
.cgv-only-filter .movie-tab:disabled{opacity:1;cursor:default;background:#e3222b;border-color:#e3222b;color:#fff}.brand-cgv .tix-date-button.active{background:#e3222b;border-color:#e3222b;color:#fff}.brand-cgv .tix-theater-heading>span{color:#e3222b}.brand-cgv .tix-detail-header>button{background:#fff;border:1px solid #d9dee7;color:#101828;box-shadow:none}.brand-cgv .tix-detail-header>button:hover{background:#f8fafc;border-color:#98a2b3;transform:translateY(-1px)}
.cgv-date-field,.cgv-time-field{padding:16px;border:1px solid #e4e7ec;border-radius:16px;background:#fff}.cgv-date-strip{width:100%;padding:4px 0 12px;margin:0;overflow-x:auto}.cgv-time-buttons{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;width:100%;margin-top:4px}.cgv-time-buttons .tix-time-button{width:100%;min-width:0;min-height:72px;padding:10px 8px}.cgv-time-buttons .tix-time-button span{font-size:9px;font-weight:800;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}.cgv-time-buttons .tix-time-button.active{background:#ed1c24;border-color:#ed1c24;color:#fff;box-shadow:0 7px 18px rgba(237,28,36,.22)}.cgv-time-buttons .tix-time-button.active small,.cgv-time-buttons .tix-time-button.active span{color:#fff}.cgv-time-buttons .tix-time-button small{display:block;margin-top:3px;font-size:9px}.cgv-no-schedule{grid-column:1/-1;padding:22px;text-align:center;color:#667085;background:#f8fafc;border-radius:12px}@media(max-width:760px){.cgv-time-buttons{grid-template-columns:repeat(3,minmax(0,1fr))}}@media(max-width:600px){.cgv-date-field,.cgv-time-field{padding:12px}.cgv-date-strip{display:flex;flex-wrap:nowrap}.cgv-time-buttons{grid-template-columns:repeat(2,minmax(0,1fr))}.cgv-time-buttons .tix-time-button{width:100%;min-width:0}}
.cgv-seat-reference{margin:0 auto 20px;padding:14px;border:1px solid #e4e7ec;border-radius:16px;background:#f8fafc;text-align:center}.cgv-seat-reference span{display:block;margin-bottom:10px;color:#667085;font-size:9px;font-weight:900;letter-spacing:1.2px}.cgv-seat-reference img{display:block;width:100%;max-width:720px;max-height:360px;margin:auto;object-fit:contain;border-radius:10px}.cgv-seat-reference.hidden{display:none}@media(max-width:600px){.cgv-seat-reference{padding:9px}.cgv-seat-reference img{max-height:240px}}
.ticket-request-modal.cgv-seat-page .seat-warning{display:none}.ticket-request-modal.cgv-seat-page .ticket-form-grid>.cgv-location-field,.ticket-request-modal.cgv-seat-page .ticket-form-grid>.cgv-cinema-field,.ticket-request-modal.cgv-seat-page .ticket-form-grid>.cgv-date-field,.ticket-request-modal.cgv-seat-page .ticket-form-grid>.cgv-time-field,.ticket-request-modal.cgv-seat-page .ticket-form-grid>.cgv-format-field{display:none}.ticket-request-modal.cgv-seat-page form{padding-top:16px}.ticket-request-modal.cgv-seat-page .ticket-form-grid{grid-template-columns:minmax(180px,280px) 1fr;align-items:start}.ticket-request-modal.cgv-seat-page #cgvSeatMapPanel{margin-top:2px}.ticket-request-modal.cgv-seat-page .cgv-seat-selection-summary{margin:16px 20px 0;border-color:#e2e8f0;background:linear-gradient(135deg,#f8fafc,#fff);box-shadow:0 5px 18px rgba(15,23,42,.04)}@media(max-width:600px){.ticket-request-modal.cgv-seat-page .ticket-form-grid{grid-template-columns:1fr}.ticket-request-modal.cgv-seat-page .cgv-seat-selection-summary{margin:12px 14px 0}.ticket-request-modal.cgv-seat-page form{padding-top:12px}}
.cgv-seat-picker .seat-map{align-items:flex-start;width:100%;padding:6px 4px 14px;scrollbar-gutter:stable}.cgv-seat-picker .seat-row{justify-content:flex-start;width:max-content;min-width:100%;padding-right:8px}.cgv-seat-picker .cinema-screen{width:min(420px,90%)}@media(max-width:600px){.ticket-request-modal.cgv-seat-page .cgv-seat-picker{padding:14px 8px}.cgv-seat-picker .seat-map{margin:0;overflow-x:auto;overscroll-behavior-x:contain;-webkit-overflow-scrolling:touch}.cgv-seat-picker .seat-row{min-width:max-content}.cgv-seat-picker .seat-row b{position:sticky;left:0;z-index:2;flex:0 0 22px;padding:7px 2px;background:#fff}.cgv-seat-picker .seat,.cgv-seat-picker .seat-gap{width:29px;height:29px;flex-basis:29px}.cgv-seat-picker .seat{font-size:10px}}
@media(max-width:600px){.ticket-request-modal.cgv-seat-page .ticket-modal-header{padding:18px 16px}.ticket-request-modal.cgv-seat-page .ticket-modal-header span{font-size:10px}.ticket-request-modal.cgv-seat-page .ticket-modal-header h2{font-size:21px;line-height:1.2}.ticket-request-modal.cgv-seat-page .ticket-modal-header>button{min-width:92px;height:40px;font-size:13px}.ticket-request-modal.cgv-seat-page .cgv-seat-selection-summary{gap:12px;padding:15px}.ticket-request-modal.cgv-seat-page .cgv-seat-selection-summary small{font-size:9px}.ticket-request-modal.cgv-seat-page .cgv-seat-selection-summary strong{font-size:13px}.ticket-request-modal.cgv-seat-page form{padding:16px}.ticket-request-modal.cgv-seat-page .ticket-form-grid{gap:16px}.ticket-request-modal.cgv-seat-page .ticket-form-grid label{font-size:12px}.ticket-request-modal.cgv-seat-page .ticket-form-grid input,.ticket-request-modal.cgv-seat-page .ticket-form-grid textarea{min-height:48px;padding:13px 14px;border-radius:12px;font-size:14px}.ticket-request-modal.cgv-seat-page .ticket-form-grid textarea{min-height:82px}.ticket-request-modal.cgv-seat-page .ticket-form-grid small{font-size:10px;line-height:1.45}.ticket-request-modal.cgv-seat-page .seat-map-status{padding:22px 16px;font-size:13px;line-height:1.55}.ticket-request-modal.cgv-seat-page .seat-map-status strong{font-size:15px}.ticket-request-modal.cgv-seat-page .seat-map-status small{font-size:11px}.ticket-request-modal.cgv-seat-page .cgv-seat-picker{padding:18px 10px}.cgv-seat-picker .cinema-screen{margin-bottom:24px;font-size:11px}.cgv-seat-picker .seat,.cgv-seat-picker .seat-gap{width:34px;height:34px;flex-basis:34px}.cgv-seat-picker .seat{font-size:11px}.cgv-seat-picker .seat-row{gap:6px}.cgv-seat-picker .seat-map-head{font-size:12px}.ticket-request-modal.cgv-seat-page .ticket-submit-btn{min-height:50px;font-size:14px;border-radius:13px}}
.seat-map-status.cgv-seat-manual-help{border:1px solid #fde68a;background:#fffbeb;color:#854d0e}.seat-map-status.cgv-seat-manual-help strong{color:#713f12}
.cgv-location-step .cgv-native-location{display:none}.cgv-location-step>.cgv-food-cinema-field{display:flex;flex-direction:column;gap:8px;color:#344054;font-size:11px;font-weight:800}.cgv-location-step>.cgv-food-cinema-field[hidden]{display:none}.cgv-location-step>.cgv-food-cinema-field select{width:100%;height:50px;padding:0 16px;border:1px solid #d0d5dd;border-radius:12px;background:#f8fafc;color:#101828;font:600 13px/1 "Plus Jakarta Sans",sans-serif;outline:none}.cgv-location-step>#cgvCinemaStatus{margin-top:-4px}.cgv-location-step>.tix-city-search{display:flex}.cgv-location-step .tix-city-results{display:block}.cgv-location-step .tix-city-results.hidden{display:none}
@media(max-width:640px){.cgv-location-step>.tix-city-search{width:100%;margin-left:0;margin-right:0}.cgv-location-step .tix-city-search input{height:48px;padding-left:44px;border-radius:12px;font-size:13px}.cgv-location-step .tix-city-search b{left:14px;font-size:20px}}
.cgv-ticket-price-summary{margin:16px 20px 0;padding:16px 18px;border:1px solid #bbf7d0;border-radius:16px;background:linear-gradient(135deg,#f0fdf4,#fff);box-shadow:0 7px 22px rgba(22,163,74,.08)}.cgv-promo-heading{display:flex;align-items:center;justify-content:space-between;gap:14px;padding-bottom:12px;border-bottom:1px dashed #bbf7d0}.cgv-promo-heading span{padding:6px 9px;border-radius:8px;background:#16a34a;color:#fff;font-size:9px;font-weight:900;letter-spacing:.8px}.cgv-promo-heading strong{color:#166534;font-size:12px}.cgv-price-lines{padding-top:9px}.cgv-price-lines>div{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:5px 0;color:#64748b;font-size:11px}.cgv-price-lines b{color:#334155}.cgv-price-lines .cgv-saving-row,.cgv-price-lines .cgv-saving-row b{color:#16a34a}.cgv-price-lines .cgv-total-row{margin-top:5px;padding-top:11px;border-top:1px solid #dcfce7;color:#0f172a;font-size:14px;font-weight:900}.cgv-price-lines .cgv-total-row b{color:#16a34a;font-size:18px}@media(max-width:600px){.cgv-ticket-price-summary{margin:12px 14px 0;padding:15px}.cgv-promo-heading{align-items:flex-start;flex-direction:column;gap:8px}.cgv-promo-heading strong{font-size:13px}.cgv-price-lines>div{font-size:12px}.cgv-price-lines .cgv-total-row b{font-size:20px}}
.cgv-ticket-price-field .cgv-ticket-price-summary{width:100%;margin:0}.cgv-ticket-price-field{margin-top:2px}
.tix-manual-seat{max-width:680px;margin:24px auto;padding:28px;border:1px solid #e2e8f0;border-radius:22px;background:#fff;text-align:center;box-shadow:0 12px 35px rgba(15,23,42,.06)}.tix-manual-seat-label{font-size:10px;font-weight:900;letter-spacing:1.5px;color:#dc2626}.tix-manual-seat h3{margin:8px 0;font-size:21px;color:#0f172a}.tix-manual-seat p{max-width:540px;margin:0 auto 18px;color:#64748b;font-size:13px;line-height:1.6}.tix-manual-seat-actions{display:grid;grid-template-columns:auto 1fr auto;gap:8px}.tix-manual-seat-actions a,.tix-manual-seat-actions button{display:flex;align-items:center;justify-content:center;padding:0 16px;min-height:44px;border:0;border-radius:12px;background:#0f172a;color:#fff;font-weight:800;text-decoration:none;cursor:pointer}.tix-manual-seat-actions a{background:#fff;color:#0f172a;border:1px solid #cbd5e1}.tix-manual-seat-actions input{min-width:0;padding:0 14px;border:1px solid #cbd5e1;border-radius:12px;font:inherit}.tix-manual-seat>small{display:block;margin-top:12px;color:#64748b}@media(max-width:600px){.tix-manual-seat{margin:16px 0;padding:22px 16px}.tix-manual-seat-actions{grid-template-columns:1fr}.tix-manual-seat-actions a,.tix-manual-seat-actions button,.tix-manual-seat-actions input{min-height:46px}}
@media(max-width:700px){.tix-theater-card{grid-template-columns:1fr;gap:18px}.tix-time-button{min-width:70px;flex:1 0 70px}.tix-show-category-head{align-items:flex-start;flex-direction:column;gap:3px}}
.tix-clickable-card{cursor:pointer;transition:transform .18s ease,box-shadow .18s ease}
.tix-clickable-card:hover{transform:translateY(-3px);box-shadow:0 14px 34px rgba(16,24,40,.12)}
.tix-clickable-card:focus-visible{outline:3px solid rgba(227,34,43,.28);outline-offset:3px}
.tix-detail-header{position:relative;display:flex;justify-content:center;align-items:center;min-height:112px;margin-bottom:22px;padding:18px 130px;border:1px solid #e1e5ec;border-radius:18px;background:#fff;box-shadow:0 8px 25px rgba(16,24,40,.06)}
.tix-detail-header>button{position:absolute;left:18px;top:50%;transform:translateY(-50%);border:1px solid #d9dee7;border-radius:10px;background:#f8fafc;padding:10px 16px;font-weight:700;cursor:pointer}
.tix-detail-header>button:hover{border-color:#98a2b3;background:#f2f4f7}
.tix-detail-movie{display:flex;align-items:center;justify-content:center;gap:18px;min-width:0;text-align:left}
.tix-detail-movie>img{width:74px;height:100px;flex:0 0 74px;border-radius:10px;object-fit:cover}
.tix-detail-movie>div{min-width:0}
.tix-detail-header span{color:#e3222b;font-size:10px;font-weight:800;letter-spacing:.12em}
.tix-detail-header h2{margin:4px 0 5px;font-size:22px}
.tix-detail-header p{margin:0;color:#667085;font-size:13px}
.brand-cgv .tix-detail-header{display:grid;grid-template-columns:110px minmax(0,1fr) 110px;justify-content:stretch;padding:18px 20px}.brand-cgv .tix-detail-header>button{position:static;grid-column:1;grid-row:1;align-self:center;justify-self:start;min-width:86px;transform:none}.brand-cgv .tix-detail-header>button:hover{transform:translateY(-1px)}.brand-cgv .tix-detail-movie{grid-column:2;grid-row:1;justify-self:center;width:min(100%,560px)}.brand-cgv .tix-detail-header:after{content:"";grid-column:3;grid-row:1}
@media(max-width:600px){.tix-detail-header,.brand-cgv .tix-detail-header{min-height:0;padding:14px;display:grid;grid-template-columns:1fr;align-items:stretch;gap:14px}.tix-detail-header>button,.brand-cgv .tix-detail-header>button{position:static;grid-column:1;grid-row:1;transform:none;align-self:start;justify-self:start;padding:8px 14px}.tix-detail-movie,.brand-cgv .tix-detail-movie{grid-column:1;grid-row:2;justify-content:flex-start;justify-self:stretch;gap:13px;width:100%}.brand-cgv .tix-detail-header:after{display:none}.tix-detail-movie>img{width:62px;height:86px;flex-basis:62px}.tix-detail-header h2{font-size:17px;line-height:1.3;overflow-wrap:anywhere}.tix-detail-header p{font-size:12px;line-height:1.5}.tix-detail-controls{padding:13px}.tix-date-button{min-width:68px}.tix-detail-filters .movie-tab{flex:1 1 calc(50% - 8px)}}

.hidden { display: none !important; }
.admin-btn { text-decoration: none; }
.landing-view { max-width: 1120px; margin: 0 auto; padding: 20px 22px 50px; }
.landing-hero { position:relative; overflow:hidden; min-height:0; display:grid; grid-template-columns:minmax(0,1.35fr) minmax(270px,.65fr); align-items:center; gap:38px; padding:34px 40px; border-radius:22px; color:#fff; background:radial-gradient(circle at 92% 10%,rgba(251,191,36,.13),transparent 28%),linear-gradient(120deg,#101828,#172033); border:1px solid #263244; box-shadow:0 14px 38px rgba(16,24,40,.12); }
.landing-hero::after { content:""; position:absolute; width:190px; height:190px; right:-100px; top:-100px; border:1px solid rgba(255,255,255,.08); border-radius:50%; box-shadow:0 0 0 38px rgba(255,255,255,.018); pointer-events:none; }
.landing-hero-content,.landing-hero-meta{position:relative;z-index:1}.landing-kicker,.landing-heading span,.landing-contact span { color:#fbbf24; font-size:10px; letter-spacing:1.8px; font-weight:900; }.landing-kicker{display:flex;align-items:center;gap:7px}.landing-kicker i{width:7px;height:7px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 4px rgba(34,197,94,.12)}
.landing-hero h1 { max-width:650px; margin:10px 0 8px; font-family:'Space Grotesk',sans-serif; font-size:clamp(28px,4vw,42px); line-height:1.08; letter-spacing:-1.5px; }
.landing-hero-content>p { max-width:570px; margin:0; color:#b9c0cc; line-height:1.65; font-size:12px; }
.landing-actions { display:flex; gap:9px; margin-top:19px; }
.landing-btn { display:inline-flex; align-items:center; justify-content:center; padding:13px 19px; border-radius:12px; font-weight:800; font-size:13px; text-decoration:none; border:1px solid transparent; }
.landing-btn.primary { background:#fbbf24; color:#101828; box-shadow:0 8px 25px rgba(251,191,36,.2); }.landing-btn.secondary { color:#fff; border-color:#475467; background:#1d2939; }
.landing-btn.primary { background: var(--tenant-accent, #fbbf24); }
.landing-hero-meta{padding-left:28px;border-left:1px solid #344054}.hero-status{display:flex;align-items:center;gap:10px;padding-bottom:15px;margin-bottom:15px;border-bottom:1px solid #344054}.hero-status>span{width:9px;height:9px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 5px rgba(34,197,94,.11)}.hero-status strong,.hero-status small{display:block}.hero-status strong{font-size:11px}.hero-status small{margin-top:3px;color:#98a2b3;font-size:8px}.landing-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:0; position:relative; z-index:1; }.landing-stats div{display:flex;flex-direction:column;gap:3px}.landing-stats strong{font-size:11px}.landing-stats span{font-size:8px;color:#98a2b3}
.landing-section { padding:42px 4px 10px; }.landing-heading{display:flex;justify-content:space-between;align-items:end;gap:20px;margin-bottom:20px}.landing-heading h2{font:800 27px 'Space Grotesk',sans-serif;margin:7px 0 0}.landing-heading p{font-size:12px;color:#667085}
.landing-services{padding-top:18px}.landing-intro{display:flex;align-items:end;justify-content:space-between;gap:24px;padding:25px 4px 22px;border-bottom:1px solid #e4e7ec;margin-bottom:20px}.landing-online{display:flex;align-items:center;gap:7px;color:#15803d;font-size:9px;font-weight:900;letter-spacing:1.4px}.landing-online i{width:7px;height:7px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 4px rgba(34,197,94,.12)}.landing-intro h1{font:800 clamp(28px,4vw,38px) 'Space Grotesk',sans-serif;letter-spacing:-1px;margin:8px 0 5px;color:#101828}.landing-intro p{margin:0;color:#667085;font-size:12px}.intro-help{color:#475467;text-decoration:none;font-size:10px;font-weight:800;white-space:nowrap}.intro-help:hover{color:#101828}
.service-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }.service-card{border:1px solid #e4e7ec;background:#fff;border-radius:20px;padding:22px;text-align:left;display:flex;align-items:center;gap:18px;cursor:pointer;font:inherit;transition:.22s ease;box-shadow:0 7px 26px rgba(16,24,40,.05)}.service-card:hover{transform:translateY(-4px);border-color:#fbbf24;box-shadow:0 18px 38px rgba(16,24,40,.1)}.service-card img,.service-letter{width:70px;height:70px;object-fit:contain;border-radius:16px;background:#f9fafb;padding:8px;flex:0 0 70px}.service-letter{display:grid;place-items:center;font-weight:900;font-size:20px;background:#101828;color:#fff}.service-card h3{margin:0 0 5px;font-size:16px}.service-card p{margin:0 0 10px;color:#667085;font-size:12px}.service-card span{font-size:11px;font-weight:800;color:#b45309}.service-card.coming{opacity:.7}.service-card.coming span{color:#667085}
.how-section{padding-bottom:60px}.how-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.how-grid article{background:#fff;border:1px solid #e4e7ec;border-radius:18px;padding:24px}.how-grid b{color:#f59e0b;font-size:12px}.how-grid h3{font-size:16px;margin:17px 0 7px}.how-grid p{font-size:12px;color:#667085;line-height:1.6;margin:0}
.landing-contact{display:flex;justify-content:space-between;align-items:center;gap:25px;padding:34px;border-radius:22px;background:#101828;color:#fff}.landing-contact h2{margin:8px 0;font:800 25px 'Space Grotesk',sans-serif}.landing-contact p{margin:0;color:#98a2b3;font-size:12px}.landing-footer{display:flex;align-items:center;gap:20px;padding:32px 4px 0;font-size:12px;color:#667085}.landing-footer strong{color:#101828}.landing-footer a{margin-left:auto;color:#344054;font-weight:800}
.catalog-brand-switcher{display:none!important}.catalog-header{display:flex!important;align-items:center;text-align:left!important;gap:13px;padding:17px 20px!important}.catalog-back{width:36px;height:36px;flex:0 0 36px;border:1px solid #e4e7ec;border-radius:10px;background:#f9fafb;color:#344054;font-size:17px;cursor:pointer;transition:.18s ease}.catalog-back:hover{background:#101828;color:#fff;border-color:#101828}.catalog-brand-icon{width:42px;height:42px;flex:0 0 42px;display:grid;place-items:center;border-radius:12px;background:#101828;color:#fbbf24;font-size:16px;font-weight:900}.catalog-heading span{display:block;color:#b45309;font-size:8px;font-weight:900;letter-spacing:1.2px;margin-bottom:3px}.catalog-heading h1{font-size:17px!important;margin:0 0 3px!important}.catalog-heading p{font-size:10px!important;margin:0!important;color:#667085!important}
.brand-kopken .controls-section,.brand-tomoro .controls-section,.brand-fore .controls-section{margin-top:10px}
@media(max-width:640px){.landing-view{padding:12px 12px 35px}.landing-hero{grid-template-columns:1fr;gap:22px;padding:26px 22px;border-radius:18px}.landing-hero h1{font-size:31px;letter-spacing:-1px}.landing-hero-meta{padding:18px 0 0;border-left:0;border-top:1px solid #344054}.hero-status{display:none}.landing-stats{gap:14px}.landing-intro{align-items:flex-start;flex-direction:column;gap:12px;padding-top:16px}.landing-heading{align-items:start;flex-direction:column}.service-grid,.how-grid{grid-template-columns:1fr}.landing-section{padding-top:42px}.landing-services{padding-top:0}.landing-contact{align-items:flex-start;flex-direction:column}.landing-footer{flex-wrap:wrap}.landing-footer a{margin-left:0;width:100%}.catalog-header{padding:14px!important}.catalog-heading h1{font-size:15px!important}}

.wifi-toggle-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2px;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.85) 48%, transparent 76%);
  transform: translateX(-110%);
  animation: wifiShimmer 4s ease-in-out infinite;
}

.wifi-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.22), 0 0 0 3px rgba(251, 191, 36, 0.12);
}

@keyframes wifiShimmer {
  0%, 55% { transform: translateX(-110%); }
  85%, 100% { transform: translateX(110%); }
}

.wifi-card {
  position: relative;
  display: none;
  overflow: hidden;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(135deg, #f59e0b, #fcd34d, #fb7185) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  padding: 18px;
  margin-top: 8px;
  box-shadow: 0 12px 32px rgba(146, 64, 14, 0.12);
}

.wifi-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  top: -65px;
  right: -45px;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.16);
  pointer-events: none;
}

.wifi-card.active { display: block; animation: wifiReveal 0.25s ease both; }

@keyframes wifiReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.wifi-header { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 8px; color: #6b7280; }
.wifi-user { font-size: 13px; margin-bottom: 8px; color: #111827; }

.wifi-password-box {
  background: #fffbeb;
  padding: 12px;
  border-radius: var(--r-sm);
  border: 1px solid #fde68a;
}

.wifi-password-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.wifi-password-row h2 {
  font-size: 17px;
  color: #111827;
  font-family: monospace;
}

.wifi-password-row button {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  background: #111827;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.wifi-password-row button:hover {
  background: #374151;
  transform: scale(1.06);
}

.menu-search-input {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  color: #111827;
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  outline: none;
  box-shadow: var(--shadow-sm);
}

.menu-search-input:focus { border-color: #111827; }

/* CATEGORY TABS BAR (SCROLLABLE NO SCROLLBAR) */
.categories {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 6px 0 12px 0;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  max-width: 100%;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scroll-snap-type: x proximity;
  cursor: grab;
}

.categories::-webkit-scrollbar { display: none; }
.categories.is-dragging{cursor:grabbing;scroll-behavior:auto;scroll-snap-type:none}

.cat-pill {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #374151;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  user-select: none;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

.cat-pill.active, .cat-pill:hover {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
  transform: translateY(-1px);
}

/* SECTION TITLE (COFFEE, FRAPPE, ETC) MATCHING SCREENSHOT #1 */
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #111827;
  margin-top: 10px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* CARDS GRID & PRODUCT CARDS MATCHING SCREENSHOT #1 EXACTLY */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
  }
}

.card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #e5e7eb;
}

.card:active {
  transform: scale(0.97);
}

.card--soldout {
  opacity: 0.5;
  filter: grayscale(0.8);
  cursor: not-allowed !important;
}

.card--soldout:hover,
.card--soldout:active {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: #f3f4f6;
}

.card--soldout:hover .card-img-wrap img {
  transform: none;
}

.card-img-wrap {
  position: relative;
  width: 100%;
  height: 150px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

@media (min-width: 640px) {
  .card-img-wrap { height: 180px; }
}

.card-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-badge-so {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  z-index: 2;
  white-space: nowrap;
  pointer-events: none;
}

.card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 6px;
}

.card-desc {
  font-size: 11.5px;
  color: #6b7280;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}

.price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.add-btn {
  background: #111827;
  color: #ffffff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.add-btn:hover {
  transform: scale(1.1);
  background: #374151;
}

.soldout-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--danger);
  background: #fee2e2;
  padding: 4px 8px;
  border-radius: 6px;
}

/* FLOATING CART BUTTON */
.floating-cart {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 440px;
  background: #111827;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 14.5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* MODALS */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal.active { display: flex; }

.modal-content {
  background: #ffffff;
  border-radius: var(--r-lg);
  max-width: 480px;
  width: 100%;
  padding: 20px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.option-group { margin-top: 14px; }
.option-group label { display: block; font-size: 12px; font-weight: 700; color: #4b5563; margin-bottom: 8px; }
.option-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.opt-btn { background: #f3f4f6; border: 1px solid #e5e7eb; color: #111827; padding: 8px 14px; border-radius: var(--r-md); font-size: 12px; font-weight: 600; cursor: pointer; }
.opt-btn.active { border-color: #111827; background: #111827; color: #ffffff; }
.modal-input { width: 100%; background: #f9fafb; border: 1px solid #d1d5db; color: #111827; padding: 10px 14px; border-radius: var(--r-md); font-size: 13px; outline: none; }
.modal-footer-row { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; gap: 14px; }
.qty-control { display: flex; align-items: center; gap: 12px; background: #f3f4f6; padding: 6px 14px; border-radius: var(--r-md); border: 1px solid #e5e7eb; }
.qty-control button { background: none; border: none; color: #111827; font-size: 18px; font-weight: 800; cursor: pointer; }
.add-to-cart-btn { flex: 1; background: #111827; color: #ffffff; border: none; padding: 12px; border-radius: var(--r-md); font-weight: 800; font-size: 13.5px; cursor: pointer; }

/* CART MODAL SHEET */
.cart-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px); z-index: 1000; display: none; justify-content: flex-end; }
.cart-modal.active { display: flex; }
.cart-sheet { background: #ffffff; width: 100%; max-width: 440px; height: 100%; padding: 20px; display: flex; flex-direction: column; gap: 16px; overflow-y: auto; }
.cart-header { display: flex; align-items: center; justify-content: space-between; }
.close-cart { background: none; border: none; color: #6b7280; font-size: 22px; cursor: pointer; }
.cart-item-card { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: var(--r-md); padding: 12px; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.cart-item-title { font-weight: 700; font-size: 13.5px; color: #111827; }
.cart-item-opts { font-size: 11px; color: #6b7280; margin-top: 2px; }
.cart-item-price { font-family: 'Space Grotesk', sans-serif; font-size: 13.5px; font-weight: 700; color: #111827; margin-top: 4px; }
.cart-summary { background: #f9fafb; border: 1px solid #e5e7eb; padding: 14px; border-radius: var(--r-md); display: flex; flex-direction: column; gap: 8px; }
.cart-summary div { display: flex; justify-content: space-between; font-size: 13px; color: #4b5563; }
.total-row { font-size: 16px !important; font-weight: 800; color: #111827 !important; border-top: 1px solid #e5e7eb; padding-top: 8px; }
.checkout-btn { background: #22c55e; color: #ffffff; border: none; padding: 14px; border-radius: var(--r-md); font-size: 14.5px; font-weight: 800; cursor: pointer; width: 100%; }

/* ADMIN PANEL TABLE */
.admin-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.admin-table th, .admin-table td { padding: 12px; border-bottom: 1px solid #e5e7eb; text-align: left; font-size: 13px; }
.admin-table input, .admin-table select { background: #f9fafb; color: #111827; border: 1px solid #d1d5db; padding: 6px 10px; border-radius: 6px; }

/* POLISHED PRODUCT VISUAL */
.modal-product-visual{position:relative;height:210px;overflow:hidden;display:flex;align-items:center;justify-content:center;margin:0 -4px 14px;border-radius:16px;background:radial-gradient(circle at 50% 55%,#fff 0 24%,transparent 56%),linear-gradient(145deg,#f8fafc,#f1f5f9);border:1px solid #e9edf2}.modal-product-visual::before{content:"";position:absolute;width:150px;height:150px;border-radius:50%;background:var(--tenant-accent,#fbbf24);opacity:.09;filter:blur(2px)}.modal-product-visual::after{content:"";position:absolute;width:115px;height:14px;bottom:22px;border-radius:50%;background:rgba(15,23,42,.12);filter:blur(9px)}.modal-product-visual .visual-glow{position:absolute;inset:0;background:linear-gradient(115deg,transparent 25%,rgba(255,255,255,.75) 48%,transparent 68%);transform:translateX(-100%);animation:productShine 5s ease-in-out infinite}.modal-product-visual img{position:relative;z-index:2;width:88%;height:92%;object-fit:contain;filter:drop-shadow(0 13px 11px rgba(15,23,42,.14));transition:transform .3s ease}.modal-product-visual:hover img{transform:scale(1.04) translateY(-2px)}.visual-badge{position:absolute;z-index:3;left:12px;top:12px;padding:5px 8px;border-radius:99px;background:rgba(255,255,255,.9);border:1px solid #e5e7eb;color:#475569;font-size:8px;font-weight:900;letter-spacing:.7px;backdrop-filter:blur(6px)}@keyframes productShine{0%,62%{transform:translateX(-100%)}88%,100%{transform:translateX(100%)}}

/* POLISHED CART SHEET */
.cart-modal{inset:0;background:rgba(15,23,42,.62);padding:12px}.cart-sheet{max-width:470px;height:100%;padding:0;gap:0;overflow:hidden;border-radius:22px;box-shadow:-18px 0 60px rgba(15,23,42,.22);animation:cartSlideIn .28s ease both}.cart-header{padding:22px 22px 18px;border-bottom:1px solid #eef0f3}.cart-header h2{font:800 20px 'Space Grotesk',sans-serif;margin:3px 0}.cart-header small{color:#94a3b8;font-size:9px}.cart-eyebrow{display:block;color:#b45309;font-size:8px;font-weight:900;letter-spacing:1.2px}.close-cart{display:grid;place-items:center;width:34px;height:34px;background:#f1f5f9;border:0;border-radius:10px;color:#475569;font-size:20px;transition:.18s}.close-cart:hover{background:#101828;color:#fff}#cartItems{padding:18px 20px 6px;overflow-y:auto;max-height:38vh}.cart-item-card{background:#fff;border:1px solid #e5e7eb;border-radius:15px;padding:11px;margin-bottom:10px;display:grid;grid-template-columns:58px minmax(0,1fr) auto;align-items:center;gap:11px;box-shadow:0 4px 14px rgba(15,23,42,.035)}.cart-item-image{width:58px;height:58px;border-radius:12px;background:linear-gradient(145deg,#f8fafc,#f1f5f9);display:grid;place-items:center;overflow:hidden}.cart-item-image img{width:92%;height:92%;object-fit:contain;filter:drop-shadow(0 5px 5px rgba(15,23,42,.11))}.cart-item-info{min-width:0}.cart-item-title{font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.cart-item-opts{font-size:8px;margin-top:3px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.cart-item-note{font-size:8px;color:#92400e;margin-top:3px}.cart-item-price{font-size:12px;margin-top:5px}.cart-item-actions{display:grid;grid-template-columns:27px 22px 27px;align-items:center;text-align:center;gap:1px}.qty-btn{width:27px;height:27px;border:1px solid #e2e8f0;background:#f8fafc;color:#0f172a;border-radius:8px;font-size:14px;font-weight:800;cursor:pointer}.cart-item-actions>span{font-size:10px;font-weight:800}.remove-btn{grid-column:1/-1;justify-self:end;display:grid;place-items:center;width:25px;height:25px;margin-top:5px;border:0;border-radius:7px;background:#fff1f2;color:#e11d48;cursor:pointer}.cart-customer-form{display:flex;flex-direction:column;gap:11px;padding:13px 20px 16px;border-top:1px solid #f1f5f9}.cart-field label{display:block;margin-bottom:5px;color:#475569;font-size:9px;font-weight:800}.cart-field .modal-input{padding:10px 12px;border-radius:10px;background:#f8fafc;font-size:11px}.cart-summary{margin:0 20px 14px;background:#f8fafc;padding:13px 14px;border-radius:13px;gap:7px}.cart-summary div{font-size:10px}.total-row{font-size:14px!important;font-weight:900;border-top:1px dashed #cbd5e1;padding-top:9px;margin-top:2px}.checkout-btn{margin:0 20px 20px;width:auto;background:linear-gradient(135deg,#22c55e,#16a34a);padding:14px;border-radius:12px;font-size:12px;font-weight:900;box-shadow:0 9px 20px rgba(34,197,94,.2);transition:.18s}.checkout-btn:hover{transform:translateY(-1px);box-shadow:0 12px 24px rgba(34,197,94,.28)}@keyframes cartSlideIn{from{opacity:0;transform:translateX(24px)}to{opacity:1;transform:none}}@media(max-width:560px){.cart-modal{align-items:flex-end;padding:0}.cart-sheet{height:min(92vh,760px);max-width:none;border-radius:22px 22px 0 0}.cart-header{padding:18px 17px 14px}#cartItems{padding:14px 14px 4px}.cart-customer-form{padding:11px 14px 14px}.cart-summary{margin:0 14px 12px}.checkout-btn{margin:0 14px 14px}.cart-item-card{grid-template-columns:52px minmax(0,1fr) auto}.cart-item-image{width:52px;height:52px}.modal-product-visual{height:190px}}

/* CUSTOMER-ONLY LAYOUT */
textarea{resize:vertical;max-width:100%}.cart-modal{align-items:center;justify-content:center}.cart-sheet{height:auto;max-height:calc(100vh - 32px);box-shadow:0 24px 80px rgba(15,23,42,.28);animation:cartCenterIn .24s ease both}@keyframes cartCenterIn{from{opacity:0;transform:translateY(16px) scale(.98)}to{opacity:1;transform:none}}.customer-support{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.8fr);align-items:center;gap:28px;margin-top:58px;padding:28px;border:1px solid #e4e7ec;border-radius:20px;background:#fff;box-shadow:0 8px 28px rgba(15,23,42,.05)}.support-heading>span{color:#b45309;font-size:8px;font-weight:900;letter-spacing:1.4px}.support-heading h2{font:800 22px 'Space Grotesk',sans-serif;margin:7px 0 5px}.support-heading p{max-width:480px;color:#64748b;font-size:10px;line-height:1.6}.support-actions{display:grid;grid-template-columns:1fr 1fr;gap:9px}.support-card{display:grid;grid-template-columns:32px 1fr auto;align-items:center;gap:9px;padding:12px;border:1px solid #e4e7ec;border-radius:12px;color:#101828;text-decoration:none;background:#f8fafc;transition:.18s}.support-card:hover{transform:translateY(-2px);border-color:#f59e0b;background:#fff}.support-card>i{width:32px;height:32px;display:grid;place-items:center;border-radius:9px;background:#dcfce7;color:#15803d;font-style:normal}.support-card small,.support-card strong{display:block}.support-card small{color:#94a3b8;font-size:7px;font-weight:900;letter-spacing:.7px}.support-card strong{font-size:9px;margin-top:2px}.support-card>span{font-size:12px}.support-card.disabled{opacity:.45;pointer-events:none}.public-footer{padding-top:20px!important}.public-footer span{margin-left:auto}
@media(max-width:640px){.cart-modal{align-items:center;padding:12px}.cart-sheet{height:auto;max-height:calc(100vh - 24px);border-radius:20px}.service-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.service-card{min-width:0;align-items:flex-start;flex-direction:column;padding:13px;gap:9px;border-radius:15px}.service-card img,.service-letter{width:45px;height:45px;flex-basis:45px;border-radius:11px}.service-card h3{font-size:11px;line-height:1.3}.service-card p{font-size:8px;line-height:1.4;margin-bottom:6px}.service-card span{font-size:8px}.customer-support{grid-template-columns:1fr;gap:18px;margin-top:42px;padding:20px}.support-actions{grid-template-columns:1fr 1fr}.public-footer{align-items:flex-start;flex-direction:column;gap:5px}.public-footer span{margin-left:0}.catalog-heading p{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:62vw}}

/* TOAST */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #111827;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all 0.3s;
  z-index: 10000;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}


#outletWarningBanner.active {
  display: block !important;
  animation: slideDownFade 0.3s ease;
}

@keyframes slideDownFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}



/* AESTHETIC OUTLET SUGGESTION ITEMS IN SEARCH DROPDOWN */
.outlet-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid #111827;
  border-radius: var(--r-lg);
  max-height: 320px;
  overflow-y: auto;
  z-index: 90;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  display: none;
}

.outlet-suggestion-item {
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background 0.2s ease;
}

.outlet-suggestion-item:last-child {
  border-bottom: none;
}

.outlet-suggestion-item:hover {
  background: #f8fafc;
}

.osi-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.osi-pin-wrap {
  width: 36px;
  height: 36px;
  background: #fef3c7;
  border: 1px solid #fde047;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.osi-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.osi-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.osi-address {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.outlet-status-badge-cool {
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.outlet-status-badge-cool .badge-dot {
  font-size: 9px;
}

.outlet-status-badge-cool.status-open {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
}

.outlet-status-badge-cool.status-close {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

.outlet-status-badge-cool.status-pesan-tempat {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde047;
}



/* SELECTED OUTLET CARD (MATCHING LIGHT THEME DESIGN) */
.selected-outlet-card-ref {
  background: #ffffff;
  border: 1.5px solid #111827;
  border-radius: var(--r-lg);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.soc-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.soc-left-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.soc-icon-pin {
  width: 42px;
  height: 42px;
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b45309;
  font-size: 20px;
  flex-shrink: 0;
}

.soc-title-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.soc-name {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
}

.soc-address {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.35;
}

.soc-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.status-open { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.status-close { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }
.status-pesan-tempat { background: #fef3c7; color: #b45309; border: 1px solid #fde047; }

.soc-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f3f4f6;
  padding-top: 10px;
}

.soc-hours {
  font-size: 12px;
  color: #4b5563;
  font-weight: 600;
}

.soc-ubah-btn {
  background: #111827;
  border: none;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.soc-ubah-btn:hover {
  background: #374151;
}



/* COOL OUTLET LOADING OVERLAY ANIMATION */
.outlet-loading-overlay {
  background: #ffffff;
  border: 1.5px solid #f59e0b;
  border-radius: var(--r-lg);
  padding: 18px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
  animation: slideDownFade 0.3s ease;
}

.spinner-ring {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(245, 158, 11, 0.2);
  border-top-color: #f59e0b;
  border-radius: 50%;
  animation: spinRing 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.olo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.olo-text strong {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}

.olo-text span {
  font-size: 12.5px;
  color: #4b5563;
}



/* CENTERED 'MEMUAT...' LOADING OVERLAY */
.outlet-loading-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 20px;
  margin: 20px auto;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--r-lg);
  max-width: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.outlet-loading-center .spinner-ring {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(245, 158, 11, 0.2);
  border-top-color: #f59e0b;
  border-radius: 50%;
  animation: spinRing 0.8s linear infinite;
}

.outlet-loading-center span {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}


/* FULLSCREEN LOADING OVERLAY (outlet sync) */
.outlet-fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outlet-fullscreen-overlay-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.outlet-fullscreen-overlay-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 36px 40px;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  text-align: center;
  animation: overlayPopIn 0.3s ease;
}

@keyframes overlayPopIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.spinner-ring-lg {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(245, 158, 11, 0.2);
  border-top-color: #f59e0b;
  border-radius: 50%;
  animation: spinRing 0.8s linear infinite;
}

.ofl-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #111827;
}

.ofl-subtext {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  max-width: 240px;
  line-height: 1.4;
}

/* TENANT LOGO & COMPACT PUBLIC DETAILS */
.topnav-brand-icon img{width:100%;height:100%;object-fit:contain;border-radius:10px;background:#fff;padding:3px}.public-footer{justify-content:center!important;text-align:center;padding-top:20px!important}.public-footer strong{font-size:11px;letter-spacing:.5px}.catalog-heading{min-width:0}.catalog-heading p{max-width:520px}.loading-logo-wrap{width:64px;height:64px;display:grid;place-items:center;border-radius:18px;border:1px solid #e5e7eb;background:#f8fafc;overflow:hidden;box-shadow:0 7px 18px rgba(15,23,42,.07)}.loading-logo-wrap img{width:100%;height:100%;object-fit:contain;padding:6px}.loading-logo-wrap.no-logo{display:none}.outlet-fullscreen-overlay-content{gap:10px;padding:28px 34px}.spinner-ring-lg{width:30px;height:30px;border-width:3px}.ofl-text{font-size:14px}.ofl-subtext{font-size:10px}

/* CGV MOVIES */
.cgv-movies-section{padding:2px 0 10px}.movies-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:18px}.movies-heading>div>span{color:#dc2626;font-size:10px;font-weight:900;letter-spacing:1.3px}.movies-heading h2{font:800 21px 'Space Grotesk',sans-serif;margin:4px 0 2px}.movies-heading p,.movies-heading>small{color:#94a3b8;font-size:11px}.movie-tabs{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:18px}.movie-tab{padding:10px 15px;border:1px solid #e2e8f0;border-radius:12px;background:#fff;color:#475569;font-size:11px;font-weight:900;cursor:pointer}.movie-tab.active{background:#dc2626;border-color:#dc2626;color:#fff;box-shadow:0 6px 14px rgba(220,38,38,.16)}.movie-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:20px}.movie-card{min-width:0;overflow:hidden;border:1px solid #f3f4f6;border-radius:var(--r-lg);background:#fff;box-shadow:var(--shadow-sm);transition:.25s}.movie-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}.movie-poster{position:relative;aspect-ratio:2/3;overflow:hidden;background:#f1f5f9}.movie-poster img{width:100%;height:100%;object-fit:cover;transition:.3s}.movie-card:hover .movie-poster img{transform:scale(1.035)}.movie-poster>span{position:absolute;right:10px;top:10px;padding:5px 8px;border-radius:8px;background:rgba(15,23,42,.84);color:#fff;font-size:9px;font-weight:900;backdrop-filter:blur(4px)}.movie-info{padding:16px}.movie-info h3{min-height:42px;margin:0 0 7px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;color:#101828;font-size:14px;line-height:1.45}.movie-info p{margin:0 0 10px;color:#dc2626;font-size:10px;font-weight:900;letter-spacing:.4px}.movie-info>div{color:#64748b;font-size:10px}.movie-loading,.movie-error{grid-column:1/-1;padding:35px;text-align:center;border:1px dashed #cbd5e1;border-radius:14px;color:#64748b;font-size:11px}.movie-loading span{display:inline-block;width:13px;height:13px;margin-right:7px;vertical-align:middle;border:2px solid #fecaca;border-top-color:#dc2626;border-radius:50%;animation:spinRing .8s linear infinite}@media(max-width:639px){.movie-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.movie-info{padding:12px}.movie-info h3{font-size:12px;min-height:35px}.movie-tab{padding:9px 11px;font-size:9px}}

/* CGV memakai katalog tab sendiri, sehingga filter kategori umum tidak ditampilkan. */
.brand-cgv .controls-section,.brand-cgv #categoryContainer,.brand-cgv #menuContainer{display:none!important}

/* CGV CINEMA PICKER */
.cgv-cinema-picker{display:grid;grid-template-columns:1fr;gap:14px;padding:20px;margin-bottom:22px;border:1px solid #e2e8f0;border-radius:var(--r-lg);background:#fff;box-shadow:var(--shadow-sm)}.cgv-cinema-picker>div:first-child{display:flex;flex-direction:column;gap:4px}.cgv-cinema-picker>div:first-child span{color:#dc2626;font-size:9px;font-weight:900;letter-spacing:1px}.cgv-cinema-picker>div:first-child strong{font-size:16px}.cgv-picker-fields{display:grid;grid-template-columns:1fr 1fr;gap:14px}.cgv-picker-fields label{display:flex;flex-direction:column;gap:7px;color:#475569;font-size:10px;font-weight:800}.cgv-picker-fields select{width:100%;padding:12px 13px;border:1px solid #d0d5dd;border-radius:10px;background:#f8fafc;color:#101828;font-size:11px;outline:none}.cgv-picker-fields select:focus{border-color:#dc2626;box-shadow:0 0 0 3px rgba(220,38,38,.08)}.cgv-cinema-picker>small{padding-top:11px;border-top:1px solid #eef2f6;color:#64748b;font-size:9px}@media(max-width:640px){.cgv-cinema-picker{padding:15px}.cgv-picker-fields{grid-template-columns:1fr}}

.tix-location-step{grid-template-columns:1fr;align-items:stretch;gap:20px;padding:24px 26px;border-color:#e4e7ec;border-radius:20px;box-shadow:0 8px 24px rgba(15,23,42,.05)}
.tix-location-step>div:first-child{gap:5px}.tix-location-step>div:first-child span{font-size:10px;letter-spacing:1.25px}.tix-location-step>div:first-child strong{font-size:19px;letter-spacing:-.3px;color:#101828}.tix-location-step>div:first-child small{font-size:12px;line-height:1.55;color:#667085}
.tix-location-step>label{position:relative;display:flex;flex-direction:column;gap:8px;color:#344054;font-size:11px;font-weight:800}.tix-location-step>label:after{content:"";position:absolute;right:16px;bottom:18px;width:7px;height:7px;border-right:2px solid #667085;border-bottom:2px solid #667085;transform:rotate(45deg);pointer-events:none}
.tix-location-step select{width:100%;height:50px;padding:0 44px 0 16px;appearance:none;-webkit-appearance:none;border:1px solid #d0d5dd;border-radius:12px;background:#f8fafc;color:#101828;font:600 13px/1 "Plus Jakarta Sans",sans-serif;outline:none;cursor:pointer;transition:border-color .2s,box-shadow .2s,background .2s}
.tix-location-step select:hover{background:#fff;border-color:#98a2b3}.tix-location-step select:focus{background:#fff;border-color:#dc2626;box-shadow:0 0 0 4px rgba(220,38,38,.09)}
.tix-location-step>label.tix-city-search:after{display:none}
.tix-city-search{width:100%;max-width:none}
.tix-city-search>div{position:relative;display:flex;align-items:center}
.tix-city-search b{position:absolute;left:16px;color:#667085;font-size:22px;font-weight:500;transform:rotate(-18deg);pointer-events:none}
.tix-city-search input{width:100%;height:52px;padding:0 18px 0 48px;border:1px solid #d0d5dd;border-radius:13px;background:#f8fafc;color:#101828;font:600 14px/1 "Plus Jakarta Sans",sans-serif;outline:none;transition:.2s}
.tix-city-search input:hover{background:#fff;border-color:#98a2b3}.tix-city-search input:focus{background:#fff;border-color:#dc2626;box-shadow:0 0 0 4px rgba(220,38,38,.09)}
.tix-city-results{position:absolute;z-index:30;left:0;right:0;top:calc(100% + 8px);max-height:290px;overflow-y:auto;padding:7px;border:1px solid #e1e5ec;border-radius:14px;background:#fff;box-shadow:0 16px 38px rgba(15,23,42,.16)}
.tix-city-results button{width:100%;padding:11px 12px;border:0;border-radius:9px;background:transparent;color:#101828;display:flex;align-items:center;justify-content:space-between;gap:12px;text-align:left;cursor:pointer;font:600 13px/1.3 "Plus Jakarta Sans",sans-serif}
.tix-city-results button:hover,.tix-city-results button:focus{background:#f2f4f7;outline:0}
.tix-city-results button small{color:#98a2b3;font-size:10px;font-weight:600}
.tix-city-results p{margin:0;padding:14px;text-align:center;color:#667085;font-size:12px}
@media(max-width:600px){.tix-city-results{max-height:230px}.tix-city-results button{padding:12px 10px}}
@media(max-width:700px){.tix-location-step{grid-template-columns:1fr;gap:20px;padding:20px}.tix-location-step>div:first-child strong{font-size:18px}.tix-location-step select{height:48px}}
.tix-network-badges{display:flex;flex-wrap:wrap;gap:6px;margin:10px 0 14px}.tix-network-badges span{padding:5px 9px;border:1px solid #a7e2d2;border-radius:7px;background:#ecfdf8;color:#067a5b;font-size:9px;font-weight:900;letter-spacing:.35px}.tix-movie-card .movie-info{display:flex;flex-direction:column}.tix-movie-card .movie-meta-row{margin-top:auto}

.movie-card-price{margin:-2px 0 11px!important;color:#111827!important;font-size:12px!important;font-weight:900}.movie-card-price+ .movie-meta-row{padding-top:10px;border-top:1px solid #eef2f6}

/* CGV F&B SUBCATEGORIES */
.cgv-food-categories{display:flex;gap:8px;overflow-x:auto;padding:1px 1px 15px;margin-top:-4px;scrollbar-width:none}.cgv-food-categories::-webkit-scrollbar{display:none}.cgv-food-categories button{flex:0 0 auto;padding:9px 14px;border:1px solid #e2e8f0;border-radius:11px;background:#fff;color:#475569;font-size:10px;font-weight:900;cursor:pointer}.cgv-food-categories button:hover{border-color:#fca5a5;color:#dc2626}.cgv-food-categories button.active{border-color:#111827;background:#111827;color:#fff;box-shadow:0 6px 14px rgba(15,23,42,.14)}

/* CGV LOCAL BRAND ASSET */
.service-card .cgv-brand-image{object-fit:contain;padding:12px;background:#e83d55}.brand-card-icon-wrap.cgv-logo-wrap{background:#e83d55;border-radius:12px;padding:6px}.brand-card-icon-wrap .cgv-brand-image{width:100%;height:100%;object-fit:contain;border-radius:0}
.service-card .cgv-modern-logo{padding:8px;background:#fff;object-fit:contain}.brand-card-icon-wrap.cgv-modern-logo-wrap{padding:7px;overflow:hidden;background:#fff}.brand-card-icon-wrap .cgv-modern-logo{width:100%;height:100%;padding:0;border-radius:0;object-fit:contain}

/* MANUAL CGV TICKET REQUEST */
.movie-meta-row{display:flex;align-items:center;justify-content:space-between;gap:5px}.movie-meta-row button{border:0;border-radius:7px;background:#101828;color:#fff;padding:6px 7px;font-size:7px;font-weight:900;cursor:pointer;white-space:nowrap}.movie-meta-row button:hover{background:#dc2626}.ticket-request-modal{max-width:570px;border-radius:20px;padding:0;overflow:auto}.ticket-modal-header{display:flex;align-items:flex-start;justify-content:space-between;gap:15px;padding:20px 22px 16px;border-bottom:1px solid #eef0f3}.ticket-modal-header span{color:#dc2626;font-size:8px;font-weight:900;letter-spacing:1.2px}.ticket-modal-header h2{font:800 19px 'Space Grotesk',sans-serif;margin:5px 0 0}.ticket-modal-header button{width:32px;height:32px;border:0;border-radius:9px;background:#f1f5f9;color:#475569;font-size:20px;cursor:pointer}.seat-warning{margin:16px 20px 0;padding:12px 13px;border:1px solid #fde68a;border-radius:11px;background:#fffbeb}.seat-warning strong{color:#92400e;font-size:10px}.seat-warning p{color:#a16207;font-size:8px;line-height:1.55;margin:4px 0 0}.ticket-request-modal form{padding:17px 20px 20px}.ticket-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.ticket-form-grid .field{display:flex;flex-direction:column;gap:5px}.ticket-form-grid .field.full{grid-column:1/-1}.ticket-form-grid label{color:#475569;font-size:9px;font-weight:800}.ticket-form-grid input,.ticket-form-grid select,.ticket-form-grid textarea{width:100%;border:1px solid #d0d5dd;border-radius:9px;background:#f8fafc;color:#101828;padding:10px 11px;font:inherit;font-size:10px;outline:none}.ticket-form-grid input:focus,.ticket-form-grid select:focus,.ticket-form-grid textarea:focus{border-color:#dc2626;box-shadow:0 0 0 3px rgba(220,38,38,.08)}.ticket-form-grid small{color:#94a3b8;font-size:8px}.ticket-submit-btn{width:100%;margin-top:16px;padding:13px;border:0;border-radius:11px;background:linear-gradient(135deg,#22c55e,#16a34a);color:#fff;font-size:11px;font-weight:900;cursor:pointer;box-shadow:0 8px 18px rgba(34,197,94,.18)}@media(max-width:520px){.ticket-form-grid{grid-template-columns:1fr}.ticket-form-grid .field.full{grid-column:auto}.ticket-modal-header{padding:17px}.seat-warning{margin:13px 14px 0}.ticket-request-modal form{padding:14px}.movie-meta-row{align-items:flex-start;flex-direction:column}.movie-meta-row button{width:100%;padding:7px}}

/* CGV FOOD & BEVERAGE TAB */
.food-card .food-image{position:relative;aspect-ratio:4/3;padding:12px;background:linear-gradient(145deg,#fff7f7,#f8fafc);overflow:hidden}.food-card .food-image img{width:100%;height:100%;object-fit:contain;transition:transform .25s}.food-card:hover .food-image img{transform:scale(1.04)}.food-card .food-image>span{position:absolute;top:8px;right:8px;padding:4px 7px;border-radius:7px;background:#dc2626;color:#fff;font-size:7px;font-weight:900}.food-card .movie-info h3{min-height:auto;font-size:11px}.food-card .movie-info p{min-height:30px;color:#64748b;font-size:8px;font-weight:500;line-height:1.45;letter-spacing:0}.food-price-row{display:flex;align-items:center;justify-content:space-between;gap:6px}.food-price-row strong{color:#101828;font-size:11px}.food-price-row button{border:0;border-radius:7px;background:#101828;color:#fff;padding:7px 9px;font-size:8px;font-weight:900;cursor:pointer}.food-price-row button:hover{background:#dc2626}.food-card.is-soldout{opacity:.55}.food-price-row button:disabled{cursor:not-allowed;background:#94a3b8}
.cgv-seat-picker{overflow:hidden}.seat-map-head{display:flex;justify-content:space-between;gap:12px;align-items:center;margin-bottom:14px}.seat-map-head span{font-size:11px;color:#64748b}.seat-map-head i{display:inline-block;width:10px;height:10px;border-radius:3px;background:#fff;border:1px solid #94a3b8}.seat-map-head i.sold{background:#cbd5e1}.seat-map-head i.chosen{background:#dc2626;border-color:#dc2626}.cinema-screen{max-width:420px;margin:0 auto 22px;padding:7px;text-align:center;font-size:10px;letter-spacing:3px;color:#64748b;border-top:4px solid #cbd5e1;border-radius:50%}.seat-map{display:flex;flex-direction:column;gap:7px;overflow-x:auto;padding:4px 2px 14px}.seat-row{display:flex;justify-content:center;align-items:center;gap:6px;min-width:360px}.seat-row b{width:20px;font-size:11px;color:#64748b}.seat,.seat-gap{width:30px;height:30px;flex:0 0 30px}.seat{border:1px solid #94a3b8;border-radius:8px 8px 4px 4px;background:#fff;color:#0f172a;font-size:11px;font-weight:800;cursor:pointer}.seat:hover{border-color:#dc2626}.seat.unavailable{background:#cbd5e1;border-color:#cbd5e1;color:#fff;cursor:not-allowed}.seat.selected{background:#dc2626;border-color:#dc2626;color:#fff}.seat-map-status{padding:18px;border-radius:12px;background:#f8fafc;text-align:center;color:#64748b}.seat-map-status.error{background:#fff1f2;color:#be123c}@media(max-width:600px){.seat-map-head{align-items:flex-start;flex-direction:column}.seat,.seat-gap{width:27px;height:27px;flex-basis:27px}.seat-row{gap:4px}}
