:root {
  --parchment: #F4EFE3;
  --ink: #211C16;
  --ink-soft: #3A332A;
  --brass: #C9A96E;
  --brass-soft: #DCC496;
  --sage-deep: #5E6B4F;
  --line: rgba(33,28,22,0.12);
  --serif: 'Fraunces', serif;
  --sans: 'Inter', sans-serif;
}

/* Background overlay with blur */
.banner-overlay-6b60bd6a {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 28, 22, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  animation: fadeIn-6b60bd6a 0.4s ease forwards;
}

@keyframes fadeIn-6b60bd6a {
  to { opacity: 1; }
}

.banner-overlay-6b60bd6a.closing {
  animation: fadeOut-6b60bd6a 0.35s ease forwards;
}

@keyframes fadeOut-6b60bd6a {
  to { opacity: 0; }
}

.banner-6b60bd6a {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--ink);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 38px 34px 30px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  transform: translateY(20px) scale(0.96);
  animation: rise-6b60bd6a .5s cubic-bezier(.2,.8,.3,1) forwards;
  font-family: var(--sans);
  text-align: left;
}

@keyframes rise-6b60bd6a { to { transform: translateY(0) scale(1); } }

.banner-close-6b60bd6a {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,239,227,0.55);
  font-size: 18px;
  border-radius: 50%;
  transition: background .2s ease, color .2s ease;
  cursor: pointer;
  border: none;
  background: none;
}
.banner-close-6b60bd6a:hover { background: rgba(244,239,227,0.08); color: var(--brass-soft); }

.eyebrow-6b60bd6a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow-6b60bd6a::before { content: ''; width: 22px; height: 1px; background: var(--brass); }

.banner-6b60bd6a h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.22;
  color: var(--parchment);
  margin-bottom: 12px;
}
.banner-6b60bd6a h3 em { font-style: italic; color: var(--brass-soft); }

.banner-6b60bd6a p {
  font-size: 14px;
  color: rgba(244,239,227,0.65);
  margin-bottom: 24px;
  line-height: 1.55;
}

.banner-actions-6b60bd6a { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.banner-cta-6b60bd6a {
  background: var(--brass);
  color: var(--ink);
  padding: 13px 26px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
  transition: background .25s ease;
  text-decoration: none;
}
.banner-cta-6b60bd6a:hover { background: var(--brass-soft); }

.banner-dismiss-6b60bd6a {
  font-size: 12px;
  color: rgba(244,239,227,0.5);
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.banner-dismiss-6b60bd6a:hover { color: var(--brass-soft); }

/* countdown bar */
.countdown-track-6b60bd6a {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: rgba(244,239,227,0.12);
}
.countdown-fill-6b60bd6a {
  height: 100%;
  width: 100%;
  background: var(--brass);
  transform-origin: left;
  animation: countdown-6b60bd6a 6s linear forwards;
}
@keyframes countdown-6b60bd6a { from { transform: scaleX(1); } to { transform: scaleX(0); } }

/* Mobile Optimizations */
@media (max-width: 480px) {
  .banner-6b60bd6a {
    padding: 30px 20px 24px;
    max-width: 100%;
  }
  .banner-6b60bd6a h3 {
    font-size: 20px;
    line-height: 1.3;
  }
  .banner-6b60bd6a p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .banner-actions-6b60bd6a {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .banner-cta-6b60bd6a {
    text-align: center;
    padding: 11px 20px;
  }
  .banner-dismiss-6b60bd6a {
    text-align: center;
    padding: 4px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-overlay-6b60bd6a { animation: none; opacity: 1; }
  .banner-overlay-6b60bd6a.closing { animation: none; opacity: 0; }
  .banner-6b60bd6a { animation: none; transform: none; }
  .countdown-fill-6b60bd6a { animation: none; }
}
