/* Shared ESHOP theme (professional, consistent) */
:root{
  --eshop-primary:#19192a;
  --eshop-secondary:#252542;
  --eshop-accent:#fab427;
  --eshop-text:#ffffff;
  --eshop-textSecondary:rgba(255,255,255,.72);
  --eshop-border:rgba(255,255,255,.12);
  --eshop-cardBg:rgba(37,37,66,.62);
  --eshop-shadow:0 14px 30px rgba(0,0,0,.25);

  /* Compatibility aliases (starší stránky používají různé názvy) */
  --primary:var(--eshop-primary);
  --secondary:var(--eshop-secondary);
  --accent:var(--eshop-accent);
  --text:var(--eshop-text);
  --textSecondary:var(--eshop-textSecondary);

  --primary-color:var(--eshop-primary);
  --secondary-color:var(--eshop-secondary);
  --accent-color:var(--eshop-accent);
  --text-color:var(--eshop-text);
  --text-secondary:var(--eshop-textSecondary);
  --border-color:var(--eshop-border);
  --card-bg:var(--eshop-cardBg);
}

/* Improve base typography */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
a{ color:inherit; }
body.eshop-body{
  background:var(--eshop-primary);
  color:var(--eshop-text);
  letter-spacing:.1px;
  font-family:'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Top info bar (vyšší specificita kvůli inline CSS ve stránkách) */
.top-info-bar.eshop-topbar{
  background:rgba(250,180,39,.85);
  color:var(--eshop-primary);
  padding:10px 0;
  text-align:center;
  font-size:13px;
  font-weight:700;
}
.top-info-bar.eshop-topbar a{ color:inherit; text-decoration:none; font-weight:800; }
.top-info-bar.eshop-topbar a:hover{ text-decoration:underline; }

/* Topbar inner layout (sjednocení pro všechny stránky) */
.top-info-bar.eshop-topbar .top-info-bar-content{
  max-width:1400px;
  margin:0 auto;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.top-info-bar.eshop-topbar .delivery-notice-info{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
}
.top-info-bar.eshop-topbar .separator{
  opacity:.7;
  margin:0 6px;
}

/* Header */
header.eshop-header{
  background:rgba(25,25,42,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--eshop-border);
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}

/* Shared container (používá se napříč eshop stránkami) */
.container{
  max-width:1400px;
  margin:0 auto;
  padding:0 18px;
}

/* Card utility */
.eshop-card{
  background:var(--eshop-cardBg);
  border:1px solid var(--eshop-border);
  border-radius:16px;
  box-shadow:var(--eshop-shadow);
}

/* Buttons */
.eshop-btn-primary{
  background:var(--eshop-accent);
  color:var(--eshop-primary);
  border:none;
  border-radius:12px;
  padding:12px 16px;
  font-weight:900;
  cursor:pointer;
  transition:transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.eshop-btn-primary:hover{
  transform: translateY(-1px);
  box-shadow:0 12px 22px rgba(250,180,39,.22);
  filter: brightness(1.05);
}

.eshop-btn-ghost{
  background:transparent;
  color:var(--eshop-text);
  border:1px solid var(--eshop-border);
  border-radius:12px;
  padding:12px 16px;
  font-weight:800;
  cursor:pointer;
  transition:transform .12s ease, border-color .2s ease, color .2s ease;
}
.eshop-btn-ghost:hover{
  transform: translateY(-1px);
  border-color:var(--eshop-accent);
  color:var(--eshop-accent);
}

/* Category nav links */
.category-menu .category-item{
  text-decoration:none;
}
.category-menu .category-item:focus{
  outline:2px solid rgba(250,180,39,.35);
  outline-offset:2px;
}

/* -----------------------------
   Shisharium-like sections
------------------------------ */
.eshop-hero{
  padding:26px 0 8px;
}
.eshop-hero-inner{
  border:1px solid var(--eshop-border);
  border-radius:18px;
  background:
    radial-gradient(900px 300px at 20% 0%, rgba(250,180,39,.18), transparent 60%),
    radial-gradient(700px 280px at 80% 10%, rgba(99,102,241,.18), transparent 55%),
    rgba(37,37,66,.55);
  box-shadow:var(--eshop-shadow);
  padding:22px 22px;
}
.eshop-hero-text h1{
  margin:0 0 8px;
  font-size:28px;
  letter-spacing:.3px;
  color:var(--eshop-text);
}
.eshop-hero-text p{
  margin:0 0 16px;
  color:var(--eshop-textSecondary);
  line-height:1.55;
  max-width:70ch;
}
.eshop-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.eshop-hero-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
}

.trust-badges{
  padding:14px 0 6px;
}
.trust-badges-compact{
  padding:10px 0 2px;
}
.trust-badges-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}
.trust-badge{
  border:1px solid var(--eshop-border);
  border-radius:14px;
  background:rgba(37,37,66,.45);
  padding:14px 14px;
}
.trust-badge-title{
  font-weight:900;
  color:var(--eshop-text);
  margin-bottom:4px;
}
.trust-badge-text{
  color:var(--eshop-textSecondary);
  font-size:13px;
}

.promo-banners{
  padding:12px 0 12px;
}
.promo-banners-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}
.promo-banner{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--eshop-border);
  min-height:120px;
  text-decoration:none;
  background:rgba(37,37,66,.55);
  box-shadow:var(--eshop-shadow);
}
.promo-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 180px at 0% 0%, rgba(250,180,39,.22), transparent 60%),
    radial-gradient(520px 180px at 100% 100%, rgba(99,102,241,.22), transparent 60%);
  opacity:.9;
}
.promo-banner-content{
  position:relative;
  padding:16px 16px;
}
.promo-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:900;
  color:var(--eshop-accent);
  text-transform:uppercase;
  letter-spacing:.6px;
}
.promo-banner h3{
  margin:6px 0 6px;
  font-size:18px;
  color:var(--eshop-text);
}
.promo-banner p{
  margin:0;
  color:var(--eshop-textSecondary);
  font-size:13px;
}
.promo-1::after,.promo-2::after,.promo-3::after{
  content:"";
  position:absolute;
  right:-24px;
  top:-24px;
  width:120px;
  height:120px;
  border-radius:30px;
  transform:rotate(12deg);
  opacity:.35;
}
.promo-1::after{ background:rgba(250,180,39,.55); }
.promo-2::after{ background:rgba(34,197,94,.55); }
.promo-3::after{ background:rgba(99,102,241,.55); }

.eshop-about{
  padding:12px 0 4px;
}
.eshop-about-card{
  border-radius:18px;
  border:1px solid var(--eshop-border);
  background:rgba(37,37,66,.48);
  box-shadow:var(--eshop-shadow);
  padding:18px 18px;
}
.eshop-about-card h2{
  margin:0 0 10px;
  font-size:20px;
}
.eshop-about-card p{
  margin:0;
  color:var(--eshop-textSecondary);
  line-height:1.6;
}

@media (max-width: 900px){
  .trust-badges-grid,
  .promo-banners-grid{
    grid-template-columns:1fr;
  }
  .eshop-hero-text h1{ font-size:24px; }
}

