
html.show-chuseok-banner body {
    overflow: hidden !important;
}
html body.klaviyo-prevent-body-scrolling {
    overflow: auto !important;
}
html.show-chuseok-banner .t4s-website-wrapper {
    filter: blur(5px);
}
/* Default state - banner hidden */
.chuseok-banner {
  width: 100%;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 50%, #ff8a80 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  
  /* Hidden by default */
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
}

/* Show banner when body has the class */
body.show-chuseok-banner .chuseok-banner {
  max-height: 1000px; /* Large enough value to accommodate content */
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 20px;
}

/* Smooth closing animation */
body.hide-chuseok-banner .chuseok-banner {
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  margin-bottom: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.chuseok-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.3;
}

.chuseok-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 25px;
  z-index: 2;
}
/* Update these CSS rules - change from body.show-chuseok-banner to html.show-chuseok-banner */

/* Default state - banner hidden */
.chuseok-banner {
  width: 100%;
  background: url('https://cdn.shopify.com/s/files/1/0617/7062/9377/files/6r7fiyvk.jpg?v=1758807896');
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f0b83f;
}

/* Show banner when HTML has the class */
html.show-chuseok-banner .chuseok-banner {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 20px;
}

/* Smooth closing animation */
html.hide-chuseok-banner .chuseok-banner {
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  margin-bottom: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.chuseok-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgb(232 22 22);
  border: none;
  color: white;
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  opacity: 0.9;
}

.chuseok-close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg) scale(1.1);
}

.chuseok-header {
  text-align: center;
  margin-bottom: 30px;
}

.chuseok-title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: bold;
  margin: 0 0 10px 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  color: #fff;
}

.chuseok-subtitle {
  font-size: clamp(16px, 2.5vw, 18px);
  margin: 0 0 25px 0;
  opacity: 0.9;
  font-weight: 500;
  color: #ffffff;
}

/* Countdown Timer Styles */
.countdown-section {
  background: rgb(14 13 13 / 15%);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 10px;
  backdrop-filter: blur(10px);
}

.countdown-label {
  font-size: clamp(18px, 3vw, 20px);
  font-weight: bold;
  margin: 0 0 15px 0;
  text-align: center;
  color: #fff;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2vw, 20px);
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(255 255 255);
  padding: clamp(8px, 2vw, 15px);
  border-radius: 12px;
  min-width: clamp(50px, 12vw, 80px);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.time-unit:hover {
  transform: scale(1.05);
}

.time-value {
  font-size: clamp(20px, 5vw, 32px);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  color: #000;
}

.time-label {
  font-size: clamp(10px, 2vw, 12px);
  text-transform: uppercase;
  opacity: 0.9;
  letter-spacing: 1px;
  font-weight: 600;
  color: #000;
}

.countdown-end-date {
  font-size: clamp(14px, 2.5vw, 16px);
  opacity: 0.9;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.chuseok-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(15px, 3vw, 25px);
}

.chuseok-section {
  background: rgb(53 107 232 / 54%);
  padding: clamp(15px, 3vw, 20px);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.chuseok-section:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.15);
}

.section-title {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: bold;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.chuseok-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chuseok-list li {
  padding: clamp(6px, 1.5vw, 8px) 0;
  padding-left: clamp(15px, 3vw, 20px);
  position: relative;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.5;
}

.chuseok-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
  top: 4px;
  font-size: clamp(16px, 3vw, 20px);
}

.chuseok-greeting {
  background: rgb(246 182 51 / 80%) url('https://cdn.shopify.com/s/files/1/0617/7062/9377/files/98t7uyf.png?v=1758814278') repeat-x;
  padding: clamp(20px, 4vw, 25px);
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(5px);
}

.chuseok-wish {
  font-size: clamp(18px, 3.5vw, 20px);
  margin: 20px 0 5px 0;
  font-weight: bold;
  color: #000;
}

.chuseok-message {
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
  color: #000;
}

/* Responsive Breakpoints */
@media (min-width: 480px) {
  .countdown-timer {
    gap: 15px;
  }
  
  .time-unit {
    min-width: 70px;
  }
}

@media (min-width: 768px) {
  .chuseok-body {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .chuseok-greeting {
    grid-column: 1 / -1;
  }
  
  .countdown-timer {
    gap: 20px;
  }
  
  .time-unit {
    min-width: 80px;
    padding: 12px 18px;
  }
}

@media (min-width: 1024px) {
  .chuseok-body {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .chuseok-greeting {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1200px) {
  .countdown-timer {
    gap: 25px;
  }
  
  .time-unit {
    min-width: 90px;
    padding: 15px 20px;
    border: ` solid #000;
  }
}

/* Mobile-first optimizations */
@media (max-width: 479px) {
  .chuseok-container {
    padding: 20px 15px;
  }
  
  .countdown-section {
    padding: 15px;
  }
  
  .countdown-timer {
    gap: 8px;
  }
  
  .time-unit {
    min-width: 45px;
    padding: 6px 8px;
  }
  
  .chuseok-close {
    width: 35px;
    height: 35px;
    font-size: 24px;
    top: 15px;
    right: 15px;
  }
  
  .chuseok-body {
    gap: 12px;
  }
  
  .chuseok-section {
    padding: 12px;
  }
  
  .chuseok-greeting {
    padding: 15px;
  }
}

/* Extra small screens */
@media (max-width: 320px) {
  .countdown-timer {
    gap: 6px;
  }
  
  .time-unit {
    min-width: 40px;
    padding: 5px 6px;
  }
}

