/* Verony2 layout — tokens & components in separate files */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.verony2-theme {
  margin: 0;
  font-family: var(--v2-sans);
  color: var(--v2-text);
  background: var(--v2-bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--v2-accent-dark); text-decoration-thickness: 1px; }
a:hover { color: var(--v2-accent); }

.v2-container { width: min(100% - 2rem, var(--v2-container)); margin-inline: auto; }
.v2-container--shop { width: min(100% - 2rem, var(--v2-container-shop)); }
.v2-container--narrow { width: min(100% - 2rem, 760px); }
.v2-container--cart { width: min(100% - 2rem, 1100px); }

/* Header — logo center, split nav, glass */
.v2-header {
  background: var(--v2-glass-header-bg);
  backdrop-filter: blur(var(--v2-glass-header-blur)) saturate(1.18);
  -webkit-backdrop-filter: blur(var(--v2-glass-header-blur)) saturate(1.18);
  border-bottom: 1px solid var(--v2-glass-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background var(--v2-transition), box-shadow var(--v2-transition), backdrop-filter var(--v2-transition);
}
.v2-header.is-scrolled {
  background: var(--v2-glass-header-bg-scrolled);
  backdrop-filter: blur(var(--v2-glass-header-blur)) saturate(1.22);
  -webkit-backdrop-filter: blur(var(--v2-glass-header-blur)) saturate(1.22);
  box-shadow: var(--v2-glass-shadow);
}

body.admin-bar .v2-header {
  top: var(--wp-admin--admin-bar--height, 32px);
}

@media (max-width: 782px) {
  body.admin-bar .v2-header {
    top: 46px;
  }
}

body.admin-bar {
  scroll-padding-top: calc(var(--v2-header-height) + var(--wp-admin--admin-bar--height, 32px));
}
.v2-header__inner.v2-container {
  width: min(100% - 1.25rem, var(--v2-container-header));
}
.v2-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(0.55rem, 1.1vw, 1.1rem);
  row-gap: var(--v2-nav-gap);
  padding: 0.35rem 0;
  min-height: var(--v2-header-height);
  transition: min-height var(--v2-transition), padding var(--v2-transition);
}
.v2-header.is-scrolled .v2-header__inner {
  min-height: var(--v2-header-height-scrolled);
  padding-block: 0.25rem;
}
.v2-header__logo {
  justify-self: center;
  text-align: center;
  flex-shrink: 0;
  padding-inline: clamp(0.35rem, 1vw, 0.75rem);
}
.v2-header__nav-left {
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  min-width: 0;
  overflow: visible;
}

.v2-header-favorites {
  display: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--v2-glass-border, rgba(28, 21, 16, 0.12));
  background: rgba(255, 255, 255, 0.45);
  color: var(--v2-text);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.v2-header-favorites:hover {
  background: rgba(255, 255, 255, 0.75);
  color: var(--v2-accent-dark, #8b5a2b);
}

.v2-header-favorites__icon {
  flex-shrink: 0;
  color: var(--v2-accent, #c4783a);
}

@media (min-width: 961px) {
  .v2-header-favorites {
    display: inline-flex;
  }
}
.v2-header__nav-left .v2-nav__list {
  flex: 0 1 auto;
  justify-content: flex-end;
}
.v2-header__nav-right-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  min-width: 0;
  flex: 1;
  justify-self: stretch;
}
.v2-header__nav-right {
  justify-self: stretch;
  min-width: 0;
  flex: 0 1 auto;
}
.v2-header__nav-right .v2-nav__list {
  flex: 0 1 auto;
  justify-content: flex-start;
}

.v2-header-omne {
  display: none;
  align-items: center;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0.28rem 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--v2-text);
  font-size: var(--v2-nav-font);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--v2-transition), color var(--v2-transition), border-color var(--v2-transition), box-shadow var(--v2-transition);
}

@media (min-width: 961px) {
  .v2-header-omne {
    display: inline-flex;
  }
}

.v2-header-omne:hover,
.v2-header-omne:focus-visible {
  color: var(--v2-accent-dark);
  background: rgba(224, 152, 64, 0.1);
  border-color: rgba(224, 152, 64, 0.22);
  box-shadow: 0 2px 10px rgba(224, 152, 64, 0.12);
}

.v2-header-omne.is-current {
  color: var(--v2-accent-dark);
  background: rgba(224, 152, 64, 0.14);
  border-color: rgba(224, 152, 64, 0.35);
  box-shadow: inset 0 -2px 0 var(--v2-accent);
}
.v2-header__mobile { display: none; }

.v2-logo { display: inline-flex; align-items: center; justify-content: center; color: var(--v2-text); text-decoration: none; line-height: 0; }
.v2-logo img, .v2-logo__img {
  display: block;
  max-height: var(--v2-logo-height);
  width: auto;
  max-width: min(340px, 48vw);
  height: auto;
  object-fit: contain;
  transition: max-height var(--v2-transition);
}
.v2-header .v2-logo__img--light {
  max-width: min(250px, 20vw);
}
.v2-header.is-scrolled .v2-logo img,
.v2-header.is-scrolled .v2-logo__img { max-height: var(--v2-logo-height-scrolled); }
.v2-logo--footer img, .v2-logo--footer .v2-logo__img { max-height: 44px; max-width: 180px; }
.v2-logo__text { font-family: var(--v2-serif); font-size: 1.5rem; line-height: 1.2; }

.v2-nav__list {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--v2-nav-gap);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.v2-nav__list--left { justify-content: flex-end; }
.v2-nav__list--right { justify-content: flex-start; }
.v2-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--v2-text);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--v2-nav-font);
  padding: 0.28rem 0.4rem;
  min-height: 36px;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid transparent;
  letter-spacing: 0.03em;
  transition: background var(--v2-transition), color var(--v2-transition), border-color var(--v2-transition), box-shadow var(--v2-transition);
}
.v2-nav__list > li > a:hover,
.v2-nav__list > li > a:focus-visible {
  color: var(--v2-accent-dark);
  background: rgba(224, 152, 64, 0.1);
  border-color: rgba(224, 152, 64, 0.22);
  box-shadow: 0 2px 10px rgba(224, 152, 64, 0.12);
}
.v2-nav__list > li > a[aria-current="page"] {
  color: var(--v2-accent-dark);
  background: rgba(224, 152, 64, 0.14);
  border-color: rgba(224, 152, 64, 0.35);
  box-shadow: inset 0 -2px 0 var(--v2-accent);
}
.v2-nav__list > li.menu-item--featured > a {
  color: var(--v2-accent-dark);
  background: rgba(224, 152, 64, 0.1);
  font-weight: 600;
  border-color: rgba(201, 162, 39, 0.3);
}
.v2-header__mobile .v2-nav__list > li.menu-item--featured > a {
  background: rgba(224, 152, 64, 0.08);
}
.v2-nav__chevron {
  flex-shrink: 0;
  transition: transform var(--v2-transition);
}
.menu-item-has-children.is-open > a .v2-nav__chevron { transform: rotate(180deg); }
.v2-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + .35rem);
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: .5rem 0;
  list-style: none;
  background: var(--v2-glass-bg-scrolled);
  backdrop-filter: blur(var(--v2-glass-blur)) saturate(1.15);
  -webkit-backdrop-filter: blur(var(--v2-glass-blur)) saturate(1.15);
  border: 1px solid var(--v2-glass-border);
  border-radius: var(--v2-radius-sm);
  box-shadow: var(--v2-glass-shadow);
  z-index: 120;
}
.v2-nav__list .menu-item-has-children { position: relative; }
.v2-nav__list .menu-item-has-children:focus-within > .sub-menu,
.v2-nav__list .menu-item-has-children.is-open > .sub-menu { display: block; }
.v2-nav__list .sub-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: .45rem 1rem;
  white-space: nowrap;
  color: var(--v2-text);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--v2-nav-font);
  border-radius: var(--v2-radius-sm);
  transition: background var(--v2-transition), color var(--v2-transition);
}
.v2-nav__list .sub-menu a:hover,
.v2-nav__list .sub-menu a:focus-visible { color: var(--v2-accent-dark); background: rgba(224, 152, 64, 0.1); }
.v2-nav__list .sub-menu a[aria-current="page"] { color: var(--v2-accent-dark); background: rgba(224, 152, 64, 0.12); }

.v2-nav__mega {
  display: none;
  position: absolute;
  top: calc(100% + .35rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 320px;
  padding: .85rem;
  background: var(--v2-glass-bg-scrolled);
  backdrop-filter: blur(var(--v2-glass-blur)) saturate(1.15);
  -webkit-backdrop-filter: blur(var(--v2-glass-blur)) saturate(1.15);
  border: 1px solid var(--v2-glass-border);
  border-radius: var(--v2-radius);
  box-shadow: var(--v2-glass-shadow);
  z-index: 120;
}
.v2-nav__list .menu-item--mega:focus-within > .v2-nav__mega,
.v2-nav__list .menu-item--mega.is-open > .v2-nav__mega { display: block; }
.v2-nav__mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .15rem .75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.v2-nav__mega-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: .4rem .65rem;
  color: var(--v2-text);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--v2-nav-font);
  white-space: nowrap;
  border-radius: var(--v2-radius-sm);
  transition: background var(--v2-transition), color var(--v2-transition);
}
.v2-nav__mega-links a:hover,
.v2-nav__mega-links a:focus-visible { color: var(--v2-accent-dark); background: rgba(224, 152, 64, 0.1); }
.v2-nav__mega-links a[aria-current="page"] { color: var(--v2-accent-dark); background: rgba(224, 152, 64, 0.12); }
.v2-nav__mega-footer {
  margin-top: .65rem;
  padding-top: .65rem;
  border-top: 1px solid var(--v2-border);
  text-align: center;
}
.v2-nav__mega-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .35rem .75rem;
  color: var(--v2-accent-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--v2-nav-font);
  border-radius: 999px;
  transition: background var(--v2-transition), color var(--v2-transition);
}
.v2-nav__mega-footer a:hover,
.v2-nav__mega-footer a:focus-visible { color: var(--v2-accent); background: rgba(224, 152, 64, 0.12); }

.v2-cart {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  flex: 0 0 auto;
  min-height: 44px;
  margin-left: 0.15rem;
  padding: .35rem 0.55rem .35rem 0.7rem;
  text-decoration: none;
  color: var(--v2-text);
  font-weight: 600;
  border-radius: 999px;
  border-left: 1px solid rgba(28, 21, 16, 0.1);
  transition: background var(--v2-transition), color var(--v2-transition);
}
.v2-cart:hover,
.v2-cart:focus-visible { color: var(--v2-accent-dark); background: rgba(224, 152, 64, 0.12); }
.v2-cart__icon { display: inline-flex; line-height: 0; flex-shrink: 0; }
.v2-cart__icon svg { display: block; width: 20px; height: 20px; }
.v2-cart__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  gap: .05rem;
  min-width: 0;
}
.v2-cart__count {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .75;
}
.v2-cart__total {
  font-size: .88rem;
  font-weight: 700;
  color: var(--v2-accent-dark);
  white-space: nowrap;
}
.v2-cart__count--empty {
  font-size: .75rem;
  text-transform: none;
  letter-spacing: 0;
  opacity: .55;
}
.v2-header__mobile .v2-cart { display: none; }
.v2-nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; justify-self: start; grid-column: 1; }
.v2-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--v2-text); margin: 5px 0; }

/* Hero */
.v2-hero { background: linear-gradient(135deg, #2a1810 0%, #4a2c1a 55%, #1c1510 100%); color: #fff; padding: clamp(3rem, 8vw, 6rem) 0; }
.v2-hero__content { width: min(100% - 2rem, 720px); margin-inline: auto; }
.v2-hero__title { font-family: var(--v2-serif); font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; margin: 0 0 1rem; font-weight: 400; }
.v2-hero__text { font-size: 1.05rem; opacity: .92; margin: 0 0 1.5rem; max-width: 58ch; }

.v2-section { padding: var(--v2-space-xl) 0; }
.v2-section__title, .v2-page__title, .v2-article__title { font-family: var(--v2-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 1.5rem; font-weight: 400; }
.v2-about { padding: 3rem 0; background: var(--v2-bg-alt); }
.v2-about__inner { width: min(100% - 2rem, var(--v2-container)); margin-inline: auto; }
.v2-about h2 { font-family: var(--v2-serif); font-size: 2rem; margin-top: 0; }

.v2-page-o-mne .v2-container {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.v2-page-o-mne__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1.1rem, 2.5vw, 2rem);
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.v2-page-o-mne__figure {
  margin: 0;
  overflow: hidden;
}
.v2-page-o-mne__figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.v2-page-o-mne__figure--hero img {
  min-height: 360px;
  object-position: center 18%;
}
.v2-page-o-mne__intro {
  padding: clamp(1.1rem, 2.5vw, var(--v2-space-lg));
}
.v2-page-o-mne__intro .v2-page__title {
  margin-top: 0;
}
.v2-page-o-mne__intro .v2-lead {
  max-width: none;
  margin-bottom: 0;
}
.v2-page-o-mne__block,
.v2-page-o-mne__closing {
  font-size: 1.05rem;
  line-height: 1.7;
}
.v2-page-o-mne__block p,
.v2-page-o-mne__copy p,
.v2-page-o-mne__closing p {
  margin: 0 0 1rem;
}
.v2-page-o-mne__block p:last-child,
.v2-page-o-mne__copy p:last-child,
.v2-page-o-mne__closing p:last-child {
  margin-bottom: 0;
}
.v2-page-o-mne__split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.1rem, 2.5vw, 2rem);
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.v2-page-o-mne__split--reverse .v2-page-o-mne__figure {
  order: 2;
}
.v2-page-o-mne__split--reverse .v2-page-o-mne__copy {
  order: 1;
}
.v2-page-o-mne__copy {
  padding: clamp(1.1rem, 2.5vw, var(--v2-space-lg));
  font-size: 1.05rem;
  line-height: 1.7;
}
.v2-page-o-mne__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.v2-page-o-mne__gallery-item {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.v2-page-o-mne__gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}
.v2-page-o-mne__gallery-item figcaption {
  padding: 0.75rem 1rem 1rem;
  font-family: var(--v2-serif);
  font-size: 1rem;
  text-align: center;
  color: var(--v2-accent-dark);
}
.v2-page-o-mne__photo-title {
  font-family: var(--v2-serif);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.3;
  margin: 0 0 0.65rem !important;
  color: var(--v2-accent-dark);
}
.v2-page-o-mne__welcome {
  font-family: var(--v2-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.35;
  margin-top: 1.25rem !important;
}
.v2-page-o-mne__link {
  margin: 1.35rem 0 0 !important;
}
@media (max-width: 860px) {
  .v2-page-o-mne__hero,
  .v2-page-o-mne__split {
    grid-template-columns: 1fr;
  }
  .v2-page-o-mne__split--reverse .v2-page-o-mne__figure,
  .v2-page-o-mne__split--reverse .v2-page-o-mne__copy {
    order: unset;
  }
  .v2-page-o-mne__figure--hero img {
    min-height: 300px;
    max-height: 420px;
  }
  .v2-page-o-mne__gallery {
    grid-template-columns: 1fr;
  }
}

.v2-usp { padding: 2.5rem 0 1rem; }
.v2-usp__reviews-wrap {
  max-width: 760px;
  margin: 0 auto 1.25rem;
}
.v2-usp__reviews-carousel {
  position: relative;
}
.v2-usp__reviews-track {
  position: relative;
  overflow: visible;
}
.v2-usp__review {
  margin: 0;
  padding: 1.15rem 1.35rem;
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
}
.v2-usp__reviews-slide {
  display: none;
  width: 100%;
}
.v2-usp__reviews-slide.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}
.v2-usp__review-text {
  margin: 0 0 .75rem;
  font-style: italic;
  font-size: .98rem;
  line-height: 1.55;
}
.v2-usp__review-meta {
  display: flex;
  gap: .75rem;
  align-items: center;
  font-size: .82rem;
}
.v2-usp__review-meta cite { font-style: normal; font-weight: 600; }
.v2-usp__review-rating { color: #c9a227; }
.v2-usp__reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: .85rem;
}
.v2-usp__reviews-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--v2-border);
  border-radius: 50%;
  background: #fff;
  color: var(--v2-text);
  cursor: pointer;
  transition: background var(--v2-transition), color var(--v2-transition), border-color var(--v2-transition);
}
.v2-usp__reviews-nav:hover,
.v2-usp__reviews-nav:focus-visible {
  color: var(--v2-accent-dark);
  border-color: rgba(224, 152, 64, 0.45);
  background: rgba(224, 152, 64, 0.1);
}
.v2-usp__reviews-nav span {
  font-size: 1.35rem;
  line-height: 1;
  margin-top: -2px;
}
.v2-usp__reviews-dots {
  display: flex;
  gap: .45rem;
  align-items: center;
}
.v2-usp__reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(28, 21, 16, 0.22);
  cursor: pointer;
  transition: background var(--v2-transition), transform var(--v2-transition);
}
.v2-usp__reviews-dot.is-active {
  background: var(--v2-accent);
  transform: scale(1.15);
}
.v2-usp__reviews-source {
  text-align: center;
  margin: .75rem 0 0;
  font-size: .88rem;
}
.v2-usp__reviews-source a {
  color: var(--v2-accent-dark);
  font-weight: 600;
  text-decoration: none;
}
.v2-usp__reviews-source a:hover,
.v2-usp__reviews-source a:focus-visible { color: var(--v2-accent); text-decoration: underline; }
.v2-usp__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.v2-usp__item { background: #fff; border: 1px solid var(--v2-border); border-radius: var(--v2-radius); padding: 1.25rem; text-align: center; }
.v2-usp__item h3 { margin: 0 0 .35rem; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--v2-accent); }
.v2-usp__item p { margin: 0; font-size: .95rem; }

/* Product grid — 4–5 sloupce desktop, reset WC float šířek */
#v2-products ul.products,
.v2-main ul.products,
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.35rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 2rem .5rem;
  width: 100%;
  overflow: visible;
}

#v2-products ul.products::before,
#v2-products ul.products::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
  content: none !important;
}

#v2-products ul.products li.product,
.v2-main ul.products li.product,
.woocommerce ul.products li.product {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
}

.v2-product-card {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  overflow: visible;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  padding-bottom: .55rem;
  transition: box-shadow var(--v2-transition);
  position: relative;
  z-index: 1;
}
.v2-product-card:hover {
  box-shadow: var(--v2-shadow-md);
  z-index: 5;
}
.v2-product-card__media {
  position: relative;
  flex: 0 0 auto;
}
.v2-product-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--v2-radius-sm) var(--v2-radius-sm) 0 0;
}
.v2-product-card__title-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.v2-product-card__title {
  font-family: var(--v2-serif);
  font-size: .98rem;
  font-weight: 400;
  margin: .55rem .65rem .15rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.v2-product-card__price {
  display: block;
  padding: .35rem .65rem .45rem;
  margin-top: .15rem;
  font-weight: 600;
  font-size: .94rem;
  position: relative;
  z-index: 2;
}
.v2-product-card img,
.v2-product-card .woocommerce-loop-product__link img,
.v2-product-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--v2-radius-sm) var(--v2-radius-sm) 0 0;
  transition: opacity 0.48s cubic-bezier(0.45, 0, 0.25, 1);
  backface-visibility: hidden;
  transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  .v2-product-card { transition: box-shadow var(--v2-transition); }
}
@media (max-width: 960px) {
  .v2-product-card:hover { box-shadow: var(--v2-shadow-md); }
}

.custom-add-to-cart-wrapper { text-align: center; margin-top: .45rem; padding: 0 .65rem; position: relative; z-index: 3; }
.custom-add-to-cart-wrapper .button,
.custom-add-to-cart-wrapper .v2-loop-cta,
.v2-product-card .button {
  display: inline-block !important; float: none !important;
  padding: .55rem 1rem !important; background: var(--v2-bg-alt) !important;
  color: var(--v2-text) !important; border-radius: 999px !important; font-size: .8rem !important;
  font-weight: 700 !important; text-transform: uppercase; letter-spacing: .05em;
  border: 0 !important;
  width: 100%;
  max-width: 100%;
  cursor: pointer;
}
.custom-add-to-cart-wrapper .button:hover,
.custom-add-to-cart-wrapper .v2-loop-cta:hover {
  background: var(--v2-accent) !important;
  color: #fff !important;
}

@media (max-width: 960px) {
  .custom-add-to-cart-wrapper .button,
  .custom-add-to-cart-wrapper .v2-loop-cta,
  .v2-product-card .button {
    font-size: .68rem !important;
    padding: .42rem .65rem !important;
    letter-spacing: .03em;
  }
}

/* Skryt duplicitní BIS tlačítko mimo CTA wrapper */
.v2-product-card > input.cwg_popup_submit {
  display: none !important;
}

.v2-product-card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  margin-top: .25rem;
  padding: 0 .65rem;
  position: relative;
  z-index: 3;
}
.v2-product-card__stock {
  font-size: .78rem;
  color: var(--v2-text);
  opacity: .62;
}
.v2-product-card__detail {
  font-size: .82rem;
  color: var(--v2-text);
  opacity: .72;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(28, 21, 16, 0.28);
}
.v2-product-card__detail:hover {
  opacity: 1;
  color: var(--v2-accent-dark);
  text-decoration-color: currentColor;
}

.popis-kategorie {
  margin: 0;
  line-height: 1.65;
}

.woocommerce-result-count { margin-bottom: 1rem; }

.v2-single-inquire { margin: 1rem 0; }
.v2-care, .v2-inquiry { margin: 2rem 0; padding: 1.5rem; background: #fff; border: 1px solid var(--v2-border); border-radius: var(--v2-radius); }
.v2-care__title, .v2-inquiry__title { font-family: var(--v2-serif); margin-top: 0; }
.v2-care__item { border-top: 1px solid var(--v2-border); padding: .75rem 0; }
.v2-care__item summary { cursor: pointer; font-weight: 600; font-family: var(--v2-serif); }
.v2-inquiry__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }

/* Footer — light modern */
.v2-footer {
  background: var(--v2-bg-alt);
  border-top: 1px solid var(--v2-border);
  margin-top: 3rem;
  color: var(--v2-text);
}
.v2-footer__main {
  padding: var(--v2-space-xl) 0 var(--v2-space-lg);
}
.v2-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: var(--v2-space-lg);
}
.v2-footer__col--blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
}
.v2-btn--footer-blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
  max-width: 16.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--v2-text);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(180, 140, 90, 0.45);
  box-shadow: 0 8px 28px rgba(120, 90, 50, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.v2-btn--footer-blog:hover {
  border-color: var(--v2-accent);
  box-shadow: 0 10px 32px rgba(160, 110, 60, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transform: translateY(-1px);
  color: var(--v2-text);
}
.v2-btn--footer-blog .v2-btn__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--v2-accent);
}
.v2-btn--footer-blog .v2-btn__label {
  font-family: var(--v2-serif);
  font-size: 1.05rem;
  line-height: 1.25;
}
.v2-footer__claim { margin: .75rem 0; font-size: .92rem; opacity: .85; max-width: 32ch; }
.v2-footer__email { font-weight: 600; text-decoration: none; color: var(--v2-text); }
.v2-footer__email:hover { color: var(--v2-accent); }
.v2-footer__menu { list-style: none; margin: 0; padding: 0; }
.v2-footer__menu a {
  display: inline-block;
  padding: .35rem 0;
  font-size: .92rem;
  color: var(--v2-text);
  text-decoration: none;
}
.v2-footer__menu a:hover { color: var(--v2-accent); }
.v2-footer__col-title {
  margin: 0 0 .65rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--v2-accent);
}
.v2-footer__usp { padding: var(--v2-space-md) 0; border-top: 1px solid var(--v2-border); }
.v2-ring-calculator {
  margin-top: 0;
  padding: 1.25rem 1.5rem;
}
.v2-ring-calculator__title {
  font-family: var(--v2-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin: 0 0 0.65rem;
  font-weight: 400;
}
.v2-ring-calculator__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}
.v2-ring-calculator__label {
  font-size: 0.88rem;
  font-weight: 600;
}
.v2-ring-calculator__input {
  width: 6.5rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius-sm);
  font: inherit;
}
.v2-ring-calculator__result {
  flex: 1 1 12rem;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}
.v2-ring-calculator__guide {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
}
.v2-ring-calculator__guide a {
  color: var(--v2-accent-dark);
  font-weight: 600;
  text-decoration: none;
}
.v2-ring-calculator__guide a:hover {
  color: var(--v2-accent);
}
.v2-footer__highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  gap: var(--v2-space-lg);
  align-items: start;
}
.v2-footer__highlight-blog {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: start;
}
.v2-footer__highlight-reviews {
  min-width: 0;
}
.v2-footer__highlight-reviews .v2-usp--footer-reviews {
  padding: 0;
}
.v2-footer__highlight-reviews .v2-usp__reviews-wrap {
  max-width: none;
  margin: 0;
  overflow: visible;
}
.v2-footer__highlight-reviews .v2-usp__reviews-source {
  text-align: center;
}
.v2-footer__usp .v2-usp { padding: 0; }
.v2-footer__usp .v2-usp__reviews-wrap { margin-bottom: .85rem; }
.v2-footer__usp .v2-usp__review { padding: .85rem 1rem; }
.v2-footer__usp .v2-usp__review-text { font-size: .88rem; margin-bottom: .55rem; }
.v2-footer__usp .v2-usp__item { padding: .85rem; }
.v2-footer__usp .v2-usp__item h3 { font-size: .82rem; }
.v2-footer__usp .v2-usp__item p { font-size: .85rem; }
.v2-footer__bar {
  background: #fff;
  border-top: 1px solid var(--v2-border);
  padding: .85rem 0;
  text-align: center;
  font-size: .85rem;
  opacity: .75;
}

.v2-page__content, .entry-content { font-size: 1.02rem; }
.v2-page__content h2, .entry-content h2 { font-family: var(--v2-serif); }

.related.products { margin-top: 3rem; }
.related.products h2 { font-family: var(--v2-serif); }

.verony-subcategories-grid {
  width: 100%;
  font-family: var(--v2-sans);
}
.verony-subcat-item { text-align: center; min-width: 0; }
.verony-subcat-link { text-decoration: none; color: inherit; display: block; }
.subcat-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin-inline: auto;
  object-fit: contain;
  border-radius: var(--v2-radius-sm);
  margin-bottom: .75rem;
  box-shadow: var(--v2-shadow-sm);
  background: #fff;
  border: 1px solid var(--v2-border);
  padding: .35rem;
}
.subcat-name { font-family: var(--v2-serif); font-size: 1.02em; margin: 0; font-weight: 600; line-height: 1.35; }

@media (min-width: 961px) {
  .verony-subcategories-grid {
    display: grid;
    grid-template-columns: repeat(var(--subcat-count, 1), minmax(0, 1fr));
    gap: clamp(0.4rem, 1vw, 1rem);
    justify-items: center;
    align-items: start;
  }
  .verony-subcat-item {
    width: 100%;
    max-width: min(200px, 100%);
  }
  .subcat-name {
    font-size: clamp(0.65rem, 0.35rem + 0.45vw, 1.02em);
  }
}

@media (max-width: 960px) {
  .verony-subcategories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
  }
  .verony-subcat-item {
    max-width: none;
    justify-self: stretch;
  }
  .subcat-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin-bottom: .4rem;
    padding: .25rem;
  }
  .subcat-name {
    font-size: clamp(0.72rem, 2.8vw, 0.88rem);
    line-height: 1.25;
  }
}

@media (max-width: 1400px) {
  #v2-products ul.products,
  .v2-main ul.products,
  .woocommerce ul.products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1500px) {
  :root {
    --v2-container-header: 1580px;
  }
}

@media (max-width: 1280px) and (min-width: 961px) {
  :root {
    --v2-nav-gap: 0.12rem;
    --v2-nav-font: clamp(0.72rem, 0.55vw + 0.52rem, 0.8rem);
    --v2-container-header: 100%;
  }
  .v2-header__inner.v2-container {
    width: min(100% - 1rem, 100%);
  }
  .v2-header__inner {
    column-gap: clamp(0.45rem, 1vw, 0.85rem);
  }
  .v2-nav__list > li > a,
  .v2-header-omne {
    padding: 0.26rem 0.34rem;
    letter-spacing: 0.025em;
  }
  .v2-header-favorites {
    padding: 0.3rem 0.55rem;
    font-size: 0.76rem;
  }
  .v2-cart {
    padding: 0.28rem 0.4rem 0.28rem 0.55rem;
  }
  .v2-header .v2-logo__img--light {
    max-width: min(220px, 18vw);
  }
}
@media (max-width: 960px) {
  :root {
    --v2-header-height: 52px;
    --v2-header-height-scrolled: 44px;
    --v2-logo-height: 36px;
    --v2-logo-height-scrolled: 34px;
  }

  #v2-products ul.products,
  .v2-main ul.products,
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
  .v2-usp__grid, .v2-footer__grid { grid-template-columns: 1fr; }
  .v2-footer__highlight {
    grid-template-columns: 1fr;
    gap: var(--v2-space-md);
  }
  .v2-footer__highlight-blog {
    justify-content: flex-start;
    align-self: start;
  }
  .v2-header__nav-left,
  .v2-header__nav-right { display: none; }
  .v2-header__inner {
    grid-template-areas:
      "cart logo menu"
      "mobile mobile mobile";
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-rows: minmax(var(--v2-header-height), auto) auto;
    align-items: center;
    column-gap: 0.5rem;
    row-gap: 0;
    padding-block: 0.3rem;
  }
  .v2-header.is-scrolled .v2-header__inner {
    grid-template-rows: minmax(var(--v2-header-height-scrolled), auto) auto;
    padding-block: 0.2rem;
  }
  .v2-header__nav-right-wrap {
    grid-area: cart;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    justify-self: start;
    align-self: center;
    min-height: 0;
  }
  .v2-header-omne {
    display: none;
  }
  .v2-cart {
    margin-left: 0;
    padding-left: 0.35rem;
    border-left: 0;
  }
  .v2-header__logo {
    grid-area: logo;
    justify-self: center;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
  }
  .v2-header .v2-logo img,
  .v2-header .v2-logo__img {
    max-width: min(120px, 34vw);
  }
  .v2-nav-toggle {
    grid-area: menu;
    grid-column: auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: end;
    align-self: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    transition: width var(--v2-transition), height var(--v2-transition);
  }
  .v2-nav-toggle span {
    width: 20px;
    margin: 4px 0;
    transition: width var(--v2-transition), margin var(--v2-transition);
  }
  .v2-header.is-scrolled .v2-nav-toggle {
    width: 32px;
    height: 32px;
  }
  .v2-header.is-scrolled .v2-nav-toggle span {
    width: 17px;
    margin: 3px 0;
  }
  .v2-header .v2-cart {
    min-height: 0;
    height: 40px;
    padding: 0.3rem 0.45rem;
    gap: 0.35rem;
  }
  .v2-header .v2-cart__icon svg {
    width: 18px;
    height: 18px;
  }
  .v2-header .v2-cart__meta {
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    line-height: 1;
  }
  .v2-header .v2-cart__count {
    font-size: 0.58rem;
    opacity: 0.7;
  }
  .v2-header .v2-cart__total {
    font-size: 0.72rem;
  }
  .v2-header__mobile {
    display: none;
    grid-area: mobile;
    padding: 0.65rem 0 0;
    border-top: 1px solid var(--v2-glass-border);
    margin-top: .35rem;
  }
  .v2-header__mobile.is-open {
    display: block;
    background: var(--v2-glass-header-bg);
    backdrop-filter: blur(var(--v2-glass-blur));
    -webkit-backdrop-filter: blur(var(--v2-glass-blur));
    margin-inline: calc(-1rem);
    padding-inline: 1rem;
    border-radius: 0 0 var(--v2-radius-sm) var(--v2-radius-sm);
  }
  .v2-header__mobile .v2-nav__list {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: .25rem;
  }
  .v2-header__mobile .v2-nav__list > li > a {
    justify-content: space-between;
    width: 100%;
    white-space: normal;
    min-height: 40px;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(224, 152, 64, 0.12);
    background: rgba(255, 255, 255, 0.35);
  }
  .v2-header__mobile .v2-nav__list > li > a:hover,
  .v2-header__mobile .v2-nav__list > li > a:focus-visible {
    border-color: rgba(224, 152, 64, 0.28);
    background: rgba(224, 152, 64, 0.1);
  }
  .v2-header__mobile .v2-nav__list .sub-menu,
  .v2-header__mobile .v2-nav__mega {
    position: static;
    display: none;
    transform: none;
    border: 0;
    box-shadow: none;
    min-width: 0;
    padding: .25rem 0 .25rem 1rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .v2-header__mobile .v2-nav__mega-links { grid-template-columns: 1fr; }
  .v2-header__mobile .v2-nav__mega-footer {
    border-top: 0;
    padding-top: .25rem;
    text-align: left;
  }
  .v2-header__mobile .menu-item-has-children.is-open > .sub-menu,
  .v2-header__mobile .menu-item-has-children.is-open > .v2-nav__mega { display: block; }

  .v2-header__mobile .v2-header-favorites--mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 0.25rem;
    padding: 0.35rem 0.65rem;
    min-height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(224, 152, 64, 0.12);
    background: rgba(255, 255, 255, 0.35);
    font-size: var(--v2-nav-font);
    white-space: normal;
  }

  .v2-header__mobile .v2-header-favorites--mobile:hover,
  .v2-header__mobile .v2-header-favorites--mobile:focus-visible {
    border-color: rgba(224, 152, 64, 0.28);
    background: rgba(224, 152, 64, 0.1);
    color: var(--v2-accent-dark);
  }
}
@media (prefers-reduced-motion: reduce) {
  .v2-nav__chevron { transition: none; }
}
@media (max-width: 720px) {
  .v2-inquiry__grid { grid-template-columns: 1fr; }
  .v2-main ul.products, .woocommerce ul.products { gap: 1.25rem; }
}
