.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: var(--sand);
  background-image: url('../assets/bg.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: all;
}

.loading-screen::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: 1;
  pointer-events: none;
  background-image: url('../assets/sun.svg');
  background-repeat: no-repeat;
  background-position: right top; 
  background-size: min(40%, 260px) auto; 
}

@media (min-width: 1000px) {
  .loading-screen { background-position: left bottom; }
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo-wrap {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  height: 62px;
  width: auto;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.loader-logo-bg {
  opacity: 0.18;
  filter: grayscale(30%);
}

.loader-logo-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: stremioFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  filter: drop-shadow(0 4px 14px rgba(30, 76, 97, 0.12));
}

@keyframes stremioFill {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0.4;
  }
  50% {
    clip-path: inset(0% 0 0 0);
    opacity: 1;
  }
  75% {
    clip-path: inset(0% 0 0 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0% 0 0 0);
    opacity: 0;
  }
}

.lang-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.lang-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--sand);
  border: 1px solid var(--line);
  color: var(--navy);
  font-family: 'Karla', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.lang-dropdown-trigger:focus { outline: none; }
.lang-dropdown-trigger:hover { border-color: var(--coral); }
.lang-dropdown-trigger .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-dropdown-wrapper.open .lang-dropdown-trigger .chevron { 
  transform: rotate(180deg); 
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(30, 76, 97, 0.16);
  width: 180px;
  max-height: min(320px, calc(100vh - 90px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1000;
}

.lang-dropdown-menu::-webkit-scrollbar { width: 4px; }
.lang-dropdown-menu::-webkit-scrollbar-thumb { 
  background: rgba(30, 76, 97, 0.2); 
  border-radius: 4px; 
}

.lang-dropdown-wrapper.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.15s ease;
}

.lang-option:hover { background: var(--sand); }
.lang-option.active {
  background: rgba(245, 165, 142, 0.15);
  color: var(--coral);
}
.lang-option .flag-icon { flex-shrink: 0; }
.langs button.active { background: var(--navy); color: #fff; }

.hero .addr-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 20px;
  transition: background-color 0.15s ease, opacity 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: manipulation;
}

.hero .addr-pin { color: var(--coral); flex-shrink: 0; }

#apt-address {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.3;
  word-break: break-word;
  border-bottom: 1px dashed rgba(30, 76, 97, 0.35);
  padding-bottom: 1px;
}

.hero .addr-arrow {
  color: rgba(30, 76, 97, 0.5);
  flex-shrink: 0;
  transition: transform 0.15s ease, color 0.15s ease;
}

.hero .addr-link:active { background-color: rgba(30, 76, 97, 0.06); }
.hero .addr-link:active .addr-arrow {
  transform: translate(2px, -2px);
  color: var(--coral);
}

@media (hover: hover) {
  .hero .addr-link:hover { background-color: rgba(30, 76, 97, 0.05); }
  .hero .addr-link:hover #apt-address { border-bottom-color: var(--coral); }
  .hero .addr-link:hover .addr-arrow {
    transform: translate(2px, -2px);
    color: var(--coral);
  }
}

.step-body .media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 16px;
}

.step-body .media img { 
  display: block; 
  width: 100%; 
  aspect-ratio: 4 / 3; 
  object-fit: cover;
}

.step-body .media video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;     
  background: #000;
  object-fit: cover;     
}

.media-caption {
  padding: 14px 16px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.step-body .media-caption-title {
  font-family: 'Karla', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  color: var(--navy) !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.3 !important;
}

.step-body .media-caption-desc,
.step-body .media-caption-desc p {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.82rem !important;
  line-height: 1.45 !important;
  margin: 0 0 6px 0 !important;
  color: rgba(44, 62, 80, 0.82) !important;
}

.step-body .media-caption-desc p:last-child { margin-bottom: 0 !important; }
.step-body .media-caption-desc strong,
.step-body .media-caption-desc b { color: var(--navy) !important; font-weight: 700 !important; }

.video-frame {
  position: relative;
  aspect-ratio: 9/16;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(30, 76, 97, 0.08);
  border: 1px solid var(--line);
  background: #000;
}

.video-frame img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}

.video-frame iframe { 
  border-radius: 14px; 
}

.video-frame .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 76, 97, 0.25);
  backdrop-filter: blur(2px);
}

.video-frame .play svg { 
  width: 56px; 
  height: 56px; 
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); 
}

.video-subtitles-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 76, 97, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: rgba(30, 76, 97, 0.85);
  font-weight: 600;
}

.video-subtitles-tip svg { 
  color: var(--coral); 
  flex-shrink: 0; 
}

.media {
  overflow: visible;
}

.media video {
  width: 100%;
  display: block;
  border-radius: 12px;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  contain: paint;
}

.access-card {
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  padding: 16px;
  background: var(--sand);
  margin-bottom: 16px;
}

.access-card p { 
  margin: 0; 
  font-size: 0.88rem; 
  line-height: 1.5; 
}

.safe-creds-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 24px;
}

.safe-cred-box {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(30, 76, 97, 0.03);
}

.safe-cred-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(30, 76, 97, 0.55);
  margin-bottom: 8px;
}

.safe-cred-value {
  display: block;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1;
}

.lock-card {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--sand);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.lock-card .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.lock-card .row .k {
  font-size: 0.75rem;
  color: rgba(30, 76, 97, 0.6);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lock-card .row .v {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.wifi-scene { 
  perspective: 1000px; 
  transform: translateZ(0); 
}

.wifi-card {
  width: 100%;
  position: relative;
  min-height: 295px;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

.wifi-face {
  width: 100%;
  min-height: 295px;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid var(--line);
  background: var(--sand);
  border-radius: 12px;
  padding: 24px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.wifi-card.is-flipped { 
  transform: rotateY(180deg); 
}

.wifi-front { 
  transform: rotateY(0deg); 
}

.wifi-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg);
}

.wifi-face .info { 
  width: 100%; 
  text-align: center;
  margin: auto 0;
}

.wifi-face .row { 
  display: flex; 
  flex-direction: column; 
  align-items: center;
  gap: 6px; 
  padding: 10px 0; 
  border-bottom: 1px solid var(--line); 
}

.wifi-face .row:last-of-type { 
  border-bottom: none; 
}

.wifi-face .row .k { 
  font-size: 0.75rem; 
  color: rgba(30, 76, 97, 0.6); 
  font-weight: 800; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
}

.wifi-face .row .v { 
  font-weight: 800; 
  font-size: 1.1rem; 
  color: var(--navy); 
}

#qrcode { 
  display: flex; 
  justify-content: center; 
  flex-shrink: 0; 
  border: 8px solid #fff; 
  border-radius: 12px; 
  line-height: 0; 
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  margin: auto 0;
}

#qrcode img,
#qrcode canvas {
  display: block;
}

.flip-btn {
  margin-top: auto;
  background: rgba(30, 76, 97, 0.05);
  border: 1px solid rgba(30, 76, 97, 0.1);
  color: var(--navy);
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  align-self: center;
}

.copy-btn {
  border: none; 
  background: var(--paper); 
  color: var(--navy);
  font-family: 'Karla', sans-serif; 
  font-weight: 700; 
  font-size: 0.75rem;
  padding: 6px 14px; 
  border-radius: 16px; 
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05); 
  transition: all 0.2s;
}

.copy-btn.copied { 
  background: var(--coral); 
  color: #fff; 
  box-shadow: none; 
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto; 
  gap: 8px;
  background: rgba(245, 165, 142, 0.25);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem; 
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 12px;
  transition: all 0.15s ease;
}

.wa-btn:active { 
  transform: scale(0.98); 
}

@media (hover: hover) {
  .maps-btn:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
  .wa-btn:hover { background: var(--coral); color: #fff; }
  .flip-btn:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
  .social-icons a:hover { transform: scale(1.05); }
}

.rules { 
  display: flex; 
  flex-direction: column; 
  gap: 0; 
}

.rule { 
  display: flex; 
  gap: 16px; 
  padding: 16px 0; 
  border-bottom: 1px solid var(--line); 
  align-items: center; 
}

.rule:last-child { 
  border-bottom: none; 
  padding-bottom: 0; 
}

.rule .ico { 
  font-size: 1.5rem; 
  width: 44px; 
  height: 44px; 
  flex-shrink: 0; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background: var(--sand); 
  border-radius: 12px; 
  padding: 0; 
}

.rule p { 
  margin: 0; 
  font-size: 0.95rem; 
  color: rgba(44, 62, 80, 0.8); 
}

.rule b { 
  font-weight: 700; 
  color: var(--navy); 
}

.contact-card { 
  text-align: center; 
}

.contact-card h2 { 
  font-size: 1.3rem; 
  margin-bottom: 12px; 
  color: var(--navy); 
}

.contact-card p { 
  font-size: 0.95rem; 
  color: rgba(44, 62, 80, 0.8); 
  max-width: 420px; 
  margin: 0 auto 24px; 
}

.contact-card .hours { 
  margin-top: 16px; 
  font-size: 0.85rem; 
  color: rgba(30, 76, 97, 0.6); 
  font-weight: 700; 
}

.social-icons { 
  display: flex; 
  justify-content: center; 
  gap: 12px; 
}

.social-icons a {
  display: flex; 
  align-items: center; 
  justify-content: center;
  width: 40px; 
  height: 40px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-icons svg { 
  width: 20px; 
  height: 20px; 
  fill: currentColor; 
  stroke: none; 
}

.expired-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  background-color: var(--sand);
  background-image: url('../assets/footer-bg.svg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.expired-overlay { 
  position: absolute; 
  inset: 0; 
  background: rgba(248, 249, 250, 0.4); 
  z-index: 1; 
}

.expired-content {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 440px;
  width: 100%;
  position: relative;
  z-index: 2;
  border-top: 4px solid var(--coral);
  text-align: center;
}

.city-guide-promo-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%);
  border-radius: var(--radius, 16px);
  box-shadow: 0 8px 26px rgba(30, 76, 97, 0.07);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .city-guide-promo-card {
    padding: 34px 32px 30px;
  }
}

.cg-promo-header {
  text-align: left;
}

.cg-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245, 165, 142, 0.22);
  color: #E4572E;
  font-family: var(--font-karla, 'Karla', sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cg-promo-title {
  font-family: var(--font-karla, 'Karla', sans-serif) !important;
  font-size: 1.29rem !important;
  font-weight: 600 !important;
  color: #1E4C61 !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.25 !important;
}

@media (min-width: 768px) {
  .cg-promo-title {
    font-size: 1.55rem !important;
  }
}

.cg-promo-desc {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(44, 62, 80, 0.82);
  margin: 0 0 16px;
}

.cg-promo-desc strong {
  color: #1E4C61;
  font-weight: 700;
}

.cg-promo-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.cg-promo-tag {
  background: #F0F4F7;
  color: #1E4C61;
  font-family: var(--font-karla, 'Karla', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 12px;
}

.city-guide-trigger-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #1E4C61 0%, #153747 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 16px;
  font-family: var(--font-karla, 'Karla', sans-serif);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(30, 76, 97, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.city-guide-trigger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(30, 76, 97, 0.3);
  background: linear-gradient(135deg, #173d4e 0%, #0f2733 100%);
}

.city-guide-trigger-btn:active {
  transform: translateY(0);
}

.city-guide-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  background: #091720;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s ease;
}

.city-guide-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.city-guide-scroll-container,
.city-guide-overlay {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.city-guide-scroll-container::-webkit-scrollbar,
.city-guide-overlay::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.cg-topbar-actions,
.cg-close-btn {
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 101 !important;
}

.city-guide-scroll-container {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100%;
}

.city-guide-doc {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  background: #FFFFFF;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.45);
  min-height: 100vh;
  position: relative;
}

@media (min-width: 768px) {
  .city-guide-doc {
    max-width: 780px;
  }
}

@media (min-width: 1024px) {
  .city-guide-doc {
    max-width: 980px;
  }
}

@media (min-width: 1280px) {
  .city-guide-doc {
    max-width: 1040px;
  }
}

.cg-topbar {
  position: sticky !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(12px, env(safe-area-inset-top)) 24px 12px;
  z-index: 100 !important;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .cg-topbar {
    max-width: 780px;
    padding: 16px 32px;
  }
}

@media (min-width: 1024px) {
  .cg-topbar {
    max-width: 980px;
    padding: 18px 40px;
  }
}

@media (min-width: 1280px) {
  .cg-topbar {
    max-width: 1040px;
  }
}

.cg-topbar.is-scrolled {
  background: rgba(15, 36, 56, 0.95) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 16px 16px;
}

.cg-topbar-brand {
  display: flex;
  align-items: center;
}

.cg-topbar-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.cg-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-family: var(--font-karla, 'Karla', sans-serif);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 22px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.cg-close-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.cg-cover {
  position: sticky !important;
  top: 0;
  height: 75vh;
  min-height: 520px;
  max-height: 640px;
  margin-top: -64px;
  z-index: 1 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #0d212c;
}

@media (min-width: 768px) {
  .cg-cover {
    height: 58vh;
    min-height: 480px;
    max-height: 540px;
    margin-top: -68px;
  }
}

@media (min-width: 1024px) {
  .cg-cover {
    height: 52vh;
    min-height: 450px;
    max-height: 500px;
    margin-top: -72px;
  }
}

.cg-cover-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cg-cover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cg-cover-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 28, 38, 0.45) 0%,
    rgba(10, 28, 38, 0.05) 30%,
    rgba(10, 28, 38, 0.3) 55%,
    rgba(10, 28, 38, 0.85) 80%,
    rgba(10, 28, 38, 0.98) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.cg-cover-hero {
  position: relative;
  z-index: 3;
  padding: 0 28px 58px;
  transform-origin: center bottom;
  will-change: transform, opacity;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .cg-cover-hero {
    padding: 0 36px 50px;
  }
}

@media (min-width: 1024px) {
  .cg-cover-hero {
    padding: 0 44px 54px;
  }
}

.cg-content-sheet {
  position: relative !important;
  z-index: 10 !important;
  background-color: #FFFFFF !important;
  border-radius: 28px 28px 0 0 !important;
  box-shadow: 0 -14px 36px rgba(0, 0, 0, 0.28) !important;
  margin-top: -24px !important;
  overflow: hidden;
}

.cg-cover-eyebrow {
  font-family: var(--font-karla, 'Karla', sans-serif);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #F5A58E;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.cg-cover-title {
  font-family: var(--font-karla, 'Karla', sans-serif) !important;
  font-size: 2.1rem !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  color: #FFFFFF !important;
  margin: 0 0 16px 0 !important;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.75);
}

@media (min-width: 768px) {
  .cg-cover-title {
    font-size: 2.85rem !important;
  }
}

@media (min-width: 1024px) {
  .cg-cover-title {
    font-size: 3.25rem !important;
  }
}

.cg-city-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F5A58E;
  color: #1E4C61;
  font-family: var(--font-karla, 'Karla', sans-serif);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 7px 16px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.cg-cover-social-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.cg-cover-social-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cg-cover-social-bar a:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

.cg-welcome-editorial {
  padding: 38px 24px 20px;
  background: #FFFFFF;
}

@media (min-width: 768px) {
  .cg-welcome-editorial {
    padding: 46px 36px 26px;
  }
}

@media (min-width: 1024px) {
  .cg-welcome-editorial {
    padding: 52px 44px 30px;
  }
}

.cg-curation-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-karla, 'Karla', sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #1E4C61;
  background: #F3F6F8;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cg-welcome-headline {
  font-family: var(--font-karla, 'Karla', sans-serif);
  font-size: 1.85rem;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #1E4C61;
  margin: 0 0 16px;
}

@media (min-width: 768px) {
  .cg-welcome-headline {
    font-size: 2.3rem;
  }
}

.cg-welcome-headline span {
  font-weight: 400;
  color: #4A6372;
  font-size: 1.55rem;
  display: inline-block;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .cg-welcome-headline span {
    font-size: 1.85rem;
  }
}

.cg-welcome-sub {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-size: 1.02rem;
  line-height: 1.6;
  color: #1E4C61;
  font-weight: 500;
  margin: 0 0 12px;
}

@media (min-width: 768px) {
  .cg-welcome-sub {
    font-size: 1.14rem;
  }
}

.cg-welcome-body {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(44, 62, 80, 0.78);
  margin: 0 0 24px;
}

@media (min-width: 768px) {
  .cg-welcome-body {
    font-size: 0.98rem;
  }
}

.cg-welcome-body strong {
  color: #1E4C61;
  font-weight: 700;
}

.cg-highlights-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 12px;
  background: #FAFBFD;
  border: 1px solid #EEF2F5;
  border-radius: 16px;
  margin-bottom: 26px;
}

@media (min-width: 768px) {
  .cg-highlights-row {
    padding: 18px 20px;
    gap: 16px;
  }
}

.cg-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.cg-highlight-icon {
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.cg-highlight-text strong {
  display: block;
  font-family: var(--font-karla, 'Karla', sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  color: #1E4C61;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .cg-highlight-text strong {
    font-size: 0.95rem;
  }
}

.cg-highlight-text small {
  display: block;
  font-size: 0.68rem;
  color: #7E909A;
  line-height: 1.25;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .cg-highlight-text small {
    font-size: 0.78rem;
  }
}

.cg-carousel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 8px 26px rgba(30, 76, 97, 0.12);
  background: transparent;
  user-select: none;
  pointer-events: none;
}

.cg-carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.cg-carousel-track {
  display: flex;
  width: max-content;
  animation: cgMarquee 70s linear infinite;
  will-change: transform;
}

.cg-carousel-slide {
  flex: 0 0 auto;
  width: 260px;
  height: 200px;
  margin-right: 14px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cg-carousel-slide {
    width: 330px;
    height: 240px;
    margin-right: 18px;
  }
}

@media (min-width: 1024px) {
  .cg-carousel-slide {
    width: 370px;
    height: 260px;
    margin-right: 20px;
  }
}

.cg-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

@keyframes cgMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.cg-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15, 36, 56, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
  outline: none;
}

.cg-carousel-prev {
  left: 14px;
}

.cg-carousel-next {
  right: 14px;
}

.cg-carousel-arrow:hover {
  background: rgba(15, 36, 56, 0.92);
  transform: translateY(-50%) scale(1.06);
}

.cg-carousel-dots {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
  background: rgba(15, 36, 56, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 9px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cg-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
  outline: none;
}

.cg-carousel-dot.active {
  background: #F5A58E;
  width: 20px;
  border-radius: 6px;
}

.cg-mosaic-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(15, 36, 56, 0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 10px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 3;
}

.cg-section-divider-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-top: 6px;
}

.cg-section-divider-bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #E8ECEF;
  z-index: 1;
}

.cg-section-divider-bar span {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  padding: 0 16px;
  font-family: var(--font-karla, 'Karla', sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #A0B0BA;
  text-transform: uppercase;
}

.cg-cards-container {
  padding: 24px 18px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #F8F9FA;
}

@media (min-width: 768px) {
  .cg-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 32px 32px 48px;
  }
}

@media (min-width: 1024px) {
  .cg-cards-container {
    gap: 28px;
    padding: 36px 40px 56px;
  }
}

.cg-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 76, 97, 0.08);
  border: 1px solid rgba(30, 76, 97, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}

@media (hover: hover) {
  .cg-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 76, 97, 0.12);
  }
}

.cg-card.is-hidden {
  display: none !important;
}

.cg-card-media {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cg-card-media {
    height: 230px;
  }
}

.cg-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cg-card-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}

.cg-tag-pill {
  background: rgba(15, 36, 56, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 12px;
  letter-spacing: 0.03em;
}

.cg-tag-discount {
  background: #E4572E;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(228, 87, 46, 0.4);
}

.cg-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cg-card-title {
  font-family: var(--font-karla, 'Karla', sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #1E4C61;
  margin: 0 0 10px;
}

.cg-card-desc {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(44, 62, 80, 0.85);
  margin: 0 0 16px;
}

.cg-media-grid-sm img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cg-tip-card {
  background: #FDF4F1;
  border-left: 3px solid #F5A58E;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.cg-tip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-karla, 'Karla', sans-serif);
  font-weight: 800;
  font-size: 0.82rem;
  color: #E4572E;
  margin-bottom: 4px;
}

.cg-tip-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #2C3E50;
}

.cg-voucher-box {
  background: #F4F7F9;
  border: 1px dashed #C8D5DE;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 18px;
}

.cg-voucher-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: #1E4C61;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 4px;
}

.cg-voucher-info h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: #1E4C61;
  font-weight: 800;
}

.cg-voucher-info p {
  margin: 0 0 12px;
  font-size: 0.84rem;
  color: #556977;
  line-height: 1.45;
}

.cg-coupon-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cg-copy-coupon-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #1E4C61;
  color: #1E4C61;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cg-copy-coupon-btn strong {
  color: #E4572E;
}

.cg-copy-coupon-btn.copied {
  background: #27AE60;
  border-color: #27AE60;
  color: #FFFFFF;
}

.cg-copy-coupon-btn.copied strong {
  color: #FFFFFF;
}

.cg-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.cg-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F0F4F7;
  color: #1E4C61;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 10px;
  transition: background 0.2s;
}

.cg-btn-outline:hover {
  background: #E2EBF0;
}

.cg-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1E4C61;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 10px;
  transition: background 0.2s;
}

.cg-btn-primary:hover {
  background: #153747;
}

.cg-voucher-dish-preview {
  border-radius: 14px;
  overflow: hidden;
  margin: 14px 0 16px;
  box-shadow: 0 4px 14px rgba(30, 76, 97, 0.08);
  border: 1px solid rgba(30, 76, 97, 0.1);
  background: #D2E7D6;
  display: flex;
  flex-direction: column;
}

.cg-voucher-dish-preview img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  display: block;
  background: #D2E7D6;
}

.cg-dish-caption-bar {
  background: #F4F7F9;
  border-top: 1px solid #E5ECF0;
  color: #1E4C61;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 8px 12px;
  text-align: center;
  line-height: 1.35;
}