/* christmas.css — scoped page styles for Christmas Countdown */

/* variables */
:root {
  --x-accent: #ffd166;
  --x-accent2: #ef476f;
  --x-muted: #9fb3c8;
}

/* Page root */
.xmas-page {
  background: #fff;
  color: #fff;
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Snow layer */
#xmas-snow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}
.xmas-flake {
  position: absolute;
  background: white;
  border-radius: 50%;
  filter: blur(0.6px);
  opacity: 0.9;
  will-change: transform, opacity;
}

/* HERO section */
.xmas-hero {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height, 56px) + 18px) 20px 96px; /* ensures hero starts below header */
  overflow: hidden;
  box-sizing: border-box;
  transition: min-height 260ms ease, padding 260ms ease, border-radius 260ms ease, box-shadow 260ms ease;
}
.xmas-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  transform: translateZ(0);
}
.xmas-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.12));
  z-index: 1;
  pointer-events: none;
}

.xmas-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
  box-sizing: border-box;
  transform: translateY(-24px);
  transition: transform 260ms ease, max-width 260ms ease;
}

.xmas-title {
  font-size: clamp(34px, 4.4vw, 46px);
  line-height: 1.04;
  text-align: center;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.xmas-subtitle {
  color: var(--x-muted);
  font-weight: 600;
  margin-bottom: 14px;
  font-size: clamp(16px, 1.8vw, 18px);
}

/* Clock grid */
.xmas-clock {
  width: 100%;
  max-width: 672px;
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 156px));
  gap: 12px;
  align-items: center;
  justify-items: stretch;
  justify-content: center;
  margin-top: 6px;
  box-sizing: border-box;
}

.xmas-time-card {
  width: 100%;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  min-height: 116px;
  padding: 14px;
  border-radius: 14px;
  min-width: 0;
  box-sizing: border-box;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.xmas-value {
  display: block;
  min-width: 3ch;
  font-size: clamp(38px, 4.2vw, 46px);
  font-weight: 900;
  color: var(--x-accent);
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
[data-xmas-days-count],
[data-xmas-weeks-count],
[data-xmas-months-count] {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.x-label {
  font-size: 13px;
  color: var(--x-muted);
  margin-top: 6px;
}

.local-time-helper {
  min-height: 34px;
  max-width: min(560px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px auto 0;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 16, 36, 0.52);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  box-sizing: border-box;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  backdrop-filter: blur(8px);
}

/* celebrate button */
.xmas-controls {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.xmas-btn {
  background: linear-gradient(90deg, var(--x-accent), var(--x-accent2));
  color: #071024;
  border: none;
  border-radius: 12px;
  padding: 13px 30px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  font-size: 16px;
}
.xmas-btn:hover,
.xmas-icon-btn:hover {
  transform: translateY(-1px);
}
.xmas-btn:focus-visible,
.xmas-icon-btn:focus-visible,
.xmas-fullscreen-close:focus-visible,
.xmas-cta:focus-visible {
  outline: 3px solid rgba(255, 209, 102, 0.86);
  outline-offset: 3px;
}
.xmas-icon-actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.xmas-icon-btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 16, 36, 0.54);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.xmas-icon-btn:hover {
  background: rgba(7, 16, 36, 0.72);
  border-color: rgba(255, 255, 255, 0.45);
}
.xmas-icon-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.xmas-fullscreen-close {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 1800;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(7, 16, 36, 0.68);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.xmas-fullscreen-close span {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-top: -2px;
}
.xmas-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 2200;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(7, 16, 36, 0.92);
  color: #fff;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.xmas-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

html.xmas-fullscreen-active,
body.xmas-fullscreen-active {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}
body.xmas-fullscreen-active #site-header,
body.xmas-fullscreen-active #site-footer,
body.xmas-fullscreen-active .xmas-main {
  visibility: hidden;
}
body.xmas-fullscreen-active #xmas-snow {
  z-index: 1700;
}
body.xmas-fullscreen-active .xmas-hero {
  position: fixed;
  inset: 0;
  z-index: 1600;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding: max(18px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left)) !important;
  align-items: center;
  justify-content: center;
}
body.xmas-fullscreen-active .xmas-hero::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.34));
}
body.xmas-fullscreen-active .xmas-hero-inner {
  max-width: min(1120px, 94vw);
  transform: scale(1.02);
}
body.xmas-fullscreen-active .xmas-title {
  font-size: clamp(34px, 5.8vw, 76px);
}
body.xmas-fullscreen-active .xmas-subtitle {
  font-size: clamp(17px, 2.2vw, 24px);
}
body.xmas-fullscreen-active .xmas-clock {
  max-width: min(1020px, 94vw);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 20px);
}
body.xmas-fullscreen-active .xmas-time-card {
  min-height: clamp(104px, 16vw, 172px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 2.6vw, 30px);
}
body.xmas-fullscreen-active .xmas-value {
  font-size: clamp(42px, 9vw, 112px);
}
body.xmas-fullscreen-active .x-label {
  font-size: clamp(13px, 1.7vw, 19px);
}
body.xmas-fullscreen-active .xmas-quick-info {
  margin-bottom: 20px;
  font-size: clamp(16px, 1.8vw, 20px);
}
body.xmas-fullscreen-active .xmas-controls {
  margin-top: 34px;
}
body.xmas-fullscreen-active .xmas-fullscreen-close {
  display: inline-flex;
}
body.xmas-fullscreen-active #x-fullscreen {
  display: none;
}

/* main content */
.xmas-main {
  background: #f5f5f5;
  padding: 40px 16px 140px;
  z-index: 5;
  position: relative;
  box-sizing: border-box;
}
.xmas-content-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.xmas-about {
  background: rgba(10, 12, 14, 0.86);
  color: #e6eef6;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.03);
  line-height: 1.7;
}
.xmas-about h2 {
  color: #fff;
}
.xmas-section-heading {
  margin-top: 0;
}

/* responsive */
@media (max-width: 920px) {
  .xmas-hero { min-height: 105vh; }
  .xmas-clock {
    max-width: 620px;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }
  .xmas-time-card { min-height: 108px; }
  .xmas-value { font-size: clamp(36px, 4.8vw, 42px); }
}



/* accessibility: prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .xmas-flake { transition: none !important; animation: none !important; }
  .xmas-hero,
  .xmas-hero-inner,
  .xmas-toast,
  .xmas-icon-btn {
    transition: none !important;
  }
}

/* FAQ Section */
.xmas-faq-section{
  margin-top: 28px;
  background: rgba(10,12,14,0.86);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.03);
}

.xmas-faq-title{
  color:#fff;
  font-size:32px;
  margin-top:0;
  margin-bottom:20px;
  font-weight:800;
}

.xmas-faq-item{
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.xmas-faq-item:last-child{
  border-bottom:none;
}

.xmas-faq-item h3{
  margin:0 0 10px;
  color:#fff;
  font-size:20px;
  line-height:1.4;
}

.xmas-faq-item p{
  margin:0;
  color:#d7dee7;
  line-height:1.8;
}



.xmas-article-image{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
  margin:28px 0;
  border:4px solid rgba(255,255,255,0.92);
  overflow:hidden;
  box-sizing:border-box;
}
@media (max-width:720px){

  .xmas-hero{
    min-height: 100svh;
    padding-top:calc(var(--nav-height, 56px) + 10px);
    padding-bottom:42px;
  }

  .xmas-hero-inner{
    transform: translateY(-12px);
  }

  .xmas-title{
    font-size:clamp(30px, 8.5vw, 34px);
    margin-bottom:6px;
  }

  .xmas-subtitle{
    font-size:16px;
    margin-bottom:10px;
  }

  .xmas-clock{
    grid-template-columns:repeat(2,minmax(0, 146px));
    column-gap:12px;
    row-gap:14px;
    max-width:320px;
    justify-content:center;
  }

  .xmas-time-card{
    width: 100%;
    min-width: 0;
    min-height:94px;
    padding:12px;
    border-radius:12px;
  }

  .xmas-value{
    font-size:34px;
  }

  .xmas-controls{
    margin-top:20px;
  }

  .xmas-main{
    padding:24px 10px 100px;
  }

  .xmas-content-inner{
    padding:0;
  }

  .xmas-about{
    padding:24px 18px;
    border-radius:16px;
  }

  .xmas-about h2{
    font-size:30px;
    line-height:1.3;
    margin-bottom:18px;
  }

  .xmas-about p{
    font-size:18px;
    line-height:1.95;
    color:#edf2f7;
  }

  .xmas-faq-section{
    margin-top:22px;
    padding:22px 18px;
    border-radius:16px;
  }

  .xmas-faq-title{
    font-size:28px;
    line-height:1.3;
  }

  .xmas-faq-item h3{
    font-size:20px;
    line-height:1.5;
  }

  .xmas-faq-item p{
    font-size:17px;
    line-height:1.9;
  }
  
  .xmas-quick-info{
  font-size:15px;
  line-height:1.6;
  margin-bottom:14px;
}

  body.xmas-fullscreen-active .xmas-hero-inner {
    max-width: 100%;
    transform: none;
  }

  body.xmas-fullscreen-active .xmas-clock {
    max-width: calc(100vw - 32px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.xmas-fullscreen-active .xmas-time-card {
    min-width: 0;
  }

}

.xmas-quick-info{
  color:#edf2f7;
  text-align:center;
  max-width:720px;
  margin:0 auto 16px;
  line-height:1.6;
  font-size:16px;
  text-shadow:0 2px 10px rgba(0,0,0,0.35);
}

/* Supporting SEO page */
.xmas-info-page {
  background: #f6f8fb;
  color: #162033;
}
.xmas-info-page #site-header,
.xmas-info-page #site-footer {
  color: initial;
}
.xmas-info-main {
  background: #f6f8fb;
  color: #162033;
  padding: calc(var(--nav-height, 56px) + 34px) 16px 96px;
}
.xmas-info-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}
.xmas-seo-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: center;
  min-height: 360px;
  padding: 34px;
  border-radius: 18px;
  background: #102417;
  color: #fff;
  box-shadow: 0 16px 42px rgba(7, 16, 36, 0.18);
}
.xmas-seo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 24, 20, 0.92), rgba(8, 24, 20, 0.7) 48%, rgba(8, 24, 20, 0.28)), url("christmas-image.webp") center/cover;
}
.xmas-seo-hero > * {
  position: relative;
  z-index: 1;
}
.xmas-seo-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  color: var(--x-accent);
  font-weight: 800;
  letter-spacing: 0;
}
.xmas-seo-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: #fff;
}
.xmas-seo-copy {
  max-width: 640px;
  margin: 14px 0 0;
  color: #edf2f7;
  line-height: 1.65;
  font-size: 17px;
}
.xmas-days-callout {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.xmas-days-callout strong {
  color: var(--x-accent);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
}
.xmas-days-callout span {
  color: #fff;
  font-weight: 800;
}
.xmas-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 20px;
  padding: 0 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--x-accent), var(--x-accent2));
  color: #071024;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.xmas-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}
.xmas-mini-panel {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(7, 16, 36, 0.56);
  backdrop-filter: blur(10px);
}
.xmas-mini-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
}
.xmas-mini-countdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.xmas-mini-countdown div {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.46);
  text-align: center;
}
.xmas-mini-countdown strong {
  display: block;
  min-width: 3ch;
  color: var(--x-accent);
  font-size: 32px;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.xmas-mini-countdown span {
  margin-top: 8px;
  color: var(--x-muted);
  font-size: 13px;
  font-weight: 700;
}
.xmas-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.xmas-answer-card,
.xmas-info-card,
.xmas-related-card {
  border: 1px solid rgba(12, 34, 28, 0.1);
  border-radius: 14px;
  background: #fff;
  color: #162033;
  box-shadow: 0 12px 28px rgba(7, 16, 36, 0.08);
}
.xmas-answer-card {
  padding: 24px;
}
.xmas-answer-card span {
  display: block;
  color: #567;
  font-weight: 800;
  font-size: 14px;
}
.xmas-answer-card strong {
  display: block;
  margin-top: 8px;
  color: #0d2f22;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.xmas-info-section {
  margin-top: 34px;
}
.xmas-info-card {
  padding: 28px;
  line-height: 1.8;
}
.xmas-info-card h2 {
  margin: 0 0 14px;
  color: #0d2f22;
  font-size: 30px;
}
.xmas-info-card p {
  margin: 0 0 16px;
}
.xmas-info-card p:last-child {
  margin-bottom: 0;
}
.xmas-widget-card .xmas-mini-countdown {
  max-width: 620px;
  margin-top: 18px;
}
.xmas-widget-card .xmas-mini-countdown div {
  background: #102417;
}
.xmas-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.xmas-related-card {
  display: block;
  padding: 20px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.xmas-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(7, 16, 36, 0.12);
}
.xmas-related-card strong {
  display: block;
  color: #0d2f22;
  font-size: 18px;
}
.xmas-related-card span {
  display: block;
  margin-top: 8px;
  color: #5d6b7a;
  line-height: 1.5;
}
.xmas-info-page .xmas-faq-section {
  background: #fff;
  color: #162033;
  border: 1px solid rgba(12, 34, 28, 0.1);
  box-shadow: 0 12px 28px rgba(7, 16, 36, 0.08);
}
.xmas-info-page .xmas-faq-title,
.xmas-info-page .xmas-faq-item h3 {
  color: #0d2f22;
}
.xmas-info-page .xmas-faq-item {
  border-bottom-color: rgba(12, 34, 28, 0.1);
}
.xmas-info-page .xmas-faq-item p {
  color: #4f5f6f;
}

.xmas-info-page {
  --xmas-info-ink: #102033;
  --xmas-info-muted: #536273;
  --xmas-info-border: rgba(15, 45, 36, 0.1);
  --xmas-info-shadow: 0 18px 44px rgba(10, 30, 24, 0.1);
  --xmas-info-soft-shadow: 0 10px 28px rgba(10, 30, 24, 0.08);
  --xmas-info-green: #0d4f36;
  --xmas-info-red: #d93048;
  --xmas-info-gold: #ffd166;
}

.xmas-info-main {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 209, 102, 0.16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(239, 71, 111, 0.1), transparent 26%),
    linear-gradient(180deg, #f7f9fc 0%, #f3f6fa 100%);
}

.xmas-info-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.xmas-seo-hero {
  min-height: 430px;
  padding: clamp(28px, 4.5vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(11, 28, 22, 0.22);
  isolation: isolate;
}

.xmas-seo-hero::before {
  background:
    linear-gradient(100deg, rgba(8, 24, 20, 0.96), rgba(8, 24, 20, 0.72) 52%, rgba(8, 24, 20, 0.34)),
    url("christmas-image.webp") center/cover;
  transform: scale(1.01);
  z-index: 0;
}

.xmas-seo-hero::after {
  content: "";
  position: absolute;
  inset: auto 26px 26px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.18), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.xmas-seo-hero-copy {
  max-width: 690px;
}

.xmas-seo-eyebrow,
.xmas-section-kicker,
.xmas-related-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(255, 209, 102, 0.32);
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.12);
  color: var(--xmas-info-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.xmas-seo-eyebrow {
  padding: 9px 12px;
}

.xmas-seo-title {
  max-width: 680px;
  margin-top: 4px;
  text-wrap: balance;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.xmas-days-callout {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 32px rgba(0, 0, 0, 0.16);
}

.xmas-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.xmas-hero-actions .xmas-cta {
  margin-top: 0;
}

.xmas-ghost-cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.xmas-ghost-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.xmas-mini-panel {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(7, 16, 36, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 48px rgba(0, 0, 0, 0.2);
}

.xmas-mini-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.xmas-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.14);
}

.xmas-mini-title {
  margin-bottom: 0;
}

.xmas-mini-copy {
  margin: 8px 0 14px;
  color: rgba(237, 242, 247, 0.78);
  font-size: 0.94rem;
  line-height: 1.5;
}

.xmas-info-page .xmas-local-time-helper {
  width: 100%;
  max-width: 100%;
  margin-top: 14px;
  padding: 9px 12px;
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}

.xmas-info-grid {
  gap: 18px;
  margin-top: 28px;
}

.xmas-answer-card,
.xmas-info-card,
.xmas-related-card,
.xmas-planning-grid article {
  border-color: var(--xmas-info-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--xmas-info-soft-shadow);
}

.xmas-answer-card {
  position: relative;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.xmas-answer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--xmas-info-green), var(--xmas-info-red));
}

.xmas-answer-card:hover,
.xmas-related-card:hover,
.xmas-planning-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 79, 54, 0.2);
  box-shadow: var(--xmas-info-shadow);
}

.xmas-answer-label {
  color: var(--xmas-info-green);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.xmas-answer-card p {
  margin: 12px 0 0;
  color: var(--xmas-info-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.xmas-info-section,
.xmas-planning-section,
.xmas-info-page .xmas-faq-section {
  margin-top: clamp(34px, 5vw, 56px);
}

.xmas-info-card,
.xmas-info-page .xmas-faq-section,
.xmas-planning-section {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 24px;
  box-shadow: var(--xmas-info-shadow);
}

.xmas-section-heading-row {
  max-width: 760px;
  margin-bottom: 22px;
}

.xmas-section-kicker {
  margin: 0 0 12px;
  padding: 8px 11px;
  border-color: rgba(13, 79, 54, 0.16);
  background: rgba(13, 79, 54, 0.08);
  color: var(--xmas-info-green);
}

.xmas-section-heading-row h2,
.xmas-info-card h2,
.xmas-faq-title {
  margin: 0;
  color: var(--xmas-info-ink);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.12;
  text-wrap: balance;
}

.xmas-section-heading-row p {
  margin: 12px 0 0;
  color: var(--xmas-info-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.xmas-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.xmas-info-copy p {
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.78;
}

.xmas-info-note-card {
  padding: 20px;
  border: 1px solid rgba(13, 79, 54, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 79, 54, 0.07), rgba(255, 255, 255, 0.9));
}

.xmas-info-note-card > span {
  display: block;
  color: var(--xmas-info-green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.xmas-check-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.xmas-check-list li {
  position: relative;
  padding-left: 24px;
  color: #334155;
  line-height: 1.55;
}

.xmas-check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--xmas-info-red);
  box-shadow: 0 0 0 4px rgba(239, 71, 111, 0.12);
}

.xmas-planning-section {
  border: 1px solid var(--xmas-info-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 255, 0.96));
}

.xmas-planning-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.xmas-planning-grid article {
  padding: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.xmas-planning-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 209, 102, 0.28);
  color: #8a4d00;
  font-weight: 900;
}

.xmas-planning-grid h3 {
  margin: 16px 0 8px;
  color: var(--xmas-info-ink);
  font-size: 1.05rem;
}

.xmas-planning-grid p {
  margin: 0;
  color: var(--xmas-info-muted);
  line-height: 1.6;
}

.xmas-info-page .xmas-faq-section {
  border-color: var(--xmas-info-border);
}

.xmas-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.xmas-info-page .xmas-faq-item {
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(15, 45, 36, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(10, 30, 24, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.xmas-info-page .xmas-faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 79, 54, 0.18);
  box-shadow: var(--xmas-info-soft-shadow);
}

.xmas-info-page .xmas-faq-item h3 {
  margin-bottom: 10px;
  color: var(--xmas-info-ink);
  font-size: 1.08rem;
}

.xmas-info-page .xmas-faq-item p {
  color: var(--xmas-info-muted);
  line-height: 1.65;
}

.xmas-related-grid {
  gap: 16px;
}

.xmas-related-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
}

.xmas-related-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--xmas-info-green), var(--xmas-info-gold), var(--xmas-info-red));
}

.xmas-related-label {
  margin-bottom: 18px;
  padding: 7px 10px;
  border-color: rgba(13, 79, 54, 0.12);
  background: rgba(13, 79, 54, 0.08);
  color: var(--xmas-info-green);
}

.xmas-related-card strong {
  color: var(--xmas-info-ink);
  font-size: 1.12rem;
  line-height: 1.25;
}

.xmas-related-card span:not(.xmas-related-label) {
  color: var(--xmas-info-muted);
  line-height: 1.6;
}

.xmas-related-card em {
  margin-top: auto;
  padding-top: 18px;
  color: #005eea;
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 860px) {
  .xmas-seo-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }
  .xmas-info-grid,
  .xmas-related-grid,
  .xmas-faq-grid,
  .xmas-info-layout {
    grid-template-columns: 1fr;
  }
  .xmas-planning-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .xmas-info-main {
    padding-inline: 12px;
    padding-bottom: 72px;
  }
  .xmas-seo-hero,
  .xmas-info-card,
  .xmas-info-page .xmas-faq-section,
  .xmas-planning-section {
    border-radius: 18px;
  }
  .xmas-hero-actions,
  .xmas-hero-actions .xmas-cta,
  .xmas-ghost-cta {
    width: 100%;
  }
  .xmas-days-callout {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .xmas-mini-countdown {
    gap: 8px;
  }
  .xmas-mini-countdown div {
    min-height: 76px;
  }
  .xmas-mini-countdown strong {
    font-size: 28px;
  }
  .xmas-planning-grid {
    grid-template-columns: 1fr;
  }
}
