:root {
  --navy: #1E4C61;
  --coral: #E4572E;
  --sand: #F8F9FA;
  --paper: #FFFFFF;
  --line: #E8ECEF;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(30, 76, 97, 0.08);
  --font-bodoni: 'Bodoni Moda', Georgia, serif;
  --font-karla: 'Karla', sans-serif;
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  -webkit-tap-highlight-color: transparent !important;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  background-color: #0c1b26;
  background-image: radial-gradient(circle at 50% 0%, #152d3d 0%, #091720 100%);
  color: #2C3E50;
  font-family: var(--font-inter);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-loading {
  overflow: hidden !important;
  height: 100vh !important;
}

#loading-screen,
.loading-screen {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 99999 !important;
  background-color: var(--sand) !important;
  background-image: url('../assets/bg.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100vh;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: all;
  overflow: hidden;
}

#loading-screen::before,
.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,
  .loading-screen { 
    background-position: left bottom; 
  }
}

#loading-screen.hidden,
.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-trigger,
button#lang-trigger,
.lang-dropdown-trigger,
.lang-dropdown-wrapper,
.lang-dropdown-menu,
.lang-option {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  outline: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

#lang-trigger:focus,
#lang-trigger:focus-visible,
#lang-trigger:active,
button#lang-trigger:focus,
button#lang-trigger:focus-visible,
button#lang-trigger:active,
.lang-dropdown-trigger:focus,
.lang-dropdown-trigger:focus-visible,
.lang-dropdown-trigger:active,
.lang-option:focus,
.lang-option:focus-visible,
.lang-option:active {
  outline: 0 none transparent !important;
  outline-width: 0 !important;
  outline-style: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08), inset 0 1px 1px 0 rgba(255, 255, 255, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
}

.lang-dropdown-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
}

.lang-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08), inset 0 1px 1px 0 rgba(255, 255, 255, 0.5) !important;
  color: #ffffff !important; 
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-dropdown-trigger:hover {
  background: rgba(255, 255, 255, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.14), inset 0 1px 1px 0 rgba(255, 255, 255, 0.7) !important;
  transform: translateY(-1px);
}

.lang-dropdown-wrapper.open .lang-dropdown-trigger,
.lang-dropdown-wrapper.open #lang-trigger:focus,
.lang-dropdown-wrapper.open #lang-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.14), inset 0 1px 1px 0 rgba(255, 255, 255, 0.9) !important;
  transform: scale(1.02);
  outline: none !important;
}

.lang-dropdown-trigger * {
  pointer-events: none;
}

.lang-dropdown-trigger .flag-icon {
  width: 19px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: block;
}

.lang-dropdown-trigger .chevron {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-dropdown-wrapper.open .lang-dropdown-trigger .chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 165px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.22s;
  z-index: 9999;
}

.lang-dropdown-wrapper.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 11px;
  color: #1a1a1a;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateX(2px);
}

.lang-option.active {
  background: rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

.lang-option .flag-icon {
  width: 19px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.city-guide-scroll-container {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

@media (max-width: 1023px) {
  .city-guide-scroll-container {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  .city-guide-scroll-container::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
}

@media (min-width: 1024px) {
  .city-guide-scroll-container {
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent !important;
  }
  .city-guide-scroll-container::-webkit-scrollbar {
    width: 8px !important;
  }
  .city-guide-scroll-container::-webkit-scrollbar-track {
    background: transparent;
  }
  .city-guide-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
  }
  .city-guide-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.45);
  }
}

.city-guide-doc {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  background: #FFFFFF;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  min-height: 100vh;
  position: relative;
  transition: max-width 0.3s ease;
}

@media (min-width: 768px) {
  .city-guide-doc { 
    max-width: 760px; 
  }
}

@media (min-width: 1024px) {
  .city-guide-doc { 
    max-width: 1040px; 
  }
}

@media (min-width: 1280px) {
  .city-guide-doc { 
    max-width: 1180px; 
  }
}

.cg-topbar {
  position: sticky !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(18px, env(safe-area-inset-top)) 28px 14px;
  z-index: 100 !important;
  background: transparent;
  transition: background 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease !important;
  border-bottom: 1px solid transparent;
}

@media (min-width: 768px) {
  .cg-topbar {
    padding: 20px 36px 16px;
  }
}

@media (min-width: 1024px) {
  .cg-topbar {
    padding: 22px 48px 16px;
  }
}

.cg-topbar.is-scrolled {
  background: rgba(15, 36, 56, 0.7) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.3);
  border-bottom-left-radius: 24px !important;
  border-bottom-right-radius: 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.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));
}

@media (min-width: 1024px) {
  .cg-topbar-logo {
    height: 38px;
  }
}

.cg-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 101 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.cg-cover,
.cg-cover-bg,
.cg-cover-video,
.cg-cover-gradient {
  overflow: hidden !important;
}

.cg-cover {
  position: sticky !important;
  top: 0;
  height: 75vh;
  min-height: 520px;
  max-height: 640px;
  margin-top: -72px;
  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: 60vh; 
    min-height: 500px; 
    max-height: 580px; 
    margin-top: -72px; 
  }
}

@media (min-width: 1024px) {
  .cg-cover { 
    height: 62vh; 
    min-height: 540px; 
    max-height: 620px; 
    margin-top: -76px; 
  }
}

.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.1) 30%,
    rgba(10, 28, 38, 0.35) 55%,
    rgba(10, 28, 38, 0.85) 82%,
    rgba(10, 28, 38, 0.98) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.cg-cover-hero {
  position: relative;
  z-index: 3;
  padding: 0 32px 56px;
  transform-origin: center bottom;
  will-change: transform, opacity;
}

@media (min-width: 768px) { 
  .cg-cover-hero { 
    padding: 0 44px 54px; 
  } 
}

@media (min-width: 1024px) { 
  .cg-cover-hero { 
    padding: 0 56px 64px; 
  } 
}

.cg-cover-eyebrow {
  font-family: var(--font-karla);
  font-size: 0.82rem;
  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);
}

@media (min-width: 1024px) {
  .cg-cover-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
  }
}

.cg-cover-title {
  font-family: var(--font-karla) !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; 
    line-height: 1.12 !important;
  } 
}

@media (min-width: 1024px) { 
  .cg-cover-title { 
    font-size: 3.4rem !important; 
    line-height: 1.08 !important;
    margin-bottom: 20px !important;
  } 
}

.cg-city-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F5A58E;
  color: #1E4C61;
  font-family: var(--font-karla);
  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);
}

@media (min-width: 1024px) {
  .cg-city-tag {
    font-size: 0.92rem;
    padding: 8px 18px;
  }
}

.cg-cover-social-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cg-cover-social-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-inter);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.cg-cover-social-bar a:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.cg-content-sheet {
  position: relative !important;
  z-index: 10 !important;
  background-color: #FFFFFF !important;
  border-top-left-radius: 32px !important;
  border-top-right-radius: 32px !important;
  box-shadow: 0 -14px 40px rgba(0, 0, 0, 0.25) !important;
  margin-top: -24px !important;
  padding-bottom: 0 !important;
  overflow: hidden !important;
}

.cg-welcome-editorial {
  padding: 38px 30px 24px;
  background: #FFFFFF;
}

@media (min-width: 768px) { 
  .cg-welcome-editorial { 
    padding: 48px 40px 28px; 
  } 
}

@media (min-width: 1024px) { 
  .cg-welcome-editorial { 
    padding: 56px 52px 34px; 
  } 
}

.cg-curation-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-karla);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #1E4C61;
  background: #F3F6F8;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cg-welcome-headline {
  font-family: var(--font-karla);
  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.35rem; 
  } 
}

@media (min-width: 1024px) { 
  .cg-welcome-headline { 
    font-size: 2.7rem; 
    line-height: 1.15;
    margin-bottom: 20px;
  } 
}

.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.9rem; 
  } 
}

@media (min-width: 1024px) { 
  .cg-welcome-headline span { 
    font-size: 2.15rem; 
  } 
}

.cg-welcome-sub {
  font-family: var(--font-inter);
  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.15rem; 
    line-height: 1.65;
    max-width: 900px;
  } 
}

.cg-welcome-body {
  font-family: var(--font-inter);
  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: 1rem; 
    line-height: 1.7;
    max-width: 900px;
  } 
}

.cg-welcome-body strong { 
  color: #1E4C61; 
  font-weight: 700; 
}

.cg-highlights-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 14px;
  background: #FAFBFD;
  border: 1px solid #EEF2F5;
  border-radius: 16px;
  margin-bottom: 28px;
}

@media (min-width: 768px) { 
  .cg-highlights-row { 
    padding: 20px 24px; 
    gap: 20px; 
    border-radius: 20px;
  } 
}

@media (min-width: 1024px) { 
  .cg-highlights-row { 
    padding: 24px 32px; 
    gap: 28px; 
    margin-bottom: 34px;
  } 
}

.cg-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  transition: transform 0.2s ease;
}

@media (min-width: 1024px) {
  .cg-highlight-item:hover {
    transform: translateY(-2px);
  }
}

.cg-highlight-icon { 
  font-size: 1.35rem; 
  margin-bottom: 4px; 
}

@media (min-width: 1024px) {
  .cg-highlight-icon {
    font-size: 1.6rem;
  }
}

.cg-highlight-text strong {
  display: block;
  font-family: var(--font-karla);
  font-size: 0.85rem;
  font-weight: 800;
  color: #1E4C61;
  line-height: 1.15;
}

@media (min-width: 768px) { 
  .cg-highlight-text strong { 
    font-size: 0.98rem; 
  } 
}

.cg-highlight-text small {
  display: block;
  font-size: 0.7rem;
  color: #7E909A;
  line-height: 1.25;
  margin-top: 2px;
}

@media (min-width: 768px) { 
  .cg-highlight-text small { 
    font-size: 0.82rem; 
  } 
}

.cg-carousel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 8px 26px rgba(30, 76, 97, 0.12);
  background: transparent;
  user-select: none;
}

@media (min-width: 1024px) {
  .cg-carousel {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  }
}

.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:hover .cg-carousel-track {
  animation-play-state: paused;
}

.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: 320px; 
    height: 230px; 
    margin-right: 18px; 
  } 
}

@media (min-width: 1024px) { 
  .cg-carousel-slide { 
    width: 380px; 
    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-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: 10px;
}

.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 20px;
  font-family: var(--font-karla);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #A0B0BA;
  text-transform: uppercase;
}

.cg-cards-container {
  padding: 28px 20px 32px !important;
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: #F8F9FA;
}

@media (min-width: 768px) {
  .cg-cards-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 24px;
    padding: 36px 36px 36px !important;
  }
}

@media (min-width: 1024px) {
  .cg-cards-container { 
    gap: 30px; 
    padding: 44px 50px 44px !important; 
  }
}

.cg-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 76, 97, 0.07);
  border: 1px solid rgba(30, 76, 97, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

@media (hover: hover) {
  .cg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(30, 76, 97, 0.13);
  }
}

.cg-card.is-hidden {
  display: none !important;
}

.cg-card-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

@media (min-width: 768px) { 
  .cg-card-media { 
    height: 240px; 
  } 
}

@media (min-width: 1024px) { 
  .cg-card-media { 
    height: 260px; 
  } 
}

.cg-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

@media (hover: hover) {
  .cg-card:hover .cg-card-media img {
    transform: scale(1.04);
  }
}

.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: 6px 12px;
  border-radius: 12px;
  letter-spacing: 0.03em;
}

.cg-tag-discount {
  background: #E4572E;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(228, 87, 46, 0.4);
}

.cg-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 1024px) {
  .cg-card-body {
    padding: 26px 24px;
  }
}

.cg-card-title {
  font-family: var(--font-karla);
  font-size: 1.35rem;
  font-weight: 800;
  color: #1E4C61;
  margin: 0 0 10px;
}

@media (min-width: 1024px) {
  .cg-card-title {
    font-size: 1.48rem;
  }
}

.cg-card-desc {
  font-family: var(--font-inter);
  font-size: 0.92rem;
  line-height: 1.62;
  color: rgba(44, 62, 80, 0.85);
  margin: 0 0 16px;
}

@media (min-width: 1024px) {
  .cg-card-desc {
    font-size: 0.96rem;
    line-height: 1.65;
  }
}

.cg-card-desc strong { 
  color: #1E4C61; 
  font-weight: 700; 
}

.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);
  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-family: var(--font-karla);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.cg-copy-coupon-btn strong { 
  color: #E4572E; 
}

.cg-copy-coupon-btn:hover {
  background: #F8F9FA;
  transform: translateY(-1px);
}

.cg-copy-coupon-btn.copied {
  background: #27AE60 !important;
  border-color: #27AE60 !important;
  color: #FFFFFF !important;
  box-shadow: none;
}

.cg-copy-coupon-btn.copied strong { 
  color: #FFFFFF !important; 
}

.cg-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.cg-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F0F4F7;
  color: #1E4C61;
  text-decoration: none;
  font-family: var(--font-karla);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s ease;
}

.cg-btn-outline:hover {
  background: #E2EBF0;
  transform: translateY(-1px);
}

.cg-btn-outline:active {
  transform: translateY(0);
}

.cg-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1E4C61;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-karla);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(30, 76, 97, 0.15);
  transition: background 0.2s, transform 0.15s ease, box-shadow 0.2s;
}

.cg-btn-primary:hover {
  background: #153747;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(30, 76, 97, 0.22);
}

.cg-btn-primary:active {
  transform: translateY(0);
}

.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);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 8px 12px;
  text-align: center;
  line-height: 1.35;
}

.cg-flyer-poster {
  background: #FCF8F2;
  border: 1px solid #ECE0D2;
  border-radius: 20px;
  padding: 30px 20px 26px;
  margin: 16px 0 18px;
  box-shadow: 0 10px 30px rgba(114, 76, 44, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) { 
  .cg-flyer-poster { 
    padding: 32px 24px 28px; 
  } 
}

.cg-flyer-bis-logo-wrap {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.cg-flyer-bis-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.cg-flyer-logo-fallback {
  font-family: 'Georgia', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #C0141B;
  letter-spacing: 0.05em;
}

.cg-flyer-header { 
  margin-bottom: 14px; 
}

.cg-flyer-main-title {
  font-family: var(--font-bodoni) !important;
  font-size: 1.85rem !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  color: #C0141B !important;
  letter-spacing: 0.02em !important;
  margin: 0 0 6px 0 !important;
  text-transform: uppercase;
}

@media (min-width: 768px) { 
  .cg-flyer-main-title { 
    font-size: 2.1rem !important; 
  } 
}

.cg-flyer-sub-title {
  font-family: var(--font-karla);
  font-size: 1.15rem;
  color: #815C38;
  margin: 0;
}

.cg-flyer-sub-title strong { 
  color: #815C38; 
  font-weight: 800; 
}

.cg-flyer-intro-text {
  max-width: 440px;
  margin: 0 auto 16px;
}

.cg-flyer-intro-text p {
  font-family: var(--font-inter);
  font-size: 0.88rem;
  line-height: 1.5;
  color: #7D6453;
  margin: 0 0 6px 0;
}

.cg-flyer-intro-text p:last-child { 
  margin-bottom: 0; 
}

.cg-flyer-pizza-wrap {
  width: 100%;
  max-width: 320px;
  margin: 6px auto 20px;
}

.cg-flyer-pizza-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(85, 48, 20, 0.16));
  border-radius: 50%;
}

.cg-flyer-rules-card {
  background: #734C2C;
  border-radius: 16px;
  padding: 18px 20px;
  width: 100% !important;
  max-width: 100% !important;
  text-align: left;
  color: #FFF9F3;
  box-shadow: 0 4px 14px rgba(115, 76, 44, 0.2);
  margin-bottom: 22px;
}

.cg-flyer-rule-item {
  font-family: var(--font-inter);
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0 0 8px 0;
  color: #F8ECE0;
}

.cg-flyer-rule-item strong { 
  color: #FFFFFF; 
  font-weight: 700; 
}

.cg-flyer-rule-note {
  display: block;
  font-family: var(--font-inter);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 8px;
  font-style: italic;
}

.cg-flyer-actions-inline {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 14px 0 10px;
}

@media (min-width: 1024px) {
  .cg-flyer-actions-inline {
    flex-direction: row !important;
  }
}

.cg-flyer-btn-coupon,
.cg-flyer-btn-order {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.cg-flyer-btn-coupon {
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #55331B;
  font-family: var(--font-karla);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.cg-flyer-btn-coupon strong { 
  color: #C0141B; 
  letter-spacing: 0.04em; 
}

.cg-flyer-btn-coupon:hover {
  background: #FFF8F2;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.cg-flyer-btn-coupon:active { 
  transform: translateY(0); 
}

.cg-flyer-btn-coupon.copied {
  background: #27AE60 !important;
  border-color: #27AE60 !important;
  color: #FFFFFF !important;
}

.cg-flyer-btn-coupon.copied strong { 
  color: #FFFFFF !important; 
}

.cg-flyer-btn-order {
  gap: 8px;
  background: #C0141B;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-karla);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(192, 20, 27, 0.35);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.cg-flyer-btn-order:hover {
  background: #A30F15;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(192, 20, 27, 0.45);
}

.cg-flyer-btn-order:active { 
  transform: translateY(0); 
}

.cg-flyer-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cg-flyer-closing-text {
  font-family: var(--font-bodoni) !important;
  font-size: 1.15rem;
  font-weight: 800;
  color: #C0141B;
  margin: 0;
}

.cg-flyer-address {
  font-family: var(--font-inter);
  font-size: 0.82rem;
  color: #8D7463;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cg-flyer-mape-logo-wrap { 
  margin-top: 10px; 
}

.cg-flyer-mape-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-top: 10px;
  display: block;
}

.site-footer {
  position: relative !important;
  background-color: #F8F9FA !important;
  background-image: url('../assets/footer-bg.svg') !important;
  background-repeat: no-repeat !important;
  background-position: center bottom !important; 
  background-size: cover !important; 
  padding: 50px 24px 34px !important;
  text-align: center !important;
  width: 100% !important;
  color: #556E7E !important;
  border-top: none !important;
  box-shadow: none !important;
  margin-top: 0 !important;
  overflow: hidden !important;
}

.site-footer::before {
  content: "" !important;
  position: absolute !important;
  top: -2px !important;
  left: -2px !important;
  right: -2px !important;
  bottom: -2px !important;
  width: calc(100% + 4px) !important;
  height: calc(100% + 4px) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.site-footer .footer-inner {
  position: relative !important;
  z-index: 2 !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.site-footer .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.site-footer .social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F1866F !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  transition: transform 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 10px rgba(241, 134, 111, 0.28);
  text-decoration: none;
}

.site-footer .social-icons a:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.site-footer .social-icons a svg {
  width: 18px;
  height: 18px;
  fill: #ffffff !important;
}

.site-footer .footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  width: 100%;
}

.site-footer .footer-info img,
.site-footer img {
  height: 34px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
  filter: brightness(0) saturate(100%) invert(19%) sepia(35%) saturate(1048%) hue-rotate(159deg) brightness(94%) contrast(92%) !important;
  -webkit-filter: brightness(0) saturate(100%) invert(19%) sepia(35%) saturate(1048%) hue-rotate(159deg) brightness(94%) contrast(92%) !important;
  opacity: 1 !important;
}

.site-footer .footer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}

.site-footer .footer-block h4 {
  color: #1E3A4C !important;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-inter);
  text-align: center;
}

.site-footer .footer-block p {
  color: #556E7E !important;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  font-family: var(--font-inter);
}

.site-footer .footer-bottom {
  margin-top: 28px;
  text-align: center;
  width: 100%;
}

.site-footer .footer-bottom p {
  color: #556E7E !important;
  font-size: 11.5px;
  margin: 0;
  font-family: var(--font-inter);
  text-align: center;
}