/* Žij padel — Top info bar (for new JS markup) */

:root{
  --zp-topbar-border:#e6e6e6;
  --zp-topbar-text:#333;
  --zp-topbar-muted:#666;
  --zp-topbar-divider:#bbb;

  --zp-topbar-font:14px;
  --zp-topbar-line:1.1;

  --zp-icon-size:16px;
  --zp-wa:#25D366;
  --zp-wa-hover:#1da851;
}

/* Container */
.zp-topbar{
  width:100%;
  padding:6px 0 3px;
  font-size:var(--zp-topbar-font);
  border-bottom:1px solid var(--zp-topbar-border);
  margin-bottom:0 !important;
}

/* Add side gutters on <= 1440px */
@media (max-width:1440px){
  .zp-topbar{ margin-left:20px; margin-right:20px; }
}

/* Layout */
.zp-topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 0px 10px 0px 10px;
}

/* Left / Right rows */
.zp-topbar__left,
.zp-topbar__right{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:nowrap;
}

/* Allow right side to wrap if needed (emails/phone) */
.zp-topbar__right{
  justify-content:flex-end;
  flex-wrap:wrap;
  row-gap:6px;
}

/* Normalize items: span wrappers + direct links */
.zp-topbar__left > span,
.zp-topbar__right > span{
  display:inline-flex;
  align-items:center;
  line-height:var(--zp-topbar-line);
}

/* Links */
.zp-topbar a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  line-height:var(--zp-topbar-line);
  font-weight:500;
  color:var(--zp-topbar-muted);
  text-decoration:none;
  white-space:nowrap;
}

.zp-topbar a:hover{
  color:var(--color-primary, var(--zp-topbar-text));
}

/* Availability */
.zp-hours{
  display:inline-flex;
  align-items:center;
  color:var(--zp-topbar-muted);
  font-weight:400;
  line-height:var(--zp-topbar-line);
  white-space:nowrap;
}

/* Divider */
.zp-divider{
  display:inline-flex;
  align-items:center;
  line-height:1;
  color:var(--zp-topbar-divider);
  font-weight:300;
  transform:translateY(-0.5px); /* jemné dorovnání optiky */
}

/* Icons (SVG + IMG-SVG) */
.zp-icon{
  display:inline-flex;
  align-items:center;
  line-height:1;
}

.zp-icon :is(svg,img){
  width:var(--zp-icon-size) !important;
  height:var(--zp-icon-size) !important;
  max-width:var(--zp-icon-size) !important;
  max-height:var(--zp-icon-size) !important;
  display:block;
}

.zp-icon img{ object-fit:contain; }

/* WhatsApp (your markup uses .zp-wa on <a>) */
.zp-wa{ color:var(--zp-wa); }
.zp-wa:hover{ color:var(--zp-wa-hover); }

/* Hide topbar on <= 993px */
@media (max-width:993px){
  .zp-topbar{ display:none !important; }
}

.zp-topbar__right a:hover .zp-icon{
  transform: scale(1.12);
  transition: transform .15s ease;
}

.zp-topbar__right a[aria-label="Facebook"] .zp-icon img,
.zp-topbar__right a[aria-label="Instagram"] .zp-icon img{
  width:12px !important;
  height:12px !important;
}