@charset "UTF-8";
:root {
  --ac-gold: #ffd700;
  --ac-gold-dark: #c8a800;
  --ac-red: #8b0000;
  --ac-red-mid: #c0392b;
  --ac-sky-top: #0a0e2e;
  --ac-sky-mid: #0f1a4a;
  --ac-sky-bot: #1a0a2e;
  --ac-door-dark: #5c1208;
  --ac-door-mid: #8b2500;
  --ac-door-light: #6b1a0f;
  --ac-ice: #1e3a5f;
}

@keyframes snowfall {
  0% {
    transform: translateY(-10vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(110vh) translateX(30px) rotate(360deg);
    opacity: 0;
  }
}
@keyframes snowDrift {
  0% {
    transform: translateY(-10vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  50% {
    transform: translateY(50vh) translateX(-20px) rotate(180deg);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(110vh) translateX(15px) rotate(360deg);
    opacity: 0;
  }
}
@keyframes todayGlow {
  from {
    box-shadow: 0 0 10px 2px rgba(255, 215, 0, 0.35), 0 6px 20px rgba(0, 0, 0, 0.4);
  }
  to {
    box-shadow: 0 0 35px 8px rgba(255, 215, 0, 0.9), 0 8px 25px rgba(0, 0, 0, 0.5);
  }
}
@keyframes todayPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
@keyframes garlandSway {
  0%, 100% {
    transform: rotate(-1.5deg);
  }
  50% {
    transform: rotate(1.5deg);
  }
}
@keyframes flipIn {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(180deg);
  }
}
.promo-calendar-scene {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(175deg, var(--ac-sky-top) 0%, var(--ac-sky-mid) 55%, var(--ac-sky-bot) 100%);
  overflow: hidden;
  padding: 2rem 0 5rem;
}
.promo-calendar-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1px 1px at 10% 15%, rgba(255, 255, 255, 0.8) 0%, transparent 100%), radial-gradient(1px 1px at 25% 8%, rgba(255, 255, 255, 0.6) 0%, transparent 100%), radial-gradient(1px 1px at 40% 22%, rgba(255, 255, 255, 0.7) 0%, transparent 100%), radial-gradient(1px 1px at 55% 5%, rgba(255, 255, 255, 0.9) 0%, transparent 100%), radial-gradient(1px 1px at 70% 18%, rgba(255, 255, 255, 0.5) 0%, transparent 100%), radial-gradient(1px 1px at 85% 10%, rgba(255, 255, 255, 0.8) 0%, transparent 100%), radial-gradient(1px 1px at 92% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 100%), radial-gradient(1px 1px at 15% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 100%), radial-gradient(1px 1px at 60% 35%, rgba(255, 255, 255, 0.7) 0%, transparent 100%), radial-gradient(1px 1px at 78% 45%, rgba(255, 255, 255, 0.5) 0%, transparent 100%), radial-gradient(2px 2px at 33% 12%, rgba(255, 255, 255, 0.9) 0%, transparent 100%), radial-gradient(2px 2px at 67% 25%, rgba(255, 255, 255, 0.7) 0%, transparent 100%), radial-gradient(2px 2px at 88% 7%, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.snow {
  position: absolute;
  top: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
  animation: snowfall linear infinite;
}
.snow:nth-child(1) {
  left: 5%;
  font-size: 0.8rem;
  animation-duration: 8s;
  animation-delay: 0s;
}
.snow:nth-child(2) {
  left: 13%;
  font-size: 1.2rem;
  animation-duration: 10s;
  animation-delay: 1.5s;
  animation-name: snowDrift;
}
.snow:nth-child(3) {
  left: 22%;
  font-size: 0.7rem;
  animation-duration: 7s;
  animation-delay: 0.8s;
}
.snow:nth-child(4) {
  left: 30%;
  font-size: 1.4rem;
  animation-duration: 12s;
  animation-delay: 3s;
  animation-name: snowDrift;
}
.snow:nth-child(5) {
  left: 41%;
  font-size: 0.9rem;
  animation-duration: 9s;
  animation-delay: 0.3s;
}
.snow:nth-child(6) {
  left: 52%;
  font-size: 1.1rem;
  animation-duration: 11s;
  animation-delay: 2.2s;
  animation-name: snowDrift;
}
.snow:nth-child(7) {
  left: 63%;
  font-size: 0.75rem;
  animation-duration: 8.5s;
  animation-delay: 1s;
}
.snow:nth-child(8) {
  left: 72%;
  font-size: 1.3rem;
  animation-duration: 13s;
  animation-delay: 4s;
  animation-name: snowDrift;
}
.snow:nth-child(9) {
  left: 80%;
  font-size: 0.85rem;
  animation-duration: 7.5s;
  animation-delay: 0.6s;
}
.snow:nth-child(10) {
  left: 88%;
  font-size: 1rem;
  animation-duration: 9.5s;
  animation-delay: 2.8s;
  animation-name: snowDrift;
}
.snow:nth-child(11) {
  left: 95%;
  font-size: 1.2rem;
  animation-duration: 10.5s;
  animation-delay: 1.2s;
}
.snow:nth-child(12) {
  left: 47%;
  font-size: 0.65rem;
  animation-duration: 6.5s;
  animation-delay: 5s;
}

.promo-calendar-header {
  position: relative;
  text-align: center;
  margin-bottom: 2.5rem;
  z-index: 2;
}

.promo-calendar-stars {
  color: var(--ac-gold);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.promo-calendar-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--ac-gold);
  margin-bottom: 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4);
  letter-spacing: 0.02em;
}

.promo-calendar-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.25rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.promo-calendar-garland {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  height: 28px;
  animation: garlandSway 4s ease-in-out infinite;
  transform-origin: center top;
}

.garland-light {
  display: inline-block;
  width: 12px;
  height: 16px;
  border-radius: 50% 50% 55% 55%/45% 45% 60% 60%;
  position: relative;
  margin: 0 3px;
}
.garland-light:nth-child(1) {
  background: #e74c3c;
  box-shadow: 0 0 6px rgba(231, 76, 60, 0.8);
}
.garland-light:nth-child(2) {
  background: var(--ac-gold);
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.8);
}
.garland-light:nth-child(3) {
  background: #27ae60;
  box-shadow: 0 0 6px rgba(39, 174, 96, 0.8);
}
.garland-light:nth-child(4) {
  background: #3498db;
  box-shadow: 0 0 6px rgba(52, 152, 219, 0.8);
}
.garland-light:nth-child(5) {
  background: #e74c3c;
  box-shadow: 0 0 6px rgba(231, 76, 60, 0.8);
}
.garland-light:nth-child(6) {
  background: var(--ac-gold);
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.8);
}
.garland-light:nth-child(7) {
  background: #27ae60;
  box-shadow: 0 0 6px rgba(39, 174, 96, 0.8);
}
.garland-light:nth-child(8) {
  background: #9b59b6;
  box-shadow: 0 0 6px rgba(155, 89, 182, 0.8);
}
.garland-light:nth-child(9) {
  background: #e74c3c;
  box-shadow: 0 0 6px rgba(231, 76, 60, 0.8);
}
.garland-light:nth-child(10) {
  background: var(--ac-gold);
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.8);
}
.garland-light:nth-child(11) {
  background: #27ae60;
  box-shadow: 0 0 6px rgba(39, 174, 96, 0.8);
}
.garland-light:nth-child(12) {
  background: #3498db;
  box-shadow: 0 0 6px rgba(52, 152, 219, 0.8);
}
.garland-light::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 1px;
}

.promo-calendar-footnote {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  margin-top: 3rem;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
}

.promo-calendar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) {
  .promo-calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 640px) {
  .promo-calendar-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }
}
@media (max-width: 420px) {
  .promo-calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.promo-door {
  position: relative;
  aspect-ratio: 2/3;
  perspective: 900px;
  cursor: default;
  user-select: none;
}
.promo-door__inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.promo-door__front, .promo-door__back {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.5rem;
}
.promo-door__front {
  background: linear-gradient(160deg, var(--ac-door-light) 0%, var(--ac-door-mid) 50%, var(--ac-door-dark) 100%);
  border: 3px solid var(--ac-gold-dark);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.promo-door__front::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 6px;
  pointer-events: none;
}
.promo-door__front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(92deg, transparent, transparent 12px, rgba(0, 0, 0, 0.04) 12px, rgba(0, 0, 0, 0.04) 13px);
  border-radius: 8px;
  pointer-events: none;
}
.promo-door__badge {
  position: relative;
  z-index: 2;
  width: clamp(28px, 5vw, 44px);
  height: clamp(28px, 5vw, 44px);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--ac-gold) 0%, var(--ac-gold-dark) 100%);
  color: #3b1a00;
  font-weight: 900;
  font-size: clamp(0.65rem, 2vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.promo-door__ornament {
  position: relative;
  z-index: 2;
  font-size: clamp(0.8rem, 2.2vw, 1.2rem);
  line-height: 1;
  margin-bottom: 0.15rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}
.promo-door__ornament::before {
  content: "";
  display: block;
  width: 1px;
  height: clamp(6px, 1.2vw, 10px);
  background: rgba(212, 175, 55, 0.6);
  margin: 0 auto 2px;
}
.promo-door__lock {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  opacity: 0.65;
  position: relative;
  z-index: 2;
}
.promo-door__back {
  background: #fffbf0;
  border: 2px solid var(--ac-gold-dark);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.07);
  transform: rotateY(180deg);
  padding: 0.75rem;
  text-align: center;
  gap: 0.35rem;
}
.promo-door__back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c0392b 33%, var(--ac-gold) 33% 66%, #27ae60 66%);
  border-radius: 0 0 0 0;
}
.promo-door__image {
  max-width: 100%;
  max-height: 55%;
  object-fit: contain;
  border-radius: 5px;
  margin-bottom: 0.2rem;
  flex-shrink: 0;
}
.promo-door__text {
  font-size: clamp(0.6rem, 1.4vw, 0.75rem);
  color: #333;
  line-height: 1.35;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.promo-door__coupon {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.promo-door__coupon-label {
  font-size: 0.58rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.promo-door__coupon-code {
  display: inline-block;
  background: #e8f4f8;
  border: 1px dashed #2980b9;
  border-radius: 4px;
  padding: 2px 5px;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.5rem, 1.1vw, 0.68rem);
  color: #1a6fa8;
  letter-spacing: 0.07em;
  cursor: text;
  user-select: all;
}
.promo-door__star {
  font-size: 1.8rem;
  color: var(--ac-gold-dark);
  display: block;
}
.promo-door__coupon--applied .promo-door__coupon-label {
  color: #2e7d32;
}
.promo-door__coupon--applied .promo-door__coupon-code {
  background: #e8f5e9;
  border-color: #4caf50;
  color: #1b5e20;
}
.promo-door__promo-hint {
  font-size: clamp(0.48rem, 1vw, 0.6rem);
  color: #2e7d32;
  background: #e8f5e9;
  border-radius: 4px;
  padding: 2px 5px;
  margin-top: 2px;
  text-align: center;
  line-height: 1.3;
}

.promo-door.is-locked {
  cursor: not-allowed;
  opacity: 0.55;
}
.promo-door.is-locked .promo-door__front {
  background: linear-gradient(160deg, #1c3a5e 0%, #2a4a70 50%, #1a2e4a 100%);
  border-color: rgba(100, 150, 200, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  filter: saturate(0.3) brightness(0.75);
}
.promo-door.is-locked .promo-door__front::before, .promo-door.is-locked .promo-door__front::after {
  opacity: 0.5;
}
.promo-door.is-locked .promo-door__badge {
  background: radial-gradient(circle, #4a6080, #2c3e50);
  color: #7890a8;
  box-shadow: none;
}
.promo-door.is-locked .promo-door__ornament {
  opacity: 0.4;
}

.promo-door.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.promo-door.is-disabled .promo-door__front {
  background: linear-gradient(160deg, #303030 0%, #424242 50%, #282828 100%);
  border-color: rgba(120, 120, 120, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  filter: saturate(0) brightness(0.65);
}
.promo-door.is-disabled .promo-door__front::before,
.promo-door.is-disabled .promo-door__front::after {
  opacity: 0.4;
}
.promo-door.is-disabled .promo-door__badge {
  background: radial-gradient(circle, #555, #333);
  color: #888;
  box-shadow: none;
}
.promo-door.is-disabled .promo-door__ornament {
  opacity: 0.3;
}
.promo-door.is-disabled::before {
  content: "nicht verf\00fcgbar";
  position: absolute;
  top: -10px;
  right: -6px;
  background: #555;
  color: #ddd;
  font-size: 0.48rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 5;
  letter-spacing: 0.03em;
}
.promo-door__disabled-icon {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  opacity: 0.55;
  position: relative;
  z-index: 2;
}

.promo-door.is-closed {
  cursor: pointer;
}
.promo-door.is-closed:hover .promo-door__inner {
  transform: translateY(-5px) scale(1.04);
}
.promo-door.is-closed:hover .promo-door__front {
  box-shadow: 0 12px 32px rgba(139, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  border-color: var(--ac-gold);
}
.promo-door.is-closed:active .promo-door__inner {
  transform: translateY(-2px) scale(1.01);
  transition-duration: 0.1s;
}

.promo-door.is-today {
  animation: todayPulse 2.8s ease-in-out infinite;
}
.promo-door.is-today .promo-door__front {
  border: 4px solid var(--ac-gold);
  animation: todayGlow 2s ease-in-out infinite alternate;
}
.promo-door.is-today::before {
  content: "🎁 Heute!";
  position: absolute;
  top: -10px;
  right: -6px;
  background: var(--ac-gold);
  color: #3b1a00;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 5;
  letter-spacing: 0.03em;
}

.promo-door.is-open {
  cursor: default;
}
.promo-door.is-open .promo-door__inner {
  transform: rotateY(180deg);
}
.promo-door.is-open .promo-door__badge,
.promo-door.is-open .promo-door__ornament {
  display: none;
}

.promo-door.is-loading {
  pointer-events: none;
}
.promo-door.is-loading .promo-door__inner {
  opacity: 0.7;
}
.promo-door.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.35) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%238b0000' stroke-width='2' fill='none' stroke-dasharray='31.4' stroke-dashoffset='0'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='0.8s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/svg%3E") center/32px 32px no-repeat;
  z-index: 2;
}

.promo-door.is-christmas-eve {
  grid-column: span 2;
}
.promo-door.is-christmas-eve .promo-door__front {
  background: linear-gradient(145deg, #7a1a05 0%, #a82d00 30%, #6b1a0f 60%, #8b2500 100%);
  border-width: 4px;
  border-color: var(--ac-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55), 0 0 20px rgba(255, 215, 0, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}
.promo-door.is-christmas-eve .promo-door__badge {
  width: clamp(38px, 7vw, 58px);
  height: clamp(38px, 7vw, 58px);
  font-size: clamp(0.85rem, 2.5vw, 1.25rem);
}
.promo-door.is-christmas-eve .promo-door__ornament {
  font-size: clamp(1.1rem, 3vw, 1.7rem);
}

.promo-door__product-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.promo-door__product-link:hover {
  text-decoration: none;
  color: var(--ac-red);
}

.promo-door__product-name {
  font-size: clamp(0.52rem, 1.2vw, 0.68rem);
  font-weight: 600;
  color: #333;
  text-align: center;
  line-height: 1.25;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.promo-door__discount-badge {
  display: inline-block;
  background: var(--ac-red-mid);
  color: #fff;
  font-size: clamp(0.48rem, 1.1vw, 0.62rem);
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}

.promo-door__price-row {
  display: flex;
  gap: 0.28rem;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
}

.promo-door__price-orig {
  font-size: clamp(0.48rem, 1vw, 0.58rem);
  color: #999;
  text-decoration: line-through;
}

.promo-door__price-sale {
  font-size: clamp(0.52rem, 1.2vw, 0.68rem);
  color: var(--ac-red-mid);
  font-weight: 700;
}

@media (max-width: 420px) {
  .promo-door__badge {
    width: 26px;
    height: 26px;
    font-size: 0.6rem;
  }
  .promo-door__ornament {
    font-size: 0.7rem;
  }
  .promo-door__back {
    padding: 0.4rem;
  }
  .promo-door.is-christmas-eve .promo-door__badge {
    width: 34px;
    height: 34px;
  }
  .promo-calendar-title {
    font-size: 1.6rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROMOTION CALENDAR SUITE – MODUS-THEMES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Easter Mode ──────────────────────────────────────────────────────────── */
.calendar-mode--easter {
  --ac-primary:    #E91E8C;
  --ac-secondary:  #FFF176;
  --ac-accent:     #E91E8C;
  background: linear-gradient(175deg, #C8E6C9 0%, #F1F8E9 40%, #DCEDC8 70%, #B2EBF2 100%);
}

.calendar-mode--easter::before {
  display: none;
}

.calendar-mode--easter .promo-calendar-stars,
.calendar-mode--easter .promo-calendar-garland,
.calendar-mode--easter .snow {
  display: none;
}

.calendar-mode--easter .promo-calendar-title {
  color: #C2185B;
  font-family: Georgia, 'Times New Roman', serif;
  text-shadow: 0 2px 8px rgba(194, 24, 91, 0.25);
}

.calendar-mode--easter .promo-calendar-subtitle {
  color: #4a7c59;
}

.calendar-mode--easter .promo-calendar-footnote {
  color: #C2185B;
}

/* Easter sprite animations (falling flowers/butterflies top → bottom) */
.easter-sprite {
  position: absolute;
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  opacity: 0;
  animation: easterFloat 10s linear infinite;
  pointer-events: none;
  user-select: none;
  top: -2rem;
}

@keyframes easterFloat {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  8%   { opacity: 0.75; }
  92%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(110vh) rotate(360deg); }
}

.easter-sprite:nth-child(1)  { left: 5%;  animation-delay: 0s;    animation-duration: 11s; }
.easter-sprite:nth-child(2)  { left: 14%; animation-delay: 1s;    animation-duration: 9s;  }
.easter-sprite:nth-child(3)  { left: 23%; animation-delay: 2.5s;  animation-duration: 12s; }
.easter-sprite:nth-child(4)  { left: 35%; animation-delay: 0.5s;  animation-duration: 10s; }
.easter-sprite:nth-child(5)  { left: 47%; animation-delay: 3s;    animation-duration: 8s;  }
.easter-sprite:nth-child(6)  { left: 58%; animation-delay: 1.5s;  animation-duration: 13s; }
.easter-sprite:nth-child(7)  { left: 68%; animation-delay: 4s;    animation-duration: 9s;  }
.easter-sprite:nth-child(8)  { left: 77%; animation-delay: 2s;    animation-duration: 11s; }
.easter-sprite:nth-child(9)  { left: 84%; animation-delay: 0.8s;  animation-duration: 10s; }
.easter-sprite:nth-child(10) { left: 91%; animation-delay: 3.5s;  animation-duration: 12s; }
.easter-sprite:nth-child(11) { left: 42%; animation-delay: 5s;    animation-duration: 8s;  }
.easter-sprite:nth-child(12) { left: 62%; animation-delay: 2.2s;  animation-duration: 14s; }

/* Egg shape */
.calendar-mode--easter .promo-door {
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
}

.calendar-mode--easter .promo-door__inner {
  border-radius: inherit;
}

.calendar-mode--easter .promo-door__front,
.calendar-mode--easter .promo-door__back {
  border-radius: inherit;
}

/* 6 distinct egg colors via nth-child */
.calendar-mode--easter .promo-door:nth-child(6n+1) .promo-door__front {
  background: linear-gradient(150deg, #FF9EC4 0%, #FF6B9D 60%, #FF4481 100%);
  border-color: #FF4481;
}
.calendar-mode--easter .promo-door:nth-child(6n+2) .promo-door__front {
  background: linear-gradient(150deg, #A8E6CF 0%, #7FD4A8 60%, #56C481 100%);
  border-color: #56C481;
}
.calendar-mode--easter .promo-door:nth-child(6n+3) .promo-door__front {
  background: linear-gradient(150deg, #A8D8EA 0%, #7CC0D8 60%, #4FA8C5 100%);
  border-color: #4FA8C5;
}
.calendar-mode--easter .promo-door:nth-child(6n+4) .promo-door__front {
  background: linear-gradient(150deg, #FFF3A3 0%, #FFED70 60%, #FFD600 100%);
  border-color: #FFD600;
}
.calendar-mode--easter .promo-door:nth-child(6n+5) .promo-door__front {
  background: linear-gradient(150deg, #D4AAFF 0%, #B67FFF 60%, #9B59B6 100%);
  border-color: #9B59B6;
}
.calendar-mode--easter .promo-door:nth-child(6n+0) .promo-door__front {
  background: linear-gradient(150deg, #FFB5A0 0%, #FF8C70 60%, #FF6347 100%);
  border-color: #FF6347;
}

/* Egg shine highlight */
.calendar-mode--easter .promo-door__front::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 20%;
  width: 30%;
  height: 20%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.6) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

/* Egg decorative stripe */
.calendar-mode--easter .promo-door__front::after {
  content: '';
  position: absolute;
  top: 36%;
  left: -5%;
  right: -5%;
  height: 16%;
  background: rgba(255,255,255,0.22);
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 1;
}

/* Badge: universal translucent style over any egg color */
.calendar-mode--easter .promo-door__badge {
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.calendar-mode--easter .promo-calendar-grid {
  grid-template-columns: repeat(7, 1fr);
}

@media (max-width: 960px) {
  .calendar-mode--easter .promo-calendar-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 640px) {
  .calendar-mode--easter .promo-calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 420px) {
  .calendar-mode--easter .promo-calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.calendar-mode--easter .promo-door.is-christmas-eve {
  grid-column: span 1;
}

.calendar-mode--easter .promo-door.is-closed:hover .promo-door__front {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px) scale(1.04);
}

.calendar-mode--easter .promo-door.is-today .promo-door__front {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #E91E8C, 0 0 24px rgba(233, 30, 140, 0.45);
}

/* ── Black Friday Mode ────────────────────────────────────────────────────── */
.calendar-mode--black_friday {
  --ac-primary:    #FFD700;
  --ac-secondary:  #FF6F00;
  --ac-bg-top:     #111111;
  --ac-bg-mid:     #1a1a1a;
  --ac-bg-bot:     #0a0a0a;
  --ac-door-a:     #1f1f1f;
  --ac-door-b:     #2a2a2a;
  --ac-door-c:     #222222;
  --ac-door-d:     #333333;
  --ac-accent:     #FFD700;
  --ac-badge-bg:   #FFD700;
  --ac-badge-text: #111;
}

.calendar-mode--black_friday {
  background: linear-gradient(175deg, #111111 0%, #1a1a1a 55%, #0a0a0a 100%);
}

.calendar-mode--black_friday::before {
  display: none;
}

.calendar-mode--black_friday .promo-calendar-garland,
.calendar-mode--black_friday .snow {
  display: none;
}

.calendar-mode--black_friday .promo-calendar-stars {
  color: #FFD700;
}

.calendar-mode--black_friday .promo-calendar-title {
  color: #FFD700;
  font-family: 'Arial Black', Impact, sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.calendar-mode--black_friday .promo-calendar-subtitle {
  color: rgba(255, 165, 0, 0.8);
}

.calendar-mode--black_friday .promo-calendar-footnote {
  color: #FFD700;
}

#promo-countdown {
  color: #FFD700;
}

.calendar-mode--black_friday .promo-calendar-grid {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 960px) {
  .calendar-mode--black_friday .promo-calendar-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 640px) {
  .calendar-mode--black_friday .promo-calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 420px) {
  .calendar-mode--black_friday .promo-calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.calendar-mode--black_friday .promo-door.is-christmas-eve {
  grid-column: span 1;
}

.calendar-mode--black_friday .promo-door__front {
  background: linear-gradient(160deg, #1f1f1f 0%, #2a2a2a 50%, #222222 100%);
  border-color: #FFD700;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.8), 0 0 12px rgba(255, 215, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.calendar-mode--black_friday .promo-door__badge {
  background: radial-gradient(circle at 40% 35%, #FFD700 0%, #B8860B 100%);
  color: #111;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.6);
}

.calendar-mode--black_friday .promo-door__ornament {
  color: #FF6F00;
}

.calendar-mode--black_friday .promo-door.is-closed:hover .promo-door__front {
  box-shadow: 0 0 22px rgba(255, 215, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.8);
}

.calendar-mode--black_friday .promo-door.is-today .promo-door__front {
  border-color: #FFD700;
  box-shadow: 0 0 0 2px #FFD700, 0 0 25px rgba(255, 215, 0, 0.5);
}

/* DEAL badge on unopened Black Friday doors */
.calendar-mode--black_friday .promo-door.is-closed::after {
  content: 'DEAL';
  position: absolute;
  top: -7px;
  left: -5px;
  background: #FF6F00;
  color: #fff;
  font-size: 0.44rem;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  z-index: 5;
  text-transform: uppercase;
  font-family: 'Arial Black', Impact, sans-serif;
}

.calendar-mode--black_friday .promo-door__back {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.calendar-mode--black_friday .promo-door__text {
  color: #e0e0e0;
}

.calendar-mode--black_friday .promo-door__coupon-code {
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.3);
}

.calendar-mode--black_friday .promo-door__price-sale {
  color: #FFD700;
}

/* ── General Mode ─────────────────────────────────────────────────────────── */
.calendar-mode--general {
  --ac-primary:    #1565C0;
  --ac-secondary:  #42A5F5;
  --ac-bg-top:     #E3F2FD;
  --ac-bg-mid:     #F5F5F5;
  --ac-bg-bot:     #ECEFF1;
  --ac-door-a:     #1565C0;
  --ac-door-b:     #1976D2;
  --ac-door-c:     #0D47A1;
  --ac-door-d:     #1E88E5;
  --ac-accent:     #1565C0;
  --ac-badge-bg:   #1565C0;
  --ac-badge-text: #fff;
}

.calendar-mode--general {
  background: linear-gradient(175deg, #E3F2FD 0%, #F5F5F5 55%, #ECEFF1 100%);
}

.calendar-mode--general::before {
  display: none;
}

.calendar-mode--general .promo-calendar-stars,
.calendar-mode--general .promo-calendar-garland,
.calendar-mode--general .snow {
  display: none;
}

.calendar-mode--general .promo-calendar-title {
  color: #1565C0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-shadow: 0 2px 8px rgba(21, 101, 192, 0.2);
}

.calendar-mode--general .promo-calendar-subtitle {
  color: #546E7A;
}

.calendar-mode--general .promo-calendar-footnote {
  color: #1565C0;
}

.calendar-mode--general .promo-calendar-grid {
  grid-template-columns: repeat(7, 1fr);
}

@media (max-width: 960px) {
  .calendar-mode--general .promo-calendar-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 640px) {
  .calendar-mode--general .promo-calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 420px) {
  .calendar-mode--general .promo-calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.calendar-mode--general .promo-door.is-christmas-eve {
  grid-column: span 1;
}

.calendar-mode--general .promo-door__front {
  background: linear-gradient(160deg, #0D47A1 0%, #1565C0 50%, #1976D2 100%);
  border-color: #42A5F5;
}

.calendar-mode--general .promo-door__badge {
  background: radial-gradient(circle at 40% 35%, #1E88E5 0%, #0D47A1 100%);
  color: #fff;
  box-shadow: 0 2px 6px rgba(21, 101, 192, 0.5);
}

.calendar-mode--general .promo-door__ornament {
  color: rgba(255, 255, 255, 0.8);
}

.calendar-mode--general .promo-door.is-closed:hover .promo-door__front {
  box-shadow: 0 0 18px rgba(21, 101, 192, 0.4);
}

.calendar-mode--general .promo-door.is-today .promo-door__front {
  border-color: #42A5F5;
  box-shadow: 0 0 0 2px #42A5F5, 0 0 20px rgba(66, 165, 245, 0.4);
}

/* ── Halloween Mode ───────────────────────────────────────────────────────── */
.calendar-mode--halloween {
  --ac-primary:    #FF6B00;
  --ac-secondary:  #7B2FBE;
  background: radial-gradient(ellipse at top, #1A0D2E 0%, #0D0D1A 60%, #070714 100%);
}

.calendar-mode--halloween::before {
  display: none;
}

.calendar-mode--halloween .promo-calendar-garland,
.calendar-mode--halloween .snow {
  display: none;
}

/* Animated bats */
.bat {
  position: absolute;
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  animation: batFly 9s linear infinite;
  top: 15%;
}

@keyframes batFly {
  0%   { opacity: 0; transform: translateX(-80px) translateY(0) scaleX(1); }
  8%   { opacity: 0.85; }
  50%  { transform: translateX(55vw) translateY(-40px) scaleX(-1); }
  92%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateX(115vw) translateY(15px) scaleX(1); }
}

.bat:nth-child(1)  { top: 8%;  animation-delay: 0s;    animation-duration: 10s; }
.bat:nth-child(2)  { top: 18%; animation-delay: 1.5s;  animation-duration: 8s;  }
.bat:nth-child(3)  { top: 5%;  animation-delay: 3s;    animation-duration: 12s; }
.bat:nth-child(4)  { top: 25%; animation-delay: 4.5s;  animation-duration: 9s;  }
.bat:nth-child(5)  { top: 12%; animation-delay: 6s;    animation-duration: 11s; }
.bat:nth-child(6)  { top: 30%; animation-delay: 0.8s;  animation-duration: 7s;  }
.bat:nth-child(7)  { top: 9%;  animation-delay: 2.2s;  animation-duration: 13s; }
.bat:nth-child(8)  { top: 20%; animation-delay: 5s;    animation-duration: 8s;  }
.bat:nth-child(9)  { top: 3%;  animation-delay: 7s;    animation-duration: 10s; }
.bat:nth-child(10) { top: 15%; animation-delay: 1s;    animation-duration: 9s;  }
.bat:nth-child(11) { top: 22%; animation-delay: 3.8s;  animation-duration: 11s; }
.bat:nth-child(12) { top: 7%;  animation-delay: 5.5s;  animation-duration: 8s;  }

.calendar-mode--halloween .promo-calendar-title {
  color: #FF6B00;
  font-family: 'Arial Black', Impact, sans-serif;
  text-shadow: 0 0 30px rgba(255, 107, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.9);
}

.calendar-mode--halloween .promo-calendar-subtitle {
  color: rgba(200, 150, 255, 0.85);
}

.calendar-mode--halloween .promo-calendar-footnote {
  color: #FF6B00;
}

.calendar-mode--halloween #promo-countdown {
  color: #FF6B00;
}

.calendar-mode--halloween #promo-countdown-timer {
  color: #FFD700;
}

.calendar-mode--halloween .promo-calendar-grid {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 960px) {
  .calendar-mode--halloween .promo-calendar-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 640px) {
  .calendar-mode--halloween .promo-calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 420px) {
  .calendar-mode--halloween .promo-calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.calendar-mode--halloween .promo-door.is-christmas-eve {
  grid-column: span 1;
}

.calendar-mode--halloween .promo-door__front {
  background: linear-gradient(160deg, #1A0A2E 0%, #2D1B4E 50%, #150822 100%);
  border-color: #FF6B00;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.9), 0 0 12px rgba(255, 107, 0, 0.15),
              inset 0 1px 0 rgba(255, 107, 0, 0.05);
}

.calendar-mode--halloween .promo-door__badge {
  background: radial-gradient(circle at 40% 35%, #FF6B00 0%, #CC4400 100%);
  color: #fff;
  box-shadow: 0 2px 6px rgba(255, 107, 0, 0.6);
}

.calendar-mode--halloween .promo-door__ornament {
  color: #FF6B00;
  font-size: 1.4rem;
}

/* "BOO!" label on closed/locked doors */
.calendar-mode--halloween .promo-door.is-closed::after {
  content: 'BOO!';
  position: absolute;
  top: -7px;
  right: -5px;
  background: #7B2FBE;
  color: #fff;
  font-size: 0.44rem;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  z-index: 5;
  text-transform: uppercase;
  font-family: 'Arial Black', Impact, sans-serif;
}

.calendar-mode--halloween .promo-door.is-closed:hover .promo-door__front {
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.9);
}

@keyframes halloweenPulse {
  0%, 100% { box-shadow: 0 0 0 2px #FF6B00, 0 0 20px rgba(255, 107, 0, 0.5); }
  50%       { box-shadow: 0 0 0 3px #FF6B00, 0 0 40px rgba(255, 107, 0, 0.85); }
}

.calendar-mode--halloween .promo-door.is-today .promo-door__front {
  border-color: #FF6B00;
  animation: halloweenPulse 2s ease-in-out infinite;
}

.calendar-mode--halloween .promo-door__back {
  background: linear-gradient(135deg, #1A0A2E 0%, #2D1B4E 100%);
}

.calendar-mode--halloween .promo-door__text {
  color: #e0c8ff;
}

.calendar-mode--halloween .promo-door__coupon-label {
  color: rgba(200, 150, 255, 0.8);
}

.calendar-mode--halloween .promo-door__coupon-code {
  background: rgba(255, 107, 0, 0.15);
  color: #FF6B00;
  border-color: rgba(255, 107, 0, 0.3);
}

.calendar-mode--halloween .promo-door__price-sale {
  color: #FF6B00;
}

.calendar-mode--halloween .promo-door__discount-badge {
  background: #7B2FBE;
}

/* ── Meine Kalender-Codes Widget (Account-Seite) ────────────────────────── */
.promo-codes-widget { margin-top: 1.5rem; }

.promo-codes-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #888;
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.promo-codes-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ddd;
  border-top-color: #c0392b;
  border-radius: 50%;
  animation: pcSpin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes pcSpin { to { transform: rotate(360deg); } }

.promo-codes-empty {
  color: #999;
  font-size: 0.85rem;
  margin: 0;
}

.promo-codes-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.promo-code-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  flex-wrap: wrap;
}

.promo-code-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 110px;
}

.promo-code-mode {
  font-size: 0.7rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promo-code-door {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
}

.promo-code-date {
  font-size: 0.7rem;
  color: #bbb;
}

.promo-code-main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  flex-wrap: wrap;
}

.promo-code-value {
  font-size: 0.95rem;
  font-weight: 700;
  background: #efefef;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.07em;
  color: #222;
  font-family: monospace;
}

.promo-code-discount {
  font-size: 0.75rem;
  font-weight: 600;
  color: #27ae60;
  background: #e8f5e9;
  padding: 2px 7px;
  border-radius: 10px;
}

.promo-code-status {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

.promo-code-status--active   { background: #e8f5e9; color: #2e7d32; }
.promo-code-status--inactive { background: #f5f5f5; color: #999; border: 1px solid #ddd; }
.promo-code-status--expired  { background: #fde8e8; color: #c0392b; }

.promo-code-actions { margin-left: auto; }

@media (max-width: 576px) {
  .promo-code-row      { flex-direction: column; align-items: flex-start; }
  .promo-code-actions  { margin-left: 0; }
}

/* ── Account codes page: match theme non-cms-page background styling ──────── */
/* Mirrors .twt-container-main applied to account/order/address pages */
.is-act-accountcodes .content-main .container-main > div {
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid #f5f5f5;
  padding: 8px;
}

@media (min-width: 576px) {
  .is-act-accountcodes .content-main .container-main > div {
    padding: 15px;
  }
}

@media (min-width: 1200px) {
  .is-act-accountcodes .content-main .container-main > div {
    padding: 20px;
  }
}
