.category-top {
  position: relative;
  overflow: hidden;
  background-color: #f5f0e8;
  background-image: none !important; /* potlačíme inline background-image z Shoptetu */
  padding: 0;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

/* Foto jako pseudo-element – výrazné pozadí */
.category-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.myshoptet.com/usr/shop.oriclo.cz/user/front_images/ogImage/img_7847-edit_optimized.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.8;
  z-index: 0;
}

/* Dekorativní velké písmeno – čistě vizuální */
.category-top::after {
  content: 'T';
  position: absolute;
  right: -0.05em;
  top: -0.1em;
  font-size: clamp(160px, 20vw, 260px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  font-family: Georgia, 'Times New Roman', serif;
}

/* ─── Breadcrumbs uvnitř category-top ─── */
.type-category:not(.in-o-nas) .category-top .breadcrumbs {
  margin: 0 35px 20px !important;
}

.category-top .breadcrumbs {
  position: absolute;
  top: 1.25rem;
  left: 2rem;
  z-index: 2;
  font-size: 0.75rem;
  opacity: 0.75;
  color: #fff;
}

.category-top .breadcrumbs a,
.category-top .breadcrumbs span {
  color: #fff;
}

/* ─── Vnitřní layout ─── */
.category-top .category-title {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 3.5rem 2rem 1.5rem 2rem;
  flex: 0 0 auto;

  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;

  display: flex;
  align-items: flex-end;
  max-width: 52%;
}

/* Oddělovač vpravo */
.category-top .category-title::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* ─── Perex / popis kategorie ─── */
.category-top .category-perex {
  position: relative;
  z-index: 2;
  padding: 3.5rem 2.5rem 1.5rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column !important;
  justify-content: flex-end;
  gap: 0 !important;
}

.category-top .category-perex p {
  margin: 0 0 0.45rem;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.category-top .category-perex p:first-child {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* Skryje <style> tag, který je v perexu */
.category-top .category-perex style {
  display: none;
}

/* ─── Pill / tag – dekorativní label "Česká výroba" ─── */
.category-top .category-perex::before {
  content: '🇨🇿 česká výroba · přírodní materiály';
  display: inline-block;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white !important;
  background: rgba(180, 140, 60, 0.12);
  border: 1px solid rgba(180, 140, 60, 0.3);
  border-radius: 100px;
  padding: 0.3em 0.9em;
  margin-bottom: 1rem;
}

/* ─── Animace při načtení ─── */
@keyframes oriclo-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.category-top .category-title {
  animation: oriclo-fade-up 0.55s ease both;
  animation-delay: 0.05s;
}

.category-top .category-perex {
  animation: oriclo-fade-up 0.55s ease both;
  animation-delay: 0.18s;
}

/* ─── Responzivita ─── */
@media (max-width: 700px) {
  .category-top {
    flex-direction: column;
    min-height: unset;
  }

  .category-top .category-title {
    max-width: 100%;
    padding: 3.5rem 1.25rem 1rem;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .category-top .category-title::after {
    display: none;
  }

  .category-top .category-perex {
    padding: 0.5rem 1.25rem 1.75rem;
  }

  .category-top::after {
    font-size: clamp(120px, 35vw, 180px);
    right: -0.1em;
    top: -0.15em;
  }
}