/* tm-cookies.css — cookie lišta pro Shoptet (Topmart) */
.siteCookies {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 320px;
  background: #f9f9f9;
  border-left: 4px solid #003366; /* Topmart tmavě modrá */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  z-index: 10000;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #333;
}
.siteCookies.siteCookies--scrolled { transform: translateY(0); opacity: 1; }

.siteCookies__form{ display:flex; flex-direction:column; padding:16px; }
.siteCookies__header{ display:flex; align-items:center; margin-bottom:8px; }
.siteCookies__header img{ width:28px; height:28px; margin-right:10px; object-fit:contain; }
.siteCookies__header h2{ font-size:1.25rem; font-weight:600; color:#003366; margin:0; }
.siteCookies__text{ font-size:1rem; line-height:1.5; margin-bottom:8px; }
.siteCookies__text a{ color:#003366; text-decoration:underline; font-weight:500; }

.siteCookies__links{ margin-bottom:8px; }
.siteCookies__link{ font-size:1rem; color:#003366; background:none; border:none; cursor:pointer; padding:0; font-weight:500; }

.siteCookies__buttonWrap{ text-align:right; }
.siteCookies__button{
  background:#003366; color:#fff; border:none; border-radius:6px; padding:10px 16px;
  font-size:1rem; font-weight:600; cursor:pointer; transition:background .2s ease;
}
.siteCookies__button:hover{ background:#002244; }

@media (max-width:480px){
  .siteCookies{ right:12px; left:12px; width:auto; }
}

/* Volitelné – schová duplicitní H1 u některých šablon */
h1[data-testid="eshopHeader"]{ display:none !important; }