/** Shopify CDN: Minification failed

Line 1685:35 Unexpected "*"

**/
/* Advent Calendar Daily Reveal Section Styles */

/* Anchor links for page navigation - hidden visually but functional */
.anchor-link {
  display: block;
  height: 0;
  overflow: hidden;
  position: relative;
}

/* Color Variables - Update these to change colors throughout the calendar */
:root {
  --day-selector-default-bg: #6a6a6a;
  --day-selector-max-day-desktop-bg: #c41e3a;
  --day-selector-max-day-mobile-bg: #c41e3a;
  --day-selector-button-active-bg: #aa0000;
  --day-selector-button-selected-bg: #aa0000;
  --day-selector-button-hover-bg: #aa0000;
  --day-selector-left-right-margin: #c41e3a;
  --header-h: 122px;
  --page-h: calc(100svh - var(--header-h));
  --daily-video-height: 0.85;
  --announce-height: 34px;
  --day-overview-border-color: #333333;
  --scrollbar-width: 17px; /* Typical scrollbar width */
  
  /* Button Color Variables */
  --button-primary-bg: #E2C465;
  --button-primary-bg-hover: #b8941f;
  --button-primary-bg-disabled: #999;
  --button-primary-text: #333;
  --button-primary-text-hover: #000;
  
  /* Error Color Variables */
  --error-color: #d32f2f;
  
  /* Color Variables */
  --dark-bronze: #554c3b;
}

@media (max-width: 768px) {
  :root { --header-h: 132px; }        /* mobile header */
}

/* override the chat container from appearing on this page */
#gorgias-chat-container {
  display: none !important;
}

/* Section-specific styles moved from Liquid file */
#daily_calendar {
  z-index: 999;
}



/* Screen reader only class for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {  
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  scroll-padding-top: var(--header-h);
}

/* Background color originates from schema via --page-background-color (set inline in sections/advent-calendar-daily.liquid) */
html, body {
  background-color: var(--page-background-color);
  height: auto; 
  min-height: 100%; 
  margin: 0; 
}

@supports (height: 100dvh) { html, body { min-height: 100dvh; } }

/* this is a parent of this template, the scroll snap effect will not work if this is a flex container */
#wrapper {
  display: block;        /* temporarily disable flex */
}

/* If you must keep #main-content as flex: */
#main-content {
  overflow: visible;      /* was important */
  display: block;        /* reset from flex to block */
  min-height: 100vh;      /* ensures it spans the viewport */
  /* Background color defined via --page-background-color inline in Liquid */
  background-color: var(--page-background-color);
}


/* override the 1px border bottom on the header for advent calendar */
.header {
  border-bottom: none;
}

/* Scroll snap sections - each takes full viewport height */
#coming-soon-video,
#start-video,
#snow-container,
.day-overview-outer,
.map-outer,
#explore-and-feedback, 
.preorder-section,
.celestial-outer {
  min-height: var(--page-h);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow-x: hidden;
  position: relative;
}

/* Debug outline for scroll snap sections (remove in production) */
/* Turn off these elements until the AC data has been loaded and it is past Dec 1st */
:is(#daily-video-section, #day-overview-section, #map-section, #explore-more-section, #celestial-section, #daily_feedback_section) { 
  /*outline: 2px dashed hotpink;*/
  display: none;
}

.daily_reveal_review {
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}


/* Day Overview Section */
.day-overview-outer {
  background-color: #212121;
  color: white;
  margin-left: calc(-50vw + 50%);
  position: relative;
  border-top: 1px solid var(--day-overview-border-color);
  border-bottom: 1px solid var(--day-overview-border-color);
  min-height: var(--page-h);
}

.day-overview-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.day-overview-top-row {
  display: flex;
  min-height: calc(20svh - var(--header-h));
  position: relative; /* Ensure proper stacking context */
}

.day-overview-border {
  width: 100%;
  height: 1px;
  background-color: var(--day-overview-border-color);
  margin-left: calc(-50vw + 50%);
}

.day-overview-cell {
  flex: 1;
  max-width: 480px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 0px solid var(--day-overview-border-color);
  text-align: center;
}

.day-overview-cell:last-child {
  border-right: none;
}

.day-overview-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.day-overview-header {
  font-family: SAF, "Saa Series F D";
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 0px;
  letter-spacing: 0.5px;
  color: var(--dark-bronze);
}

.day-overview-title {
  font-family: "Garamond Premier Pro", serif;
  font-size: 24px;
  text-align: center;
  line-height: 1.2;
}

#day-overview-flavor-notes {
  font-style: italic;
}

.day-overview-bottom-row {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative; /* Ensure proper stacking context */
  margin-top: 0; /* Ensure no negative margin pulls it up */
  padding-top: 20px;
}

.day-overview-notes {
  padding: 10px;
  text-align: center;
  max-width: 100%;
  order: 2;
  position: relative; /* Ensure it stays in normal flow, not absolutely positioned */
}

.day-overview-notes-header {
  font-family: SAF, "Saa Series F D";
  font-size: 13px;
  text-transform: uppercase;
  padding-bottom: 20px;
  letter-spacing: 0.5px;
  text-align: center;
}

.day-overview-collaborator-image {
  text-align: center;
  padding-bottom: 20px;
  position: relative; /* Ensure it stays in normal flow, not absolutely positioned */
  order: 1; /* Ensure it appears first in the bottom row (before notes) */
}

.collaborator-portrait-image {
  max-width: 600px;
  max-height: 40svh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  box-sizing: border-box;

}

.day-overview-notes-text {
  font-family: "Garamond Premier Pro", serif;
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Decorative quotation mark for desktop only */
@media screen and (min-width: 769px) {
  .day-overview-notes-text::before {
    content: '';
    position: absolute;
    left: -80px;
    top: -20px;
    width: 60px;
    height: 60px;
    background-image: url('/cdn/shop/files/Recipe_Quotations.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
  }
}

/* Mobile Portrait Layout */
@media (max-width: 768px) and (orientation: portrait) {
  .day-overview-top-row {
    flex-direction: column;
    height: auto;
  }
  
  .day-overview-cell {
    height: 15vh;
    border-right: none;
    border-bottom: 1px solid var(--day-overview-border-color);
    max-width: none;
    padding: 5px 0px;
  }
  
  .day-overview-cell {
    border-bottom: none;
  }
  
  .day-overview-bottom-row {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
  }
  
  .day-overview-header {
    display: none;
  }

  .day-overview-title {
    font-size: 19px;
  }

  #day-overview-confection {
    padding-top: 10px;
    font-size: 28px; /* 80% of 24px */
  }


  .day-overview-notes-header {
    font-size: 11px; /* 80% of 13px */
  }

  .day-overview-notes {
    padding: 0px 20px;
  }
  
  .day-overview-notes-text {
    font-size: 18px; 
    text-align: left;/* 80% of 28px */
    line-height: 1.6;
  }
  
  .collaborator-portrait-image {

    max-width: min(90vw, 300px); /* Smaller on mobile, but never exceed viewport */
    max-height: min(30vh, 300px); /* Responsive height that shrinks on small screens */
 
  }
  
  .day-overview-icon {
    display: none;
  }
}

/* Map Section */
.map-outer {
  margin-left: calc(-50vw + 50%);
  background-image: url('/cdn/shop/files/Gold_Bg.jpg?v=1760049983');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--page-h);
}

.map-container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  margin: 0 auto;
  width: 100%;
}





.map-content {
  flex: 1;
  width: 50%;
}

.collaborator-name-heading {
  font-family: "Garamond Premier Pro", serif;
  font-size: 40px;
  font-weight: normal;
  color: #333;
  margin: 0 0 30px 0;
  text-align: left;
  line-height: 1.2;
  text-transform: none;
}

.north-america-map {
  position: relative;
  width: 50%;
  height: 647px;
  margin-top: 80px; /* Specific height for your design */
}

.map-img {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  /*object-fit: contain; 
  width: 100%;
  height: 100%;
  */ /* This will maintain aspect ratio */
}

.map-star {
  position: absolute;
  line-height: 0; /*make sure the div doesn't add extra height */
  z-index: 10;
  pointer-events: none;
  transform: scale(0);
  transition: transform 0.5s ease-out;
}

.map-star.animate-in {
  transform: scale(1);
}

.star-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}



.collaborator-info-table {
  margin-bottom: 30px;
}

.info-row {
  display: flex;
  margin-bottom: 8px;
}

.info-label {
  flex: 0 0 28%;
  text-align: left;
  font-family: SAF, "Saa Series F D", sans-serif;
  font-size: 16px;
  color: #333;
  padding-right: 15px;
  letter-spacing: 1.2px;
}

.info-value {
  flex: 0 0 72%;
  text-align: left;
  font-family: SAF, "Saa Series F D", sans-serif;
  font-size: 16px;
  color: #333;
  padding-left: 15px;
  letter-spacing: 1.2px;
}

.collaborator-bio {
  font-family: "Garamond Premier Pro", serif;
  font-size: 22px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  text-align: left;
}

.learn-more-link {
  color: inherit;
  text-decoration: underline;
  font-family: SAF, "Saa Series F D", sans-serif;
  font-size: 16px;
  letter-spacing: 1.2px;
  margin: 20px 0;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.learn-more-link:hover {
  opacity: 0.7;
}

/* ===============================
   Explore + Feedback two-column section
   =============================== */

/* Outer section (#explore-and-feedback) still participates in scroll snapping
   via the earlier group selector; nothing special needed here. */

#explore-and-feedback {
  background-color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner content wrapper: constrained to 1200px */
#explore-and-feedback > .daily-two-col {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Left column: dark panel with explore copy + feedback */
#explore-and-feedback .daily-two-col__left {
  flex: 1 1 67%;
  max-width: 67%;
  background-color: #111111;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Right column: image */
#explore-and-feedback .daily-two-col__right {
  flex: 1 1 33%;
  max-width: 33%;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* comment back in border-radius and aspect-ratio for circular image */
.daily-treat-img-wrap {
  width: 100%;         /* 100% of the 33% right column */
  overflow: hidden;    /* ensures clipping */
  /*border-radius: 50%; */ /* makes the container circular */
  /*aspect-ratio: 3 / 4; /* makes the images similar to hide images with different sizes in the cdn */
}

#explore-and-feedback .daily-treat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* fill the square */
  object-position: bottom;  /* position from bottom to show important content at bottom */
  display: block;
}

/* Make Explore More behave like plain text inside the left column */
#explore-and-feedback .explore-more-outer {
  margin-left: 0;
  background: none;
}

#explore-and-feedback .explore-more-container {
  max-width: none;
  width: 100%;
  display: block;
  padding: 0;
  min-height: auto;
}

#explore-and-feedback .explore-more-content {
  width: 100%;
}

/* Image for Explore More lives in the right column now, so hide the old inner image block */
#explore-and-feedback .explore-more-image {
  display: none;
}

/* Feedback panel inside this section should inherit the dark background,
   but not behave as its own scroll-snap section */
#explore-and-feedback .daily_reveal_review {
  background-color: transparent;
  margin-left: 0;
  padding: 0;
  min-height: auto !important;
  scroll-snap-align: unset !important;
  scroll-snap-stop: unset !important;
}

/* Left column content should be left-aligned */
#explore-and-feedback .feedback-text {
  text-align: left;
}

#explore-and-feedback .feedback-form-container {
  align-items: flex-start;
}

/* Mobile / narrow layout */
@media (max-width: 768px) {

  /* disable scroll snapping for mobile */
  html {
    scroll-snap-type: none;
    scroll-padding-top: 0; /* optional: removes snap offset for header */
  }

  #explore-and-feedback > .daily-two-col {
    flex-direction: column;
    max-width: 100%;
  }

  /* Show the image first on mobile */
  #explore-and-feedback .daily-two-col__right {
    order: -1;
    max-width: 100%;
  }

  #explore-and-feedback .daily-two-col__left {
    max-width: 100%;
    padding: 40px 20px;
  }
}


/* Explore More Section */
.explore-more-outer {
  margin-left: calc(-50vw + 50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #111111;
}

.explore-more-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center; /* Vertically centered (unlike collaborator section) */
  gap: 40px;
  margin: 0 auto;
  padding: 60px 40px;
}

.explore-more-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.explore-more-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-more-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.explore-more-title {
  font-family: "Garamond Premier Pro", serif;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px 0;
  text-align: left;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0.06em;
}

.explore-more-description {
  font-family: "Garamond Premier Pro", serif;
  font-size: 22px;
  line-height: 1.6;
  color: #fff;
  margin: 0px;
  text-align: left;
}


/* Shared Button Styles */
.btn-primary {
  display: block;
  background-color: var(--button-primary-bg);
  color: var(--button-primary-text);
  font-family: SAF, "Saa Series F D", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 32px;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  padding: 15px 30px;
  max-width: 375px;
}

.btn-primary:hover {
  background-color: var(--button-primary-bg-hover);
  color: var(--button-primary-text-hover);
  transform: translateY(-2px);
}

.preorder-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: var(--page-h);
}

.preorder-button {
  margin: 0 auto;
}

.explore-more-button {
  margin-top: 20px;
}

.explore-more-button-container {
  display: block;
  width: 100%;
}

/* Center the Order More button in the right column */
#explore-and-feedback .daily-two-col__right .explore-more-button-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 5px;
}

/* Order More button in right column - use default btn-primary yellow styling */
#explore-and-feedback .daily-two-col__right .explore-more-button-container .btn-primary {
  width: 100%;
  max-width: 100%;
}

/* Mobile-only preorder button - hidden on desktop */
.explore-more-button-container--mobile-only {
  display: none;
}

/* Stretch both columns to same height */
.daily-two-col {
  display: flex;
  align-items: stretch;
}



/* Right image */
.daily-treat-img {
  width: 100%;
  height: auto;
  display: block;
}


.bottom_info {
  background-color: #FFFFFF;
}

/* Celestial Section */
.celestial-outer {
  background-color: #000000;
}

.celestial-container {
  width: 100%;
  display: flex;
  min-height: var(--page-h);
}

.celestial-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 60px 40px;
}

.celestial-text-section {
  max-width: 550px;
  width: 100%;
}

.celestial-image {
  width: 50%;
  position: relative;
  overflow: hidden;
  height: var(--page-h);
}

.celestial-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: none; /* Hidden by default, shown via JavaScript when video source is available */
}

.celestial-img {
  /*position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 400%;
  object-fit: cover;
  transform-origin: top left;*/
  max-width: none;
}

.celestial-title {
  font-family: "Garamond Premier Pro", serif;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px 0;
  text-align: left;
}

.celestial-description {
  font-family: "Garamond Premier Pro", serif;
  font-size: 22px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 30px 0;
  text-align: left;
}

/* Mobile-only celestial image - hidden on desktop */
.celestial-image-mobile {
  display: none;
}

/* Mobile Portrait Layout */
@media (max-width: 768px) and (orientation: portrait) {
  
  .btn-primary {
    display: block;
    width: 100%;
    max-width: none;
  }

  .map-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    height: 100%;
  }
  
  .explore-more-container {
    flex-direction: column-reverse; /* Image first, then text on mobile */
    gap: 20px;
    overflow: hidden;
    padding: 0;
  }
  
  .explore-more-content {
    width: 100%;
    max-height: none;
    display: flex;
    align-items: start;
    justify-content: start;
    padding-bottom: 20px;
  }
  
  .explore-more-image {
    position: relative;
    top: -200px;/* this forces a square image by trimmming off the top -200px so the treat is always in view*/
    margin-bottom: -200px;
    width: 100%;
    overflow: hidden;
  }

  .explore-more-title {
    font-size: 36px;
    text-align: left;
   
    margin-bottom: 0px;
  }
  
  .explore-more-description {
    font-size: 18px;
    text-align: left;
  }

  .explore-more-button-container {
    display: block;
    width: 100%;
  }

  /* Show mobile-only preorder button on mobile portrait */
  .explore-more-button-container--mobile-only {
    display: block;
    width: 100%;
    margin-top: 20px;
  }

  .daily-two-col {
    flex-direction: column;
  }

  .daily-two-col__right {
    order: -1; /* show image first on mobile */
  }

  /* Mobile portrait: hide right column entirely */
  #explore-and-feedback .daily-two-col__right {
    display: none;
  }
  
  .collaborator-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  
  .map-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
  }
  
  
  .collaborator-info-table {
    margin-bottom: 20px;
  }
  
  .info-label {
    font-size: 14px;
    padding-right: 10px;
  }
  
  .info-value {
    font-size: 14px;
    padding-left: 10px;
  }
  
  .collaborator-bio {
    font-size: 18px;
    text-align: left;
  }
  
  .collaborator-name-heading {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .north-america-map {
    margin-bottom: 0;
    margin-top: 0;
    height: 30vh; /* 30% of viewport height on mobile */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .map-img {
    position: static; /* Override absolute positioning on mobile */
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }
  
  .celestial-container {
    flex-direction: column;
  }
  
  /* Show mobile-only image at top, similar to map image containment */
  .celestial-image-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30vh; /* 30% of viewport height on mobile, similar to map */
    overflow: hidden;
    margin-top: 40px;
  }
  
  .celestial-image-mobile .celestial-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  .celestial-content {
    width: 100%;
    align-items: flex-start;
    padding: 20px;
  }
  
  .celestial-text-section {
    max-width: none;
  }
  
  .celestial-image {
    display: none;
  }
  
  .celestial-video {
    display: none !important; /* Always hide video on mobile */
  }
  
  .celestial-title {
    font-size: 36px;
    text-align: left;
  }
  
  .celestial-description {
    font-size: 18px;
    text-align: left;
  }
  
  .feedback-toggle-buttons {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 335px;
    gap: 10px;
  }
  
  .feedback-toggle-btn {
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .preorder-button {
    padding-top: 2p0x;
  }

}

/* Base desktop styles for feedback form - mobile styles override these */
.feedback-character-count {
  font-size: 12px;
  color: var(--dark-bronze);
  font-family: "Garamond Premier Pro", serif;
  position: relative;
  top: -10px;
}

.feedback-submit-button {
  margin-top: -10px;
  padding-left: 100px;
  padding-right: 100px;
  max-width: 400px;
  line-height: 22px;
}

.feedback-submit-button:disabled {
  background-color: var(--button-primary-bg-disabled);
  cursor: not-allowed;
}

.feedback-submit-button svg {
  width: 18px;
  height: 18px;
}

.feedback-text {
  width: 100%;
  margin: auto;
  display: block;
  color: #fff;
}

h3.feedback-text {
  padding-top: 15px;
}

p.feedback-text {
  font-style: italic;
}

/* Narrow Browser Window Layout - same as mobile portrait */
@media (max-width: 768px) {
  
  .map-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    height: 100%;
  }  
  
  .collaborator-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  
  .map-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
  }
  
 
  
  .collaborator-name-heading {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .north-america-map {
    margin-bottom: 0;
    height: 30vh; /* 30% of viewport height on mobile */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .map-img {
    position: static; /* Override absolute positioning on mobile */
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  /* Show mobile-only celestial image at top, similar to map image containment */
  .celestial-image-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30vh; /* 30% of viewport height on mobile, similar to map */
    overflow: hidden;
  }
  
  .celestial-image-mobile .celestial-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  .celestial-container {
    flex-direction: column;
  }
  
  .celestial-content {
    width: 100%;
    align-items: flex-start;
    padding: 20px;
  }
  
  .celestial-text-section {
    max-width: none;
  }
  
  .celestial-image {
    display: none;
  }
  
  .celestial-video {
    display: none !important; /* Always hide video on mobile */
  }
  
  .celestial-title {
    font-size: 36px;
    text-align: left;
  }
  
  .celestial-description {
    font-size: 18px;
    text-align: left;
  }
  
  .day-overview-icon {
    display: none;
  }
  
  .feedback-text {
    width: 100%;
    margin: auto;
    display: block;
    color: #fff;
  }

  .feedback-toggle-buttons {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
    width: 100% !important;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .feedback-toggle-btn {
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .feedback-form-container {
    width: 100%;
    align-items: center !important;
    margin-left: auto;
    margin-right: auto;
  }
  
  .feedback-form-wrapper {
    width: 100% !important;
    height: 250px !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    margin-right: auto;
  }
  
  .feedback-textarea {
    padding: 15px;
    font-size: 14px;
  }
  
  
  .feedback-character-count {
    font-size: 11px;
  }
  
  .feedback-submit-button {
    width: 100%;
    max-width: none;
    padding: 15px 30px;
    align-self: stretch;
  }
  
}

/* Daily Video Section - Full Width */
.daily-video-container {
  margin-left: calc(-50vw + 50%);
  position: relative;
  overflow: hidden;
  /* Base color matches schema-defined page background (set inline via --page-background-color) */
  background-color: var(--page-background-color);
  background-image: url('/cdn/shop/files/starry-background-anim.gif?v=1760553779');
  background-position: center;
  background-repeat: repeat;
  height: calc(var(--page-h) * var(--daily-video-height));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* container controls the aspect ratio; iframe will crop */
.daily-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Desktop: square aspect ratio */
}

/* Desktop: Position video at bottom to show controls */
.daily-video-wrapper iframe {
  position: absolute;
  inset: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  /*height: var(--page-h);*/
  height: calc(var(--page-h) * var(--daily-video-height));
  border: 0;
  object-fit: cover;
  object-position: bottom;
}

/* Safari Desktop Overlay Shield - intercepts scroll events */
.daily-video-overlay-shield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%; /* Cover top 90%, leave bottom 10% for controls */
  z-index: 2; /* Above iframe (z-index: 1 or default) */
  background-color: transparent;
  cursor: pointer;
  display: none; /* Hidden by default, shown only for Safari desktop */
  pointer-events: auto; /* Intercept all pointer events */
}

/* Show overlay only on Safari desktop */
body.is-safari-desktop .daily-video-overlay-shield {
  display: block;
}

/* Hide overlay when video is activated (user clicked) */
.daily-video-wrapper.is-active .daily-video-overlay-shield {
  display: none;
}

/* mobile landscape: switch to 16:9 when rotated, but limit height for header */
@media (max-width: 768px) and (orientation: landscape) {
  .daily-video-wrapper { 
    aspect-ratio: 16 / 9; 
    height: 75vh;    /* limit to 75% of viewport height to account for header */
  }
  
  .daily-video-wrapper.square-cover iframe {
    width: 100%;     /* reset to normal width */
    left: 0;         /* reset left offset */
  }
}

/* mobile portrait: use square-cover technique */
@media (max-width: 768px) and (orientation: portrait) {

  .daily-video-wrapper {
    aspect-ratio: 1 / 1; /* Square aspect ratio for mobile portrait */
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: var(--page-h); */
    /* Full viewport height */
  }

  .daily-video-container {
    height: auto;
  }

  .daily-video-wrapper.square-cover iframe {
    width: 177.78%;   /* 16:9 -> 9/16 = 0.5625; 1 / 0.5625 = 177.78% */
    height: 100%;
    left: -38.89%;    /* (177.78 - 100) / 2 */
  }
}


/* ============================================================================
   COMING SOON VIDEO - HTML5 Background Video Styles
   ============================================================================
   This section styles the Coming Soon video, which uses native HTML5 <video>
   element instead of Vimeo iframe. This video always plays as a background
   decorative element and does NOT use IntersectionObserver or Vimeo API.
   
   For maintenance: These styles are specific to Coming Soon video only.
   Start Video and Daily Reveal videos use different styles (see below).
   ============================================================================ */

/* Coming Soon Video Section - Container (background color driven by Liquid setting via --coming-soon-video-background, falling back to --page-background-color) */
#coming-soon-video {
  background-color: var(--coming-soon-video-background, var(--page-background-color));
  width: 100%;
  margin-left: calc(-50vw + 50%);
  padding: 0;
  text-align: center;
  overflow: hidden; /* Clip oversized video */
  position: relative; /* For absolute positioning of video and overlay */
}

/* Coming Soon Video Wrapper */
#coming-soon-video .coming-soon-video-wrapper {
  position: absolute;
  top: 0; /* Wrapper stays at top, video element handles positioning */
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Coming Soon HTML5 Video Element */
#coming-soon-video .coming-soon-video {
  position: absolute;
  top: var(--coming-soon-video-top, 0); /* Use negative values to shift video up, positive to shift down */
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintain aspect ratio, fill container */
  z-index: 1; /* Behind overlay content */
}

/* Desktop: Full width mode - video fills container width, height determined by aspect ratio */
#coming-soon-video.video-full-width-desktop .coming-soon-video-wrapper {
  height: auto;
  aspect-ratio: 16 / 9; /* 16:9 aspect ratio */
}

#coming-soon-video.video-full-width-desktop .coming-soon-video {
  position: relative;
  object-fit: contain; /* Show full video in full-width mode */
}

/* ============================================================================
   START VIDEO - Vimeo Iframe Styles (Interactive Video)
   ============================================================================
   This section styles the Start Video, which uses Vimeo iframe embed.
   This video uses IntersectionObserver to play/pause based on visibility.
   ============================================================================ */

/* Start Video Section - Full Width Background (background color sourced from Liquid via --start-video-background, falling back to --page-background-color) */
#start-video {
  background-color: var(--start-video-background, var(--page-background-color));
  width: 100%;
  margin-left: calc(-50vw + 50%);
  padding: 0;
  text-align: center;
  overflow: hidden; /* Clip oversized video wrapper */
  min-height: var(--page-h, 100vh); /* Ensure container has height for signup form below */
  position: relative; /* Establish positioning context */
}

/* Video wrapper - positioned using CSS custom properties */
#start-video .vimeo-hero-wrapper {
  max-width: none;
  padding: 0;
  margin: 0;
  position: absolute;
  /* Width and positioning set via CSS custom properties in media queries */
  /* Using absolute positioning so it doesn't expand the container height */
}

/* Desktop: Video wrapper top position */
#start-video .start-video-positioned {
  width: 100%;
  top: var(--video-top-desktop, 0);
  left: 0;
}

/* Video aspect ratio container - constrained to not exceed parent height */
#start-video .video-aspect-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* 16:9 aspect ratio */
  overflow: hidden;
  /* Constrain height to not exceed var(--page-h) - use min to ensure it doesn't grow beyond container */
  max-height: var(--page-h);
  height: auto;
}

/* Desktop: Full width mode - remove height constraint when enabled */
#start-video.video-full-width-desktop .video-aspect-container {
  max-height: none; /* Remove height constraint, let aspect-ratio determine height */
  height: auto; /* Height determined by width and aspect-ratio */
}

/* Mobile: Coming Soon Video */
@media screen and (max-width: 768px) {
  /* Coming Soon Video Wrapper - Mobile */
  #coming-soon-video .coming-soon-video-wrapper {
    top: 0; /* Wrapper stays at top, video element handles positioning */
  }
  
  /* Coming Soon Video Element - Mobile (uses same top value as desktop) */
  #coming-soon-video .coming-soon-video {
    top: var(--coming-soon-video-top, 0); /* Use negative values to shift video up, positive to shift down */
  }
  
  /* Mobile Portrait: Square container, full page height */
  @media (orientation: portrait) {
    #coming-soon-video .coming-soon-video-wrapper {
      height: var(--page-h);
      width: 100%;
    }
    
    #coming-soon-video .coming-soon-video {
      object-fit: cover; /* Fill square container */
    }
    
    /* Mobile Portrait: Full width mode */
    #coming-soon-video.video-full-width-mobile .coming-soon-video-wrapper {
      height: auto;
      aspect-ratio: 16 / 9;
    }
    
    #coming-soon-video.video-full-width-mobile .coming-soon-video {
      object-fit: contain;
    }
  }
  
  /* Mobile Landscape: Maintain 16:9 aspect ratio */
  @media (orientation: landscape) {
    #coming-soon-video .coming-soon-video-wrapper {
      height: var(--page-h);
      width: 100%;
    }
    
    #coming-soon-video .coming-soon-video {
      object-fit: cover;
    }
    
    /* Mobile Landscape: Full width mode */
    #coming-soon-video.video-full-width-mobile .coming-soon-video-wrapper {
      height: auto;
      aspect-ratio: 16 / 9;
    }
    
    #coming-soon-video.video-full-width-mobile .coming-soon-video {
      object-fit: contain;
    }
  }
}

/* Mobile: Start Video (Vimeo Iframe) */
@media screen and (max-width: 768px) {
  #start-video .start-video-positioned {
    width: 100%;
    top: var(--video-top-mobile, 0);
    left: 0;
  }
  
  /* Mobile default: Override base desktop aspect-ratio for mobile */
  #start-video .video-aspect-container {
    aspect-ratio: 1 / 1; /* Default to square for mobile portrait */
    height: var(--page-h); /* Set height first */
    width: auto; /* Let width be determined by height and aspect-ratio */
    max-height: none;
    position: relative;
    left: 50%; /* Center horizontally if narrower than viewport */
    transform: translateX(-50%);
  }
  
  /* Mobile default: Oversize iframe for square container */
  #start-video .video-aspect-container iframe {
    width: 177.78% !important;
    height: 100% !important;
    left: -38.89% !important;
  }
  
  /* Mobile Landscape: Maintain 16:9 aspect ratio */
  @media (orientation: landscape) {
    #start-video .video-aspect-container {
      height: var(--page-h);
      width: auto; /* Width determined by aspect-ratio and height */
      aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
      max-height: none; /* Override max-height constraint */
      /* Center horizontally when video is wider than viewport */
      position: relative;
      left: 50%;
      transform: translateX(-50%);
    }
    
    #start-video .video-aspect-container iframe {
      width: 100% !important;
      left: 0 !important;
    }
    
    /* Mobile Landscape: Full width mode - video is 100% width, height determined by aspect-ratio */
    #start-video.video-full-width-mobile .video-aspect-container {
      width: 100%; /* Full width of viewport */
      height: auto; /* Height determined by width and aspect-ratio */
      aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
      max-height: none; /* Remove height constraint */
      /* Reset positioning for full width mode */
      left: 0;
      transform: none;
    }
  }
  
  /* Mobile Portrait: Use square-cover technique (similar to .daily-video-wrapper) */
  @media (orientation: portrait) {
    /* Default: Square container, full page height */
    #start-video .video-aspect-container {
      aspect-ratio: 1 / 1; /* Square aspect ratio for mobile portrait */
      height: var(--page-h); /* Full viewport height */
      width: auto; /* Let width be determined by height and aspect-ratio */
      max-height: none;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      left: 0;
      transform: none;
    }
    
    /* Oversize iframe to fill square container (16:9 video in 1:1 container) */
    #start-video .video-aspect-container iframe {
      width: 177.78% !important; /* 16:9 -> 9/16 = 0.5625; 1 / 0.5625 = 177.78% */
      height: 100% !important;
      left: -38.89% !important; /* (177.78 - 100) / 2 */
    }
    
    /* Mobile Portrait: Full width mode - video is 100% width, height determined by 16:9 aspect-ratio */
    #start-video.video-full-width-mobile .video-aspect-container {
      width: 100%; /* Full width of viewport */
      height: auto; /* Height determined by width and aspect-ratio */
      aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
      max-height: none; /* Remove height constraint */
    }
    
    #start-video.video-full-width-mobile .video-aspect-container iframe {
      width: 100% !important;
      left: 0 !important;
    }
  }
}

/* Coming Soon Overlay Image - Centered */
.coming-soon-overlay-image,
.start-video-overlay-image {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  width: auto; /* Let JavaScript or percentage width control the size */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain;
  /* Ensure image doesn't clip on small screens - responsive max-width */
  max-width: min(600px, calc(100vw - 40px)); /* Never exceed viewport width minus padding */
  max-height: 600px; /* Limit height */
}

/* Klaviyo Signup Form - Bottom Floating */
.klaviyo-signup-form {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 15;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  
  /* CSS Isolation - Reset all inherited styles */
  all: initial;
  position: absolute !important;
  bottom: 60px !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 15 !important;
  padding: 20px !important;
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  box-sizing: border-box !important;
  display: flex !important;
  justify-content: center !important;
}

/* Reset all styles within Klaviyo form */
.klaviyo-signup-form * {
  all: unset;
  display: revert;
  box-sizing: border-box;
}

/* Klaviyo form content wrapper - 50% width on desktop */
.klaviyo-signup-form .klaviyo-form-wrapper {
  width: 50%;
  max-width: 600px;
}

/* Allow Klaviyo to style its own elements */
.klaviyo-signup-form .klaviyo-form-* {
  all: revert;
}

/* Specific resets for common conflicts */
.klaviyo-signup-form h1,
.klaviyo-signup-form h2,
.klaviyo-signup-form h3,
.klaviyo-signup-form h4,
.klaviyo-signup-form h5,
.klaviyo-signup-form h6 {
  text-transform: none !important;
  font-weight: normal !important;
  font-size: inherit !important;
  line-height: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
}

.klaviyo-signup-form p {
  margin: 0 !important;
  padding: 0 !important;
  text-transform: none !important;
}

.klaviyo-signup-form input,
.klaviyo-signup-form button,
.klaviyo-signup-form select,
.klaviyo-signup-form textarea {
  all: revert;
  box-sizing: border-box;
}

/* Mobile: Full width */
@media screen and (max-width: 768px) {
  .klaviyo-signup-form {
    width: 100% !important;
    padding: 15px !important;
    bottom: 50px !important;
  }
  
  .klaviyo-signup-form .klaviyo-form-wrapper {
    width: 100% !important;
    max-width: none !important;
  }
}

/* Override positioning for Klaviyo form in snow section - make it inline */
#snow-container .klaviyo-signup-form,
#snow-text .klaviyo-signup-form {
  position: static !important;
  bottom: auto !important;
}

/* Override positioning for Klaviyo form in snow section - Mobile */
@media screen and (max-width: 768px) {
  #snow-container .klaviyo-signup-form,
  #snow-text .klaviyo-signup-form {
    position: static !important;
    bottom: auto !important;
  }
}

/* Override positioning for Klaviyo form in coming-soon-video section - anchor to bottom */
#coming-soon-video .klaviyo-signup-form,
#start-video .klaviyo-signup-form {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  margin-top: var(--page-h, 100vh); /* Push below video area */
  margin-bottom: 0;
}

/* Override positioning for Klaviyo form in coming-soon-video section - Mobile */
@media screen and (max-width: 768px) {
  #coming-soon-video .klaviyo-signup-form,
  #start-video .klaviyo-signup-form {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    margin-top: var(--page-h, 100vh); /* Push below video area */
    margin-bottom: 0;
  }
}

/* Desktop: Push overlay image down by 50px to avoid header */
@media screen and (min-width: 769px) {
  .coming-soon-overlay-image,
  .start-video-overlay-image {
    top: calc(35% + 50px);
  }
}

/* Mobile: Center overlay image vertically and ensure responsive sizing */
@media screen and (max-width: 768px) {
  .coming-soon-overlay-image,
  .start-video-overlay-image {
    top: 50%;
    transform: translate(-50%, -50%);
    /* Ensure image scales down on mobile and doesn't clip */
    max-width: min(90vw, 600px); /* Use 90% of viewport width or 600px, whichever is smaller */
    max-height: min(50vh, 600px); /* Limit height to 50% of viewport or 600px */
  }
}

/* Quote Styles */

/* Snow Container Styles */
#snow-container {
  text-align: center;
  padding: 60px 20px;
  /* background-color set via inline style from schema */
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: calc(-50vw + 50%);
}

#snow-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

/* Snowflake Animation */
.snowflake {
  position: absolute;
  top: -10px;
  background-color: white;
  border-radius: 50%;
  pointer-events: none;
  animation: fall linear infinite;
  z-index: 1;
}

@keyframes fall {
  0% {
    transform: translateY(-10px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100svh) rotate(360deg);
    opacity: 0;
  }
}

#snow-text h3 {
  font-family: OPTICaslonBold-Cond, SAF, "Saa Series F D";
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

#snow-text p {
  font-family: "Garamond Premier Pro";
  font-size: 18px;
  line-height: 1.6;
  color: #aaa;
  margin-bottom: 15px;
}


/* Preorder Section */
.preorder-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f6f0;
  padding-top: 40px;
}

.preorder-section p {
  font-family: "Garamond Premier Pro";
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}




/* Custom Feedback Form */
.feedback-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.feedback-toggle-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  margin-bottom: 20px;
}

.feedback-toggle-btn {
  padding: 12px 20px;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  font-family: SAF, "Saa Series F D", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.feedback-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.feedback-toggle-btn.active {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

.feedback-form-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.feedback-textarea {
  width: 100%;
  align-self: stretch;
  height: 50%;
  min-height: 80px;
  padding: 15px;
  border: 1px solid #333;
  border-radius: 4px;
  font-family: "Garamond Premier Pro", serif;
  font-size: 16px;
  line-height: 1.5;
  resize: none;
  box-sizing: border-box;
  background-color: #333;
  color: #fff;
  transition: background-color 0.2s ease;
}

.feedback-textarea:focus {
  outline: none;
  border-color: #968357;
  background-color: #fff;
  color: #000;
}

.feedback-textarea.error {
  border-color: var(--error-color);
  background-color: #fff5f5;
}

.feedback-textarea.error + .feedback-character-count {
  color: var(--error-color);
}

.feedback-error-message-text {
  display: none;
  font-size: 11px;
  color: var(--error-color);
  margin-left: 4px;
}

.feedback-textarea.error + .feedback-character-count .feedback-error-message-text {
  display: inline !important;
}


#daily_calendar {
  max-width: 800px;
  margin: 0 auto;
}

.day-selector-outer-wrapper {
  width: 100%;
  background-color: var(--day-selector-left-right-margin);
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.day-selector-wrapper {
  margin: 0;
  background-color: var(--day-selector-left-right-margin);
  border-radius: 0;
  max-width: fit-content;
  width: fit-content;


}

#daily_calendar_day_selectors {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0;
  background-color: var(--day-selector-default-bg);
  padding: 0px;
  border-radius: 0;
  overflow-x: auto;
}

/* Special styling when LAST_ADVENT_DAY (25) is selected - entire bar matches default color */
#daily_calendar_day_selectors.last-in-row {
  background-color: var(--day-selector-max-day-desktop-bg);
}

/* Mobile: Special styling when LAST_ADVENT_DAY (25) is selected - fill gap with red color */
/* Mobile: Special styling when MOBILE_MIDDLE_DAY (12) is selected - prevent gray background from peeking out */
@media screen and (max-width: 768px) {
  #daily_calendar_day_selectors.last-in-row {
    background-color: var(--day-selector-max-day-mobile-bg);
  }
  
  #daily_calendar_day_selectors.mobile-last-in-row {
    background-color: var(--day-selector-max-day-mobile-bg);
  }
}



.daily_calendar_day_selector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 0;
  background-color: #6a6a6a;
  border: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
  cursor: default;
}

.daily_calendar_day_selector p {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  font-family: SAF, "Saa Series F";

}


.daily_calendar_day_selector.active {
  background-color: #c41e3a;
  color: white;
  cursor: pointer;
}

.daily_calendar_day_selector.maxday {
  background-color: #c41e3a;
  color: white;
  position: relative;
  clip-path: polygon(0% 0%, calc(100% - 8px) 0%, 100% 50%, calc(100% - 8px) 100%, 0% 100%);
}

.daily_calendar_day_selector.selected {
  background-color: var(--day-selector-button-selected-bg);
  cursor: pointer;
}

.daily_calendar_day_selector.active:hover,
.daily_calendar_day_selector.maxday:hover,
.daily_calendar_day_selector.selected:hover {
  background-color: var(--day-selector-button-hover-bg);
}

/* Responsive Design */
@media (max-width: 875px) {
  .daily_reveal-dr_treat_main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  #daily_calendar_day_selectors {
    gap: 0;
    padding: 0px;
    flex-wrap: wrap;
    width: 390px; /* Force exactly 12 buttons per row */
    justify-content: flex-start;
  }
  
  .daily_calendar_day_selector {
    width: 30px;
    height: 30px;
  }
  
  .daily_calendar_day_selector p {
    font-size: 12px;
  }
  
  /* Arrow shape for mobile - smaller arrow */
  .daily_calendar_day_selector.maxday {
    clip-path: polygon(0% 0%, calc(100% - 6px) 0%, 100% 50%, calc(100% - 6px) 100%, 0% 100%);
  }
  
  .daily_reveal-info-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .daily_reveal-treat_name {
    font-size: 24px;
  }
  
  .daily_reveal-treat_desc {
    font-size: 16px;
  }
  
  #snow-text h3 {
    font-size: 28px;
  }
  
  #snow-text p {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  p.quote-author {
    font-size: 12px !important;
  }
  
  .daily_reveal-treat_name {
    font-size: 22px;
  }
  
  .daily_reveal-treat_desc {
    font-size: 15px;
  }
  
  .daily_reveal-video h3,
  .daily_reveal-review h3 {
    font-size: 20px;
  }
  
  .collab_text h4 {
    font-size: 20px;
  }
  
  .preorder-section p,
  .daily_reveal-review p {
    font-size: 16px;
  }
  

  
  .feedback-textarea.error + .feedback-character-count::after {
    font-size: 10px;
  }
  
}
