/* ============================================================
   COUNTDOWN — Desktop-first (safe shrink behavior)
   - Centered rings
   - Allows wrap when viewport becomes narrow (no layout break)
   - SVG sizing tied to parent (no duplicated px sizing)
   NOTE:
   - Circle geometry (cx/cy/r) must be in the SVG markup (countdown.html)
============================================================ */

#premium-countdown-wrapper{
  display: flex;
  justify-content: center;
  margin: 35px 0;
  background: transparent;
}

#rings{
  display: flex;
  justify-content: center;
  align-items: center;

  /* Desktop spacing */
  gap: 28px;
  padding: 24px 32px;

  /* Safe shrink behavior */
  flex-wrap: wrap;
  row-gap: 18px;

  background: transparent;
  border-radius: 18px;
  backdrop-filter: none;
}

/* ============================================================
   SINGLE RING
============================================================ */

.ring{
  width: 120px;
  height: 120px;
  position: relative;
}

.ring svg{
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring circle{
  fill: none;
  stroke-width: 10;
}

.ring circle.bg{
  stroke: #C0CBC2AA;
}

.ring circle.fg{
  stroke: #C0CBC2;
  stroke-linecap: round;
  stroke-dasharray: 276.46;
  transition: stroke-dashoffset 0.35s ease;
}

/* ============================================================
   CENTER LABEL
============================================================ */

.ring-center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.97);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ring-value{
  font-size: 34px;
  font-weight: 300;
  color: #5F7267;
  font-family: "Tinos", serif;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.ring-label{
  display: block;
  margin-top: 6px;
  font-size: 10px;
  color: #5F7267;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ============================================================
   DEBUG BUTTONS (optional)
============================================================ */

#countdown-debug{
  margin: 20px auto 10px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

#countdown-debug button{
  padding: 6px 14px;
  background: #C0CBC2;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

#countdown-debug button:hover{
  background: white;
  color: #C0CBC2;
}