/* =========================
   11. THANK YOU
   ========================= */
.thankyou{
  width:min(860px,100%);
  margin:0 auto;
}

.thankyou-card{
  padding:18px;
  border:1px solid var(--coffeeLine);
  border-radius:var(--r1);
  background:var(--glassWhiteB);
  box-shadow:var(--shadowSoft);
  color:var(--coffeeInk);
}

.thankyou-card h3{
  margin:0;
  font-family:var(--fontB);
  font-weight:600;
  font-size:clamp(1.6rem,2.2vw,2.2rem);
  color:var(--coffeeInk);
}

.thankyou-card p{
  margin:10px 0 0;
  font-size:1.02rem;
  line-height:1.5;
  font-weight:800;
  color:var(--coffeeMuted);
}

.thankyou-actions{
  display:flex;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

@media (max-width:900px){
  .thankyou-card{
    padding:14px;
  }

  .thankyou-actions{
    justify-content:center;
  }

  .thankyou-actions .btn{
    width:100%;
    max-width:520px;
  }
}