/* ============================================================
   global.css — Reset, Design Tokens, Shared Layout
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@300;700;900&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0B1914;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button, a { cursor: pointer; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Design Tokens --- */
:root {
  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  2rem;
  --space-xl:  4rem;
  --space-2xl: 8rem;

  /* Border Radius */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 600ms ease;

  /* Z-index */
  --z-bg:      0;
  --z-canvas:  1;
  --z-content: 10;
  --z-nav:     100;
  --z-modal:   1000;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  3rem;
  --text-4xl:  5rem;
  --text-5xl:  8rem;
}

/* --- Shared Nav --- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-lg);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: var(--z-nav);
}
.site-nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 40%, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-nav__links {
  display: flex;
  gap: var(--space-sm);
}
.site-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.site-nav__link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}
.site-nav__link.active { color: #fff; border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); }

/* --- Shared Button --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: linear-gradient(135deg, var(--accent-primary, #c8102e), var(--accent-secondary, #ffd700));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn--primary:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn--ghost:hover { background: rgba(255,255,255,0.13); color: #fff; }

/* --- Page fade-in on load --- */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: pageFadeIn 0.6s ease forwards; }

/* --- Section 2 shared layout --- */
.section-2 {
  background: #0d0d0d;
  padding: var(--space-xl) var(--space-lg);
}
.section-2__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
/* Unify All Section 2 Stack Gaps 1:1 */
.content-main,
.content-sidebar,
.sidebar,
.content-sidebar .sidebar {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.content-sidebar {
  position: sticky;
  top: 84px;
}

.content-main > *,
.content-sidebar > *,
.sidebar > *,
.content-sidebar .sidebar > * {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Content block cards */
.content-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin: 0 !important;
}
.content-block__heading {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--accent-primary, #c8102e);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.content-block__heading-icon { font-size: 1.4em; }
.content-block p {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--space-md);
}
.content-block p:last-child { margin-bottom: 0; }

/* Fun facts / Did You Know? cards — Subtle Clean Highlight */
.fun-facts {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md, 1rem);
}
.fun-facts li,
.fun-fact-item {
  position: relative;
  padding: var(--space-md, 1rem) var(--space-lg, 1.25rem);
  border-left: 3px solid rgba(245, 158, 11, 0.35);
  margin-bottom: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-base, 0.95rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-md, 12px) var(--radius-md, 12px) 0;
  transition: transform 0.25s ease, background 0.25s ease, border-left-color 0.25s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.fun-facts li:hover,
.fun-facts li:focus,
.fun-facts li:active,
.fun-fact-item:hover,
.fun-fact-item:focus,
.fun-fact-item:active {
  background: rgba(245, 158, 11, 0.15) !important;
  transform: translateX(4px) !important;
  border-left-color: #f59e0b !important;
  border-left-width: 3.5px !important;
  color: #ffffff !important;
}
.fun-fact-text {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.88) !important;
}
.fun-facts li:hover .fun-fact-text,
.fun-fact-item:hover .fun-fact-text {
  color: #ffffff !important;
}

/* Mobile View (<= 900px): Clean Static Cards for Fun Facts / Did You Know? */
@media (max-width: 900px) {
  .fun-facts li,
  .fun-fact-item {
    padding: 0.88rem 1rem !important;
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    border-left: 3px solid rgba(245, 158, 11, 0.4) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    opacity: 1 !important;
    box-shadow: none !important;
    transform: none !important;
  }
}

/* Quiz */
.quiz__progress {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  color: #f59e0b !important;
  background: rgba(245, 158, 11, 0.12) !important;
  border: 1px solid rgba(245, 158, 11, 0.3) !important;
  padding: 4px 14px !important;
  border-radius: 9999px !important;
  display: inline-block !important;
  margin-bottom: 1rem !important;
}
.quiz__question {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.25rem, 3vw, 1.65rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 1.25rem !important;
  line-height: 1.4 !important;
}
.quiz__options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 1rem; }
.quiz-option,
.quiz__option {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  padding: 1rem 1.25rem !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  text-align: left !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
  box-sizing: border-box !important;
}
.quiz-option:hover:not(:disabled),
.quiz__option:hover:not(:disabled) {
  border-color: #f59e0b !important;
  background: rgba(255, 255, 255, 0.08) !important;
  transform: translateX(6px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(245, 158, 11, 0.2) !important;
}
.quiz-option.correct,
.quiz__option.correct {
  border-color: #10b981 !important;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(6, 78, 59, 0.85) 100%) !important;
  color: #a7f3d0 !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.35) !important;
  font-weight: 700 !important;
}
.quiz-option.incorrect,
.quiz-option.wrong,
.quiz__option.incorrect,
.quiz__option.wrong {
  border-color: #ef4444 !important;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(153, 27, 27, 0.85) 100%) !important;
  color: #fca5a5 !important;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.35) !important;
  font-weight: 700 !important;
}
.quiz-option:disabled,
.quiz__option:disabled { cursor: default !important; }
.quiz__feedback {
  margin-top: 1rem !important;
  padding: 1rem 1.25rem !important;
  border-radius: 10px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  display: none !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-left: 4px solid var(--accent-primary) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
.quiz__feedback.visible { display: block !important; }
.quiz__feedback.correct {
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1px solid rgba(16, 185, 129, 0.4) !important;
  border-left: 4px solid #10b981 !important;
  color: #d1fae5 !important;
}
.quiz__feedback.incorrect,
.quiz__feedback.wrong {
  background: rgba(239, 68, 68, 0.15) !important;
  border: 1px solid rgba(239, 68, 68, 0.4) !important;
  border-left: 4px solid #ef4444 !important;
  color: #fee2e2 !important;
}
.quiz__nav {
  display: flex !important;
  justify-content: flex-end !important;
  margin-top: 1.25rem !important;
}
.quiz__score-screen {
  text-align: center;
  padding: 2rem 1rem;
  display: none;
}
.quiz__score-screen.visible { display: flex !important; flex-direction: column !important; align-items: center !important; }
.quiz__score-number {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(3rem, 8vw, 4.5rem) !important;
  font-weight: 900 !important;
  color: #f59e0b !important;
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.5) !important;
  line-height: 1 !important;
  margin-bottom: 0.5rem !important;
}
.quiz__score-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.1rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-top: 0.5rem !important;
  margin-bottom: 1.5rem !important;
}

/* Sticky Sidebar — Slides along with user as main column scrolls */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: sticky;
  top: 32px;
}
.sidebar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  overflow: hidden;
}
.embed-card { text-align: center; }
.embed-card__logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--accent-primary);
  margin-bottom: 4px;
}
.embed-card__holiday {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}
.embed-card__share { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }
.quick-stats__title {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}
.quick-stats__list { display: flex; flex-direction: column; gap: var(--space-md); }
.quick-stats__item dt { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); }
.quick-stats__item dd { font-family: 'Outfit', sans-serif; font-size: var(--text-lg); font-weight: 700; color: var(--accent-primary); margin: 0; }

/* Pixel-Perfect Fullwidth Section 2 Block Container */
.section-2__fullwidth {
  max-width: 1200px;
  width: 100%;
  margin: var(--space-xl) auto 0 auto;
  padding: 0 var(--space-lg);
}

.section-2__fullwidth .content-block {
  margin-bottom: 0;
}

/* Product grid inside fullwidth block — Matched with Site Structure */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

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

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: rgba(18, 38, 30, 0.65);
  border: 1px solid rgba(46, 82, 67, 0.7);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(245, 158, 11, 0.25);
}

.product-card__emoji {
  font-size: 2.4rem;
  display: block;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.product-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 6px;
}

.product-card__price {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* Around the world cards */
.world-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--space-md); }
.world-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}
.world-card__flag { font-size: 2rem; margin-bottom: var(--space-sm); }
.world-card__country { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: var(--text-base); color: var(--accent-primary); margin-bottom: 6px; }
.world-card__text { font-size: var(--text-sm); color: rgba(255,255,255,0.65); line-height: 1.6; }

/* --- Magazine-Grade Dark Editorial Timeline --- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  padding-left: 28px !important;
  border-left: 2px solid rgba(255, 215, 0, 0.3) !important;
  margin-top: var(--space-md);
}

.timeline__item {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.timeline__item::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -35px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #ffd700 !important;
  border: 2px solid #0B1914 !important;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.75) !important;
  box-sizing: content-box !important;
  transition: transform 0.25s ease !important;
  z-index: 2 !important;
}

.timeline__item:hover {
  transform: translateX(6px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.timeline__item:hover::before {
  transform: translateX(-6px) !important;
}

.timeline__year {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.timeline__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.timeline__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

/* Traditions content */
.traditions-content {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.traditions-content p {
  margin-bottom: 1rem;
}

/* --- Tradition Grid & Cards --- */
.tradition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (max-width: 900px) {
  .tradition-grid {
    grid-template-columns: 1fr;
  }
}

.tradition-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tradition-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.tradition-card__emoji {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 4px;
}

.tradition-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.tradition-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* Quote block */
.quote-block {
  border-left: 4px solid #ffd700;
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 215, 0, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-left-width: 4px;
}

.quote-block__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.quote-block__author {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffd700;
  letter-spacing: 0.05em;
}

/* ============================================================
   SHARED SIDEBAR WORLD SLIDER
   ============================================================ */
.world-slider-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-height: 270px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.world-slider__header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  width: 100%;
}

.world-slider__title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  line-height: 1.2;
}

.world-slider__counter {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: #f59e0b;
  white-space: nowrap;
  line-height: 1.2;
  margin-left: auto;
}

.world-slider__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
}

.world-slide {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.world-slide__flag {
  font-size: 1.8rem;
  line-height: 1;
}

.world-slide__country {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.world-slide__text {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.world-slider__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.world-slider__btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.world-slider__btn:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: #f59e0b;
  color: #f59e0b;
}

.world-slider__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.world-slider__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.world-slider__dot.active {
  width: 18px;
  border-radius: 4px;
  background: #f59e0b;
}

/* Visible In-Content Ad Grid Banner & Sidebar Ad Placements */
.ad-banner-grid,
[aria-label="Advertisement"],
.sidebar-card[aria-label="Advertisement"] {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin: var(--space-lg) 0 !important;
}

.ad-slot {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 90px !important;
  padding: 1.25rem 1rem !important;
  background: rgba(18, 38, 30, 0.75) !important;
  border: 1px dashed rgba(245, 158, 11, 0.45) !important;
  border-radius: var(--radius-md) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  text-align: center !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
}

.ad-label {
  display: inline-block !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #f59e0b !important;
  background: rgba(245, 158, 11, 0.15) !important;
  border: 1px solid rgba(245, 158, 11, 0.3) !important;
  padding: 4px 12px !important;
  border-radius: var(--radius-full) !important;
  margin-bottom: 6px !important;
}

/* --- Location Components (Shared across all pages) --- */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

/* Universal Top Header Container Across All 5 Pages */
.contact-header,
.privacy-header,
.terms-header,
.home-top-header {
  padding: 1rem 1.5rem;
  background: #0B1914;
  border-bottom: 1px solid rgba(46, 82, 67, 0.4);
  width: 100%;
  box-sizing: border-box;
}

.top-controls-row {
  max-width: 100% !important;
  margin: 0 auto;
  width: 100% !important;
  padding: 0 2rem !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
  position: relative !important;
}

/* Top Controls Row Header Overlay on Countdown Page (Matching Master Design Layout) */
.section-1 .top-controls-row {
  position: absolute !important;
  top: 1.5rem !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 38px !important;
  padding: 0 2rem !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  z-index: 100 !important;
  box-sizing: border-box !important;
}

/* Universal Section 1 Centering Rules (Matching ARCHITECTURE.md & DESIGN.md) */
.section-1 {
  position: relative !important;
  width: 100% !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

/* Hide countdown timer wrapper completely on holiday celebration day (24H rule) */
.countdown-wrapper.is-today-hidden,
.countdown-wrapper[hidden],
.countdown-wrapper.hidden {
  display: none !important;
}

.section-1__content {
  position: relative !important;
  z-index: 10 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: auto !important;
  padding: 0 1.5rem !important;
  box-sizing: border-box !important;
  gap: 1.25rem !important;
}

.countdown-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: clamp(8px, 2vw, 24px) !important;
  margin: 0.5rem auto !important;
  width: fit-content !important;
  text-align: center !important;
}

/* Search Button Centered Dead-Middle Between Left and Right Buttons */
.section-1 .header-search-center {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 10 !important;
}

/* Universal Twin Header Pills Standard (Matching Contact Page Exactly Across All 5 Pages) */
.breadcrumb,
.breadcrumb-pill,
.header-location-picker,
.header-search-picker {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  align-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1.5px solid rgba(245, 158, 11, 0.5) !important;
  border-radius: 9999px !important;
  padding: 0 16px !important;
  color: #ffd700 !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  z-index: 99999 !important;
  cursor: pointer !important;
}

.breadcrumb:hover,
.breadcrumb-pill:hover,
.header-location-picker:hover,
.header-search-picker:hover,
.header-search-picker:focus-within {
  color: #ffd700 !important;
  border-color: #f59e0b !important;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.4) !important;
}

/* Compact Closed State Display Label: Elegant Vector Globe Icon + Gold Arrow */
.header-location-display {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  color: #ffd700 !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  pointer-events: none !important;
  white-space: nowrap !important;
}

.colorful-globe-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  flex-shrink: 0 !important;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 6px rgba(245, 158, 11, 0.3)) !important;
  transition: transform 0.25s ease, filter 0.25s ease !important;
}

.header-location-picker:hover .colorful-globe-icon {
  transform: scale(1.08) !important;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 8px rgba(245, 158, 11, 0.45)) !important;
}

.globe-arrow {
  color: #ffd700 !important;
  font-size: 0.7rem !important;
  opacity: 0.75 !important;
  transition: transform 0.2s ease, opacity 0.2s ease !important;
}

.header-location-picker:hover .globe-arrow {
  transform: translateY(1px) !important;
  opacity: 1 !important;
}

/* Overlay Select Dropdown - Transparent when closed, reveals 8-item full zone details when clicked */
.city-select,
.city-selector-header {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  pointer-events: none !important; /* Prevents lengthy native OS popup from Photo 1 */
  z-index: 1 !important;
  background: transparent !important;
  color: transparent !important;
  border: none !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

/* Custom Royal Solstice 10-Item Scrollable Timezone Dropdown Box */
.custom-tz-dropdown {
  position: absolute !important;
  top: calc(100% + 6px) !important;
  right: 0 !important;
  left: auto !important;
  width: 230px !important;
  max-width: 90vw !important;
  height: 350px !important;
  max-height: 350px !important;
  background: linear-gradient(135deg, #0d1e18 0%, #08130f 100%) !important;
  border: 1.5px solid #f59e0b !important;
  border-radius: 16px !important;
  overflow-y: auto !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(245, 158, 11, 0.35) !important;
  padding: 5px !important;
  z-index: 9999999 !important;
  box-sizing: border-box !important;
  scrollbar-width: thin !important;
  scrollbar-color: #f59e0b rgba(255, 255, 255, 0.1) !important;
}

.custom-tz-dropdown[hidden] {
  display: none !important;
}

.custom-tz-dropdown::-webkit-scrollbar {
  width: 6px !important;
}
.custom-tz-dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 9999px !important;
}
.custom-tz-dropdown::-webkit-scrollbar-thumb {
  background: #f59e0b !important;
  border-radius: 9999px !important;
}

.custom-tz-option {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  height: 34px !important;
  padding: 0 10px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 8px !important;
  color: #ffd700 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  text-align: left !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  transition: all 0.15s ease !important;
  box-sizing: border-box !important;
}

.custom-tz-option:hover,
.custom-tz-option:focus {
  background: rgba(245, 158, 11, 0.25) !important;
  color: #ffffff !important;
  transform: translateX(2px) !important;
}

.custom-tz-option .tz-flag {
  font-size: 1rem !important;
  flex-shrink: 0 !important;
}

.custom-tz-option .tz-name {
  flex-grow: 1 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  color: #ffffff !important;
}

/* Mobile View (<= 900px): Custom 5-Item Visible Scrollable Timezone Dropdown Box */
@media (max-width: 900px) {
  .custom-tz-dropdown {
    right: 0.5rem !important;
    left: auto !important;
    width: 220px !important;
    max-width: 85vw !important;
    height: 176px !important;
    max-height: 176px !important;
  }
}


/* Desktop Mode (> 900px): Hide mobile brand logo (preserving 100% desktop lock!) */
@media (min-width: 901px) {
  .header-brand-logo {
    display: none !important;
  }
}

/* Mobile Mode (<= 900px): Icon Search (Left) + Logo (Center) + Live Green Dot Icon Location (Right) */
@media (max-width: 900px) {
  .contact-header,
  .privacy-header,
  .terms-header,
  .home-top-header {
    padding: 0.75rem 1rem !important;
  }

  .top-controls-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    height: 38px !important;
    width: 100% !important;
  }

  .top-controls-row .header-search-center,
  .top-controls-row .header-search-picker {
    order: 1 !important;
    position: static !important;
    overflow: visible !important;
  }

  .top-controls-row .breadcrumb-pill {
    order: 2 !important;
    margin-left: 6px !important;
  }

  .top-controls-row .header-location-picker {
    order: 3 !important;
    margin-left: auto !important;
    position: relative !important;
    left: auto !important;
    transform: none !important;
  }

  .header-search-center {
    position: static !important;
    overflow: visible !important;
  }

  /* Mobile Search Button: Collapsed (38px circle) by default on the LEFT */
  .header-search-picker {
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    padding: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 99999 !important;
  }

  .header-search-picker .header-search-icon {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    color: #ffd700 !important;
    margin: 0 auto !important;
    pointer-events: none !important;
  }

  .header-search-input {
    display: none !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #ffd700 !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Expanded Full-Width Floating Mobile Search Bar — Spacious gap below the header strip */
  .header-search-picker.mobile-expanded,
  .header-search-center.mobile-expanded .header-search-picker,
  body.mobile-search-active .header-search-picker {
    position: absolute !important;
    top: calc(100% + 20px) !important;
    left: 0.75rem !important;
    right: 0.75rem !important;
    width: calc(100% - 1.5rem) !important;
    min-width: calc(100% - 1.5rem) !important;
    max-width: calc(100% - 1.5rem) !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    border-radius: 9999px !important;
    padding: 0 16px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 10px !important;
    background: rgba(11, 25, 20, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1.5px solid #f59e0b !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.95), 0 0 25px rgba(245, 158, 11, 0.45) !important;
    z-index: 9999999 !important;
  }

  .header-search-picker.mobile-expanded .header-search-input,
  .header-search-center.mobile-expanded .header-search-input,
  body.mobile-search-active .header-search-input {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    color: #ffd700 !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  }

  .header-search-picker.mobile-expanded .header-search-icon,
  .header-search-center.mobile-expanded .header-search-icon,
  body.mobile-search-active .header-search-icon {
    margin: 0 !important;
    width: 16px !important;
    height: 16px !important;
    color: #f59e0b !important;
  }

  /* Mobile Search Dropdown Results — Displayed directly under the floating search bar */
  .header-search-picker.mobile-expanded + .holiday-search-dropdown,
  .header-search-center.mobile-expanded .holiday-search-dropdown,
  body.mobile-search-active .holiday-search-dropdown,
  #home-search-dropdown,
  #holiday-search-dropdown,
  .holiday-search-dropdown {
    position: absolute !important;
    top: calc(100% + 68px) !important;
    left: 0.75rem !important;
    right: 0.75rem !important;
    width: calc(100% - 1.5rem) !important;
    max-height: 280px !important;
    overflow-y: auto !important;
    background: rgba(11, 25, 20, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1.5px solid rgba(245, 158, 11, 0.5) !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.95) !important;
    z-index: 99999999 !important;
  }



  /* Center Brand Logo in Header Strip */
  .header-brand-logo {
    display: inline-flex !important;
    align-items: center !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    letter-spacing: -0.01em !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    white-space: nowrap !important;
  }

  .header-brand-logo span {
    color: #f59e0b !important;
    margin-right: 3px !important;
  }

  /* Mobile Location Button: Single Centered Vector Globe Icon (38px Circle, Right Edge) */
  .header-location-picker {
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
  }

  .header-location-picker .header-location-display {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .header-location-picker .globe-arrow {
    display: none !important;
  }

  .header-location-picker .colorful-globe-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    margin: 0 auto !important;
    display: block !important;
    flex-shrink: 0 !important;
  }

  .header-location-picker .city-selector-header,
  .header-location-picker .city-select {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer !important;
    z-index: 5 !important;
  }
}

.city-select option,
.city-selector-header option {
  background: #0B1914;
  color: #FFFFFF;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid #22c55e;
  opacity: 0.75;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.header-search-picker {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  height: 31px;
  width: 215px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-search-picker:hover,
.header-search-picker:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  width: 215px;
}

.header-search-icon {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.header-search-input {
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  width: 100%;
  outline: none;
  padding: 0;
  line-height: 1;
}

.header-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* --- Top-Center Header Search Pill & Autocomplete --- */
.header-search-center {
  position: absolute;
  top: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.header-search-center .header-search-picker {
  position: relative;
  top: 0;
  left: 0;
}

.holiday-search-dropdown[hidden] {
  display: none !important;
}

.holiday-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 215px;
  background: rgba(8, 22, 8, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(34, 197, 94, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 250;
  max-height: 260px;
  overflow-y: auto;
}

.holiday-search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  font-weight: 500;
  transition: background var(--transition-fast);
}

.holiday-search-item:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.holiday-search-item__icon {
  font-size: 1rem;
}

.header-location-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 4px 10px 4px 14px;
  height: 34px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-location-picker:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.sort-by-label {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  margin-left: 2px;
}

.city-selector-header {
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 4px;
  cursor: pointer;
  outline: none;
}

.city-selector-header option {
  background: #0a1a0a;
  color: #fff;
  font-weight: 500;
}

/* --- Share Modal Component --- */
.share-modal[hidden] {
  display: none !important;
}

.share-modal {
  position: fixed;
  inset: 0;
  z-index: 999999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.share-modal__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.share-modal__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 440px;
  background: #0d220d;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(34, 197, 94, 0.25);
  color: #ffffff;
  animation: modalPop 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.share-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.share-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.share-modal__close {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all var(--transition-fast);
}

.share-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: scale(1.1);
}

.share-modal__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(240, 255, 224, 0.7);
  margin-bottom: 20px;
}

.share-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.share-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.share-icon-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.share-icon-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Brand colors */
.share-icon-btn--wa { background: #25D366; }
.share-icon-btn--fb { background: #1877F2; }
.share-icon-btn--tw { background: #1DA1F2; }
.share-icon-btn--rd { background: #FF4500; }

.share-modal__copy {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 6px;
}

.share-modal__input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  padding: 8px 12px;
  outline: none;
}

.share-modal__copy-btn {
  background: #ffd700;
  border: none;
  border-radius: 8px;
  color: #040e04;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.share-modal__copy-btn:hover {
  background: #ffe44d;
  transform: scale(1.02);
}

/* --- Master Site Footer (Matching Screenshot 2 1:1) --- */
.site-footer {
  background: #050505 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 4rem 2rem 2.5rem !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  color: rgba(255, 255, 255, 0.75) !important;
  position: relative !important;
  z-index: 10 !important;
  box-sizing: border-box !important;
}

.site-footer__inner {
  max-width: 1100px !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 2.2fr 1fr 1fr !important;
  gap: 4rem !important;
  margin-bottom: 3rem !important;
  box-sizing: border-box !important;
}

.footer-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
  align-items: flex-start !important;
}

.footer-col--brand {
  gap: 1.1rem !important;
}

.footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  letter-spacing: -0.01em !important;
}

.footer-logo__star {
  font-size: 1.2rem !important;
  color: #ffffff !important;
}

.footer-description {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.90rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  max-width: 360px !important;
  margin: 0 !important;
}

.footer-badge-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 14px !important;
  border-radius: 9999px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  font-size: 0.80rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-top: 0.25rem !important;
}

.footer-col__title {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.80rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: #ffffff !important;
  margin-bottom: 0.75rem !important;
}

.footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.footer-links li a {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.90rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
}

.footer-link__emoji {
  font-size: 0.95rem !important;
  line-height: 1 !important;
  display: inline-block !important;
}

.footer-links li a:hover {
  color: #ffffff !important;
  transform: translateX(3px) !important;
}

/* Footer Bottom Bar */
.site-footer__bottom {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding-top: 2rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  font-size: 0.82rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
  }
}
@media (max-width: 550px) {
  .site-footer__inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
  }
  .footer-col {
    align-items: center !important;
  }
  .footer-description {
    text-align: center !important;
    max-width: 100% !important;
  }
  .footer-links li a:hover {
    transform: none !important;
  }
}

/* Responsive Tablet & Mobile (iPad & Phones) */
@media (max-width: 1200px) {
  .section-2__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--space-xl);
  }
  .content-main {
    width: 100%;
  }
  .content-sidebar {
    width: 100%;
    position: static;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  .site-nav__links { display: none; }
}

@media (max-width: 640px) {
  .section-2 { padding: var(--space-lg) var(--space-md); }
  .content-block { padding: var(--space-md); }
  :root { --text-5xl: 3rem; --text-4xl: 2.2rem; }

  /* Header Pills Mobile Responsiveness (Homepage) */
  .home-section .header-search-picker,
  .home-section .header-location-picker {
    width: min(320px, 92vw) !important;
    font-size: 12px !important;
    padding: 6px 14px !important;
    box-sizing: border-box;
  }
  .city-selector-header {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 12px !important;
    text-align: center !important;
    text-align-last: center !important;
  }
  .breadcrumb {
    width: auto !important;
    max-width: 220px !important;
    font-size: 12px !important;
    padding: 6px 14px !important;
  }
  .header-search-input {
    font-size: 12px !important;
  }

  /* Timeline Mobile Adjustments — Smaller golden dot 100% stationary & dead-centered on vertical line */
  .timeline {
    padding-left: 20px !important;
    border-left: 2px solid rgba(255, 215, 0, 0.3) !important;
  }
  .timeline__item {
    padding: var(--space-md) !important;
  }
  .timeline__item::before {
    left: -25.5px !important;
    top: 20px !important;
    width: 8px !important;
    height: 8px !important;
    border: 2px solid #0B1914 !important;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.75) !important;
    box-sizing: content-box !important;
    transition: transform 0.25s ease !important;
  }
  .timeline__item:hover::before {
    transform: translateX(-6px) !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* SEO Holiday Interlinking Grid (Desktop: 3x3, Tablet: 3x2, Mobile: 2x2) */
.holiday-interlink-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
  margin-top: 1rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Tablet Mode (601px - 900px): 3x2 Grid (3 columns x 2 rows = 6 items) */
@media (max-width: 900px) and (min-width: 601px) {
  .holiday-interlink-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }
  .holiday-interlink-grid .interlink-card:nth-child(n+7) {
    display: none !important;
  }
}

/* Mobile Mode (<= 600px): 2x2 Grid (2 columns x 2 rows = 4 items) */
@media (max-width: 600px) {
  .holiday-interlink-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .holiday-interlink-grid .interlink-card:nth-child(n+5) {
    display: none !important;
  }
}

.interlink-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(18, 38, 30, 0.6);
  border: 1px solid rgba(46, 82, 67, 0.5);
  border-radius: var(--radius-md, 12px);
  text-decoration: none;
  color: #ffffff;
  transition: all 0.25s ease;
}

.interlink-card:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.interlink-card__emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.interlink-card__emoji img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

.interlink-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.interlink-card__title {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 0.90rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.interlink-card__date {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 0.78rem;
  font-weight: 600;
  color: #f59e0b;
  line-height: 1.2;
}

/* Ad Placement & Essentials 4x4 Grid Styling - Hidden for Google AdSense Compliance */
#block-essentials,
#ad-slot-1,
#ad-slot-2,
#ad-slot-sidebar,
.ad-placement-block,
.ad-placement-card,
.ad-placement-banner {
  display: none !important;
  margin: 0 !important;
}

#block-products-grid,
#block-essentials .product-grid,
#block-essentials .tradition-grid,
.essentials-grid-4x4,
.product-grid-4x4 {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1rem !important;
  width: 100% !important;
  margin-top: 1rem !important;
}

@media (max-width: 1024px) {
  #block-essentials .product-grid,
  #block-essentials .tradition-grid,
  .essentials-grid-4x4,
  .product-grid-4x4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  #block-essentials .product-grid,
  #block-essentials .tradition-grid,
  .essentials-grid-4x4,
  .product-grid-4x4 {
    grid-template-columns: 1fr !important;
  }
}

.product-card,
.essential-card {
  background: rgba(18, 38, 30, 0.75);
  border: 1px solid rgba(46, 82, 67, 0.6);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: all 0.25s ease;
  backdrop-filter: blur(12px);
}

.product-card:hover,
.essential-card:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 10px 25px -4px rgba(245, 158, 11, 0.25);
}

.product-card__emoji,
.essential-card__emoji {
  font-size: 2rem;
  line-height: 1;
}

.product-card__name,
.essential-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.product-card__price,
.essential-card__desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f59e0b;
}

.ad-placement-card {
  background: rgba(18, 38, 30, 0.75);
  border: 1px dashed rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

/* Sidebar Sponsored Ad Unit */
#ad-slot-sidebar {
  min-height: 280px !important;
  width: 100% !important;
  border-radius: var(--radius-lg, 24px) !important;
}

.ad-placement-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* ============================================================
   ALWAYS KEEP ALL 3 HEADER BUTTONS TRANSPARENT ON ALL PAGES
   ============================================================ */
body .top-controls-row .breadcrumb,
body .top-controls-row .breadcrumb-pill,
body .top-controls-row .header-search-picker,
body .top-controls-row .header-location-picker,
body .section-1 .breadcrumb,
body .section-1 .breadcrumb-pill,
body .section-1 .header-search-picker,
body .section-1 .header-location-picker {
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

body .header-search-input {
  background: transparent !important;
  background-color: transparent !important;
}

/* Scroll Indicator Global Transparency & Border Reset */
.scroll-indicator,
button.scroll-indicator {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* Around the World Slider Navigation & Center Dots */
.world-slider__nav {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 12px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  width: 100% !important;
}

.world-slider__dots {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 0 auto !important;
}

.world-slider__dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.3) !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.world-slider__dot.active {
  background: #f59e0b !important;
  width: 20px !important;
  border-radius: 9999px !important;
}

/* Ensure header location picker containers never clip dropdown lists and float above top bar strip */
.top-controls-row,
.home-header,
.section-1,
.header-location-picker {
  overflow: visible !important;
}

.section-1 .header-location-picker,
.top-controls-row .header-location-picker,
.home-header .header-location-picker,
.header-location-picker {
  position: relative !important;
  z-index: 99999 !important;
}

.section-1 .header-location-picker:focus-within,
.section-1 .header-location-picker:has(select[size="8"]),
.top-controls-row .header-location-picker:focus-within,
.top-controls-row .header-location-picker:has(select[size="8"]),
.home-header .header-location-picker:focus-within,
.home-header .header-location-picker:has(select[size="8"]),
.header-location-picker:focus-within,
.header-location-picker:has(select[size="8"]) {
  z-index: 999999 !important;
  overflow: visible !important;
  max-height: none !important;
}





/* ============================================================
   PREMIUM MOBILE FIRST REDESIGN OVERHAUL (@media (max-width: 900px))
   ============================================================ */
@media (max-width: 900px) {
  /* Prevent horizontal scroll bleed across all mobile devices */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  /* Section 1 Hero Mobile Centering & Spacing */
  .section-1 {
    min-height: 100dvh !important;
    height: 100dvh !important;
    padding: 0 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }

  .section-1__content {
    width: 100% !important;
    max-width: 500px !important;
    padding: 0 0.5rem !important;
    box-sizing: border-box !important;
  }

  .section-1 h1,
  .section-1 .holiday-title {
    font-size: clamp(1.8rem, 6.8vw, 2.6rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 0.75rem !important;
    text-align: center !important;
  }

  /* Location Badge Centering & Glow */
  .location-badge {
    margin: 0 auto 1.25rem auto !important;
    font-size: 0.8rem !important;
    padding: 6px 14px !important;
    max-width: 90% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Flip Countdown Timer Mobile Scaling */
  .countdown-wrapper {
    gap: clamp(4px, 2vw, 10px) !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
    width: auto !important;
    max-width: 440px !important;
    justify-content: center !important;
  }

  .flip-tile {
    width: clamp(34px, 9vw, 46px) !important;
    height: clamp(50px, 13vw, 68px) !important;
    border-radius: 8px !important;
  }

  .flip-tile__face {
    font-size: clamp(1.4rem, 5vw, 2.2rem) !important;
  }

  .countdown-item__label,
  .flip-label {
    font-size: clamp(0.65rem, 2.2vw, 0.75rem) !important;
    letter-spacing: 0.08em !important;
  }

  /* Section 2 Responsive Stack */
  .section-2 {
    padding: 2rem 1rem !important;
  }

  .section-2__inner {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 1.5rem !important;
    padding: 0 !important;
  }

  .content-main,
  .content-sidebar,
  .sidebar {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  /* Content Cards Premium Mobile Glass Styling */
  .content-block {
    padding: 1.35rem 1.1rem !important;
    border-radius: 18px !important;
    background: rgba(11, 25, 20, 0.75) !important;
    border: 1px solid rgba(245, 158, 11, 0.25) !important;
    backdrop-filter: blur(16px) !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .content-block__heading {
    font-size: 1.35rem !important;
    margin-bottom: 1rem !important;
  }

  /* Interlink Section Grid Redesign: 2x2 Grid on Mobile (<= 600px) */
  .holiday-interlink-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .holiday-interlink-grid .interlink-card:nth-child(n+5) {
    display: none !important;
  }

  .interlink-card {
    padding: 10px 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    border-radius: 12px !important;
    background: rgba(18, 38, 30, 0.75) !important;
    border: 1px solid rgba(46, 82, 67, 0.6) !important;
  }

  .interlink-card__info {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 2px !important;
    width: auto !important;
    margin-left: 0 !important;
  }

  .interlink-card__title {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.15 !important;
  }

  .interlink-card__date {
    font-size: 0.74rem !important;
    font-weight: 600 !important;
    color: #f59e0b !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  /* Around the World Header Alignment */
  .world-slider__header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  /* Responsive Timeline */
  .timeline {
    padding-left: 18px !important;
    border-left: 2px solid rgba(245, 158, 11, 0.4) !important;
  }

  .timeline__item {
    padding: 1rem !important;
    border-radius: 12px !important;
    margin-bottom: 1rem !important;
  }

  /* Footer Mobile Layout */
  .site-footer {
    padding: 3rem 1.25rem 2rem !important;
  }

  .site-footer__inner {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
    text-align: center !important;
  }

  .footer-col {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-description {
    text-align: center !important;
    max-width: 100% !important;
  }

  .footer-badge-pill {
    margin: 0 auto !important;
  }
}
