.discount-badge{
    position:absolute;
    top:8px;
    left:8px;
    background:#e53935;
    color:#fff;
    padding:4px 10px;
    border-radius:6px;
    font-size:12px;
    font-weight:600;
}
.product-card{ position:relative; }

.countdown-wrap{
    width:100%;
    display:flex;
    justify-content:center;
    padding:40px 10px 60px 10px;
}

.countdown-inner{
    max-width:900px;
    width:100%;
    background:linear-gradient(135deg,#7f1d1d,#b91c1c);
    border-radius:24px;
    padding:35px 25px;
    color:white;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.countdown-title{
    font-size:26px;
    font-weight:800;
    margin-bottom:10px;
}

.countdown-text{
    font-size:18px;
    opacity:0.95;
    margin-bottom:20px;
    font-weight:500;
}

.countdown-timer{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.time-box{
    background:#111;
    border-radius:16px;
    width:90px;
    height:90px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

.time-num{
    font-size:28px;
    font-weight:800;
    line-height:1;
}

.time-label{
    font-size:12px;
    opacity:0.8;
}

@media (max-width:600px){
    .time-box{width:65px;height:65px;}
    .time-num{font-size:20px}
}
:root{
  --event-color: <?= $farbe ?>;
}

.discount-badge{ background:var(--event-color); }
.cta-btn{ background:var(--event-color); }

.faq{display:inline-block;width:100%;margin-top:50px;}
.faq-inner{margin:0 auto;width:60%;}