/* ============ BDS Timer ============ */

.bds-tmr {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px;
  font-family: 'Roboto Condensed', sans-serif;
  flex-wrap: nowrap !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.bds-tmr-unit {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: auto !important;
}

.bds-tmr-box {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100% !important;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.bds-tmr-num {
  font-size: 42px;
  font-weight: 900;
  color: #c8102e;
  line-height: 1;
  letter-spacing: 1px;
}

.bds-tmr-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Separadores rojos (puntos) */
.bds-tmr-sep {
  display: flex !important;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
}

.bds-tmr-sep::before,
.bds-tmr-sep::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #c8102e;
  border-radius: 50%;
}

/* Estado finalizado */
.bds-tmr.is-finished .bds-tmr-unit,
.bds-tmr.is-finished .bds-tmr-sep {
  display: none !important;
}

.bds-tmr-mensaje {
  font-size: 22px;
  font-weight: 700;
  color: #c8102e;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Responsivo - mobile */
@media (max-width: 600px) {
  .bds-tmr {
    gap: 4px !important;
  }
  .bds-tmr-unit {
    gap: 4px !important;
  }
  .bds-tmr-box {
    padding: 8px 0 !important;
  }
  .bds-tmr-num {
    font-size: 18px !important;
    letter-spacing: 0 !important;
  }
  .bds-tmr-label {
    font-size: 9px !important;
  }
  .bds-tmr-sep {
    margin-bottom: 18px !important;
    gap: 2px !important;
  }
  .bds-tmr-sep::before,
  .bds-tmr-sep::after {
    width: 2px !important;
    height: 2px !important;
  }
}
