
/* topmart-makety-popup.css – FINÁLNÍ OPRAVA NADPISU */

.tmMaketyOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999999;
  padding:20px;
}

.tmMaketyOverlay.is-open{display:flex;}

.tmMaketyCard{
  width:min(560px,100%);
  background:#ffffff;
  border-radius:18px;
  box-shadow:0 25px 70px rgba(0,0,0,.35);
  overflow:hidden;
  font-family:Arial, sans-serif;
}

.tmMaketyHead{
  padding:18px;
  background:#00386C;
  display:flex;
  align-items:center;
  gap:12px;
}

.tmMaketyHead h3{
  margin:0;
  font-size:16px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:#ffffff !important;   /* TVRDĚ BÍLÉ */
}

.tmMaketyIcon{
  width:32px;
  height:32px;
  border-radius:10px;
  background:#ffffff22;
  display:flex;
  align-items:center;
  justify-content:center;
}

.tmMaketyIcon span{
  font-size:20px;
  font-weight:900;
  color:#ffcc00;
  animation:pulse 1.2s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.15);}
  100%{transform:scale(1);}
}

.tmMaketyBody{
  padding:20px;
  color:#111;
  font-size:14px;
  line-height:1.5;
}

.tmMaketyConsent{
  margin-top:18px;
  padding:14px;
  border:2px solid #00386C;
  border-radius:12px;
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.tmMaketyConsent input{
  width:24px;
  height:24px;
  accent-color:#00386C;
  cursor:pointer;
  margin-top:3px;
}

.tmMaketyFooter{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.tmMaketyBtn{
  background:#00386C;
  color:#fff;
  border:0;
  padding:12px;
  border-radius:10px;
  font-weight:900;
  cursor:pointer;
}

.tmMaketyBtn:disabled{
  opacity:.4;
  cursor:not-allowed;
}

.tmMaketyPhone{
  text-align:center;
  font-weight:900;
  text-decoration:none;
  color:#00386C;
  border:1px solid #00386C33;
  padding:10px;
  border-radius:10px;
}
