:root {
  --color-wine: #790706;
  --color-wine-dark: #5c0404;
  --color-cream: #f1eee6;
  --color-paper: #fffdf9;
  --color-text: #211b18;
  --color-muted: #766b64;
  --shadow-soft: 0 14px 40px rgba(28, 16, 10, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--color-text);
  background: var(--color-paper);
}

body.search-lock {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

h1,
h2,
h3,
.section-title,
.banner-title,
.category-card__title,
.made-in-czech {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(121, 7, 6, 0.45);
  outline-offset: 4px;
  border-radius: 8px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: visible;
  color: #fff;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

/* Hero fotografie musí být viditelná bez ztmavení, filtru a překryvu. */
.hero__shade {
  display: none;
  opacity: 0;
  background: transparent;
  filter: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.hero__top {
  position: relative;
  z-index: 20;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo img {
  width: 200px;
  height: auto;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: #fff;
}

.header-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 6px 0;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.header-search svg,
.icon-link svg {
  width: 22px;
  height: 22px;
}

.icon-link {
  position: relative;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.favorite-badge {
  position: absolute;
  right: -6px;
  top: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--color-wine);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.hero__line {
  position: relative;
  z-index: 15;
  width: 90vw;
  max-width: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
}

.main-nav {
  position: relative;
  z-index: 30;
  width: min(1180px, calc(100% - 48px));
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.main-nav a,
.main-nav__item,
.category-menu__trigger {
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.32);
}

.main-nav a:hover,
.category-menu__trigger:hover {
  opacity: 0.82;
}

.hero__content {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: min(1320px, 96vw);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06em;
  margin: 22px 0 0;
  font-size: clamp(1.8rem, 4.4vw, 4.8rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.made-in-czech {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #59433c;
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.category-menu {
  position: relative;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.category-menu__trigger {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 500;
  background: none;
  border: 0;
  padding: 0;
}

.category-menu__submenu {
  position: fixed;
  top: 132px;
  left: 50%;
  width: min(1100px, calc(100vw - 20px));
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
  z-index: 1000;
  opacity: 0;
  transform: translate(-50%, -6px);
  pointer-events: none;
  transition: 0.2s ease;
  color: var(--color-text);
}

.category-menu.active .category-menu__submenu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-card {
  display: grid;
  gap: 10px;
  color: var(--color-text);
  padding: 10px;
  border-radius: 12px;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.category-card:hover {
  background: #faf6ef;
  transform: translateY(-2px);
}

.category-card__image-wrap {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f1ea;
}

.category-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  color: #000;
}

.category-card__text {
  margin-top: 4px;
  color: #000;
  font-size: 12px;
  line-height: 1.35;
}

.category-card__keywords {
  display: none;
}

.category-menu--rooms .category-menu__submenu {
  width: min(900px, calc(100vw - 20px));
}

.category-menu--rooms .category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.category-menu--rooms .category-card__title {
  text-align: center;
}

.category-menu--rooms .category-card__image-wrap {
  aspect-ratio: 4 / 3;
}

.section {
  padding: 62px 0;
}

.section-title {
  margin: 0 0 34px;
  color: var(--color-wine);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.popular-categories {
  background: #fff;
}

.popular-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 54px 70px;
}

.popular-card {
  display: grid;
  justify-items: center;
  gap: 17px;
  text-align: center;
  color: #221d1a;
  font-size: clamp(1rem, 1.45vw, 1.55rem);
  line-height: 1.2;
  font-weight: 500;
}

.popular-card__image-wrap {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
}

.popular-card__image-wrap img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.popular-card:hover img {
  transform: scale(1.04);
}

.banner-spacer,
.image-banner-section {
  background: var(--color-cream);
  padding: 0;
}

.image-banner {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.image-banner img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.rooms {
  background: #fff;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 22px;
}

.room-card {
  display: grid;
  gap: 14px;
  color: #211b18;
}

.room-card__image-wrap {
  overflow: hidden;
  background: #efe9df;
  aspect-ratio: 3 / 4;
}

.room-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.room-card:hover img {
  transform: scale(1.035);
}

.room-card__title {
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  line-height: 1;
  font-weight: 400;
}

.frequently-bought {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 42px;
}

.frequently-bought__container {
  width: min(1260px, calc(100% - 48px));
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-head .section-title {
  margin: 0;
  color: #4a312e;
  font-size: 1.22rem;
}

.section-arrows {
  display: flex;
  gap: 12px;
  color: #998b85;
}

.section-arrows span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid #e3d8d0;
  border-radius: 999px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  display: grid;
  gap: 8px;
  color: #2a211d;
  font-size: 12px;
}

.product-card__image-wrap {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: #fff;
}

.product-card__image-wrap img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.product-card__brand {
  color: #6e625d;
  font-size: 11px;
}

.product-card__name {
  line-height: 1.35;
}

.product-card__price {
  font-weight: 700;
}

.product-card__favorite {
  position: absolute;
  top: calc(100% - 88px);
  right: 3px;
  border: 0;
  background: transparent;
  color: var(--color-wine);
  padding: 4px;
}

.product-card__favorite svg {
  width: 17px;
  height: 17px;
}

.product-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card__link,
.product-card__partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--color-wine);
  font-size: 11px;
  line-height: 1;
}

.product-card__partner {
  background: var(--color-wine);
  color: #fff;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  justify-items: end;
  align-items: start;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.search-overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 11, 7, 0.32);
  backdrop-filter: blur(2px);
}

.search-panel {
  position: relative;
  width: min(760px, calc(100vw - 48px));
  max-height: min(780px, calc(100dvh - 48px));
  overflow: auto;
  margin-top: 22px;
  background: #fffdf9;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(20, 11, 7, 0.24);
  color: var(--color-text);
}

.search-panel__header,
.search-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.search-panel__header {
  border-bottom: 1px solid #eee3dc;
}

.search-panel__footer {
  border-top: 1px solid #eee3dc;
}

.search-panel__search-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.search-panel__icon svg,
.search-panel__close svg {
  width: 24px;
  height: 24px;
}

.search-panel__eyebrow {
  margin: 0 0 44px;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: var(--color-wine);
}

.search-panel__input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 4px 0;
  font-size: 1.15rem;
  color: var(--color-text);
  outline: none;
}

.search-panel__close {
  border: 0;
  background: #f5eee8;
  color: var(--color-text);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.search-panel__body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 22px;
}

.search-block__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.search-block__title {
  margin: 0;
  font-size: 1.05rem;
  color: #3a2924;
}

.search-block__meta {
  color: var(--color-muted);
  font-size: 12px;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-tag {
  border: 1px solid #e5d7cf;
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  color: #463632;
}

.search-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.search-product {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #faf6ef;
}

.search-product img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.search-product__name {
  font-weight: 700;
  margin-bottom: 4px;
}

.search-product__meta {
  color: var(--color-muted);
  font-size: 12px;
}

.search-panel__hint {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

.search-panel__cta {
  border: 0;
  border-radius: 999px;
  background: var(--color-wine);
  color: #fff;
  padding: 12px 18px;
  font-weight: 700;
}

.site-footer {
  background: var(--color-wine);
  color: #fff;
  padding: 28px 0;
  font-size: 14px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-bar {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-bar__button {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #fff;
  color: var(--color-wine);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .popular-categories__grid {
    gap: 36px;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-menu--rooms .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    overflow: hidden;
    padding-bottom: 64px;
  }

  .hero__image {
    min-height: 560px;
  }

  .hero__top {
    width: min(100% - 30px, 1180px);
    padding-top: 18px;
    align-items: flex-start;
  }

  .hero__actions {
    gap: 8px;
  }

  .header-search span {
    display: none;
  }

  .main-nav {
    width: min(100% - 30px, 1180px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 22px 28px;
    margin-top: 42px;
  }

  .category-menu {
    width: 100%;
    text-align: center;
    margin-bottom: -4px;
  }

  .category-menu__trigger {
    display: inline-block;
    transform: translateY(34px);
  }

  .main-nav>a,
  .main-nav__item {
    display: inline-block;
  }

  .hero__content {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(100% - 30px, 680px);
    margin: 88px auto 0;
  }

  .hero h1 {
    font-size: clamp(1rem, 6.2vw, 1.95rem);
    letter-spacing: 0;
    line-height: 1.08;
    gap: 0.08em;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .made-in-czech {
    font-size: clamp(1rem, 4.8vw, 1.35rem);
    padding: 8px 16px;
  }

  .category-menu__submenu {
    position: static;
    width: 100%;
    margin-top: 42px;
    padding: 12px;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .category-menu.active .category-menu__submenu {
    opacity: 1;
    max-height: 2400px;
    pointer-events: auto;
    transform: none;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-menu--rooms .category-menu__submenu {
    width: 100%;
  }

  .category-menu--rooms .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .popular-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .popular-card {
    font-size: 1rem;
  }

  .rooms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .room-card__title {
    font-size: 1.35rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .section {
    padding: 42px 0;
  }

  .container,
  .frequently-bought__container {
    width: min(100% - 30px, var(--container));
  }

  .image-banner {
    width: 100%;
  }

  .image-banner img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .image-banner-section {
    padding: 0;
  }

  .search-overlay {
    padding: 0;
    align-items: stretch;
    justify-items: stretch;
  }

  .search-panel {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
  }

  .search-panel__body {
    grid-template-columns: 1fr;
  }

  .search-products {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .cookie-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-menu--rooms .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .popular-categories__grid,
  .rooms-grid,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .popular-card__image-wrap {
    aspect-ratio: 1;
  }

  .image-banner img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .product-card__actions {
    gap: 6px;
  }

  .product-card__link,
  .product-card__partner {
    padding-inline: 8px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/* Pro výrobce */

.subpage-hero {
  position: relative;
  min-height: 560px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: url('/images/hero.webp') center / cover no-repeat;
}

/* Bez tmavého/radiálního překryvu přes hero.webp. */
.subpage-hero__shade {
  display: none;
  opacity: 0;
  background: transparent;
  filter: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.subpage-hero__top {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.subpage-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 15px;
  font-weight: 500;
}

.subpage-nav a {
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.32);
}

.subpage-nav a:hover {
  opacity: 0.82;
}

.subpage-hero__content {
  width: min(980px, calc(100% - 48px));
  margin: 92px auto 0;
  text-align: center;
}

.subpage-eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-wine);
  font-weight: 700;
}

.subpage-hero h1 {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.38);
}

.subpage-hero__content>p:not(.subpage-eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.subpage-hero__actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--color-wine);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.button-primary:hover {
  background: var(--color-wine-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-wine);
}

.button-secondary:hover {
  background: #fff;
}

.manufacturer-intro {
  background: #fff;
}

.manufacturer-intro__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 42px;
  align-items: center;
}

.manufacturer-intro p,
.manufacturer-form-section p {
  color: var(--color-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.manufacturer-note {
  display: grid;
  gap: 10px;
  padding: 26px;
  border-radius: 22px;
  background: #faf6ef;
  box-shadow: var(--shadow-soft);
}

.manufacturer-note strong {
  color: var(--color-wine);
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 1.2rem;
}

.manufacturer-note span {
  color: var(--color-muted);
  line-height: 1.65;
}

.manufacturer-benefits {
  background: var(--color-cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(28, 16, 10, 0.08);
}

.benefit-card__number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-wine);
  font-weight: 800;
  font-size: 0.9rem;
}

.benefit-card h3,
.step-card h3 {
  margin: 0 0 12px;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  line-height: 1.25;
}

.benefit-card p,
.step-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.how-it-works {
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  position: relative;
  padding: 26px 22px;
  border-radius: 22px;
  border: 1px solid #eee3dc;
  background: #fffdf9;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--color-wine);
  color: #fff;
  font-weight: 800;
}

.manufacturer-categories {
  background: var(--color-cream);
}

.manufacturer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.manufacturer-tags span {
  display: inline-flex;
  padding: 10px 15px;
  border-radius: 999px;
  background: #fff;
  color: #463632;
  border: 1px solid #e5d7cf;
  font-weight: 600;
}

.manufacturer-form-section {
  background: #fff;
}

.manufacturer-form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.contact-box {
  margin-top: 28px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 20px;
  background: #faf6ef;
}

.contact-box strong {
  color: var(--color-wine);
}

.contact-box a {
  font-weight: 700;
}

.manufacturer-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 24px;
  background: #fffdf9;
  box-shadow: var(--shadow-soft);
  border: 1px solid #eee3dc;
}

.manufacturer-form label {
  display: grid;
  gap: 8px;
  color: #3a2924;
  font-weight: 700;
  font-size: 0.95rem;
}

.manufacturer-form input,
.manufacturer-form textarea {
  width: 100%;
  border: 1px solid #e3d8d0;
  border-radius: 14px;
  background: #fff;
  color: var(--color-text);
  padding: 13px 14px;
  outline: none;
}

.manufacturer-form input:focus,
.manufacturer-form textarea:focus {
  border-color: rgba(121, 7, 6, 0.45);
  box-shadow: 0 0 0 4px rgba(121, 7, 6, 0.08);
}

.manufacturer-form textarea {
  resize: vertical;
  min-height: 130px;
}

.manufacturer-form__submit {
  border: 0;
  width: fit-content;
  margin-top: 4px;
}

.manufacturer-form__note {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {

  .benefits-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manufacturer-intro__grid,
  .manufacturer-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 750px) {
  .subpage-hero {
    min-height: auto;
    padding-bottom: 58px;
  }

  .subpage-hero__top {
    width: min(100% - 30px, 1180px);
    padding-top: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 22px;
  }

  .subpage-hero__content {
    width: min(100% - 30px, 680px);
    margin-top: 54px;
  }

  .subpage-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .benefits-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .manufacturer-form {
    padding: 20px;
  }

  .manufacturer-form__submit {
    width: 100%;
  }
}
.subpage-hero--manufacturers {
  min-height: 720px;
}

.subpage-hero--manufacturers .subpage-hero__content {
  margin-top: 20px;
}
/* Posunutí hero obsahu na stránce Příběhy výrobců o 40 px nahoru */
.manufacturer-stories-hero__content--raised {
  transform: translateY(-40px);
}

@media (max-width: 900px) {
  .manufacturer-stories-hero__content--raised {
    transform: translateY(-28px);
  }
}

@media (max-width: 480px) {
  .manufacturer-stories-hero__content--raised {
    transform: translateY(-18px);
  }
}
/* Skrytí výrobců při filtrování */
.manufacturer-card.is-hidden,
.featured-manufacturer-card.is-hidden {
  display: none;
}

.manufacturer-empty[hidden] {
  display: none;
}


/* ------------------------------------------------------------
   Finální pojistka: hero.webp bez ztmavení, gradientu, filtru.
   ------------------------------------------------------------ */
.hero__image {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.hero__shade,
.subpage-hero__shade,
.hero::before,
.hero::after,
.subpage-hero::before,
.subpage-hero::after {
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
  background-image: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  mix-blend-mode: normal !important;
  pointer-events: none !important;
}

.subpage-hero {
  background-image: url('/images/hero.webp') !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-blend-mode: normal !important;
}
