/* Reset base */
* {
  box-sizing: border-box;
}

.dk-countdown__inner {
  display: flex;          /* ORIZZONTALE */
  flex-direction: row;    /* tutti i cerchi in riga */
  gap: 6.4px;              /* spazio tra i cerchi */
  justify-content: center;
  align-items: center;
}
.dk-countdown-container {
  display: flex;
  justify-content: center;
  flex-direction:row;
  margin: 1.5rem 0;
}

.dk-countdown {
  display: flex;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
}

.dk-unit {
  width: 72px;
  display: flex;
  justify-content: center;
}

.dk-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.dk-value {
  font-size: 27.2px;
  font-weight: 800;
  color: #000000;
  letter-spacing: .02em;
}

.dk-label {
  font-size: 8px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
}
/* Contenitore principale */
.course-container-dk {
  background-color: #ffffff;
  width: 100%;
  min-height: 600px;
  margin: 0px auto;
  text-align: center;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  padding: 1rem;
}

/* Titolo principale */
.course-container-dk h1 {
  margin-bottom: 2.31rem;
  color: #00be84;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Sezione Pagamento */
.payment-dk {
  margin-bottom: 1.5rem;
}
.payment-dk h2 {
  color: #00be84;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2rem;
  text-transform: uppercase;
}

/* Bottoni opzione */
.options-dk {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

.button-option-dk {
  display: inline-block;
  width: 50%;
  padding: 0.6rem 1rem;
  min-height: 3.625rem;
  border-radius: 0.9375rem;
  border: 1px solid #00be84;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}
.button-option-dk:hover{
background-color:#00be84;
border: 1px solid #00be84;
}

/* Stato selezionato */
.button-option-dk.selected {
  background-color: #00be84;
  color: #ffffff;
  border: 1px solid #00be84;
}

/* CTA gialla */
#cta-container-dk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* spazio uniforme tra le CTA e il testo sotto */
  margin-bottom: 1rem; /* spazio tra CTA e garanzia */
}

.cta-embed-dk {
  display: none; /* rimane nascosto finché non selezionato */
}

.cta-button {
  display: inline-block;
  padding: 1.1rem 2rem;
  font-size: 1.125rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #000000;
  background-color: #fdce00;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  box-shadow: 0px 4px 10px rgba(253, 206, 0, 0.3);
  text-align: center;
  cursor: pointer;
}

/* Hover disattivato */
.cta-button:hover {
  background-color: #fdce00!important;
  color: #000
  box-shadow: 0px 4px 10px rgba(253, 206, 0, 0.3);
}

/* Garanzia */
.guarantee-dk {
  color: #333;
  text-align: center;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
  line-height: 2rem;
  margin-top: 0; /* lo spazio lo gestisce il gap sopra */
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .options-dk {
    flex-direction: column;
  }

  .button-option-dk {
    width: 100%;
  }

  .cta-button {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
  }
}