@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --color-bg: #F7F1E8;
  --color-bg-alt: #FBF6EE;
  --color-bg-card: #FFFFFF;
  --color-bg-muted: #EFE5D3;
  --color-text: #2B2418;
  --color-text-muted: #6B5E4C;
  --color-text-soft: #9A8E7B;
  --color-accent: #B4854A;
  --color-accent-dark: #9A6F3A;
  --color-accent-light: #D4B17E;
  --color-border: #E5DBC8;
  --color-border-soft: #F0E8D8;
  --color-star: #C99B4A;
  --color-success: #7A9F5C;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fs-hero: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h1: clamp(2rem, 3.5vw, 3rem);
  --fs-h2: clamp(1.5rem, 2.5vw, 2rem);
  --fs-h3: 1.25rem;
  --fs-lead: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  --lh-tight: 1.15;
  --lh-normal: 1.6;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --ls-normal: 0;
  --ls-wide: 0.08em;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-md: 0 4px 12px rgba(43, 36, 24, 0.06);
  --shadow-lg: 0 12px 32px rgba(43, 36, 24, 0.08);
  --shadow-card: 0 2px 8px rgba(43, 36, 24, 0.05), 0 1px 2px rgba(43, 36, 24, 0.04);
  --transition-fast: 150ms ease;
  --container-max: 1200px;
  --container-padding: clamp(1rem, 4vw, 3rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-feature-settings: "kern" 1, "mark" 1, "mkmk" 1;
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
  color: var(--color-text);
}

h2 { font-size: var(--fs-h1); }
h3 { font-size: var(--fs-h3); }

.wrap {
  width: min(var(--container-max), calc(100% - (var(--container-padding) * 2)));
  margin-inline: auto;
}

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 246, 238, 0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 62px;
  object-fit: contain;
}

.brand-logo-footer {
  height: 94px;
  margin-bottom: var(--space-4);
}

.links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
}

.links a {
  padding-block: var(--space-2);
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.links a.active,
.links a:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.links a.nav-shop-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 var(--space-4);
  border: 1px solid var(--color-text);
  border-radius: var(--radius-sm);
  background: var(--color-text);
  color: white;
}

.links a.nav-shop-link:hover,
.links a.nav-shop-link.active {
  border-color: var(--color-accent-dark);
  background: var(--color-accent-dark);
  color: white;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  padding: var(--space-2) 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: var(--fw-semibold);
}

.nav-dropdown-trigger::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  margin-top: 0;
  padding: var(--space-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-card);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: var(--space-3) var(--space-4);
  border-bottom: 0;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--color-bg-alt);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.currency-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #ebe9e2;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.currency-switch a {
  min-width: 38px;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.currency-switch a.is-active {
  background: var(--color-text);
  color: white;
}

.language-switch a.is-active {
  background: #b4854a;
}

.icon-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-text);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b4854a;
  color: white;
  font-size: 0.68rem;
  font-weight: var(--fw-bold);
  line-height: 1;
}

.cart-icon,
.user-icon {
  width: 16px;
  height: 16px;
  position: relative;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 10px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.cart-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.mobile-menu-toggle {
  display: none;
  width: 34px;
  min-height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  align-items: center;
  justify-content: center;
  padding: 0;
  font: inherit;
}

.mobile-menu-toggle span {
  width: 17px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu-toggle span + span {
  margin-top: 5px;
}

.mobile-menu-toggle strong {
  margin-top: 2px;
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0;
}

.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(43, 36, 24, .32);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(86vw, 360px);
  height: 100vh;
  padding: var(--space-5);
  flex-direction: column;
  gap: var(--space-5);
  overflow-y: auto;
  background: var(--color-bg-alt);
  border-left: 1px solid var(--color-border);
  box-shadow: -16px 0 40px rgba(43, 36, 24, .16);
  transform: translateX(100%);
  transition: transform 320ms ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-backdrop.is-open {
  opacity: 1;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.mobile-menu-head img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.mobile-menu-close {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: white;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  width: 16px;
  height: 1.5px;
  background: var(--color-text);
}

.mobile-menu-close::before {
  transform: rotate(45deg);
}

.mobile-menu-close::after {
  transform: rotate(-45deg);
}

.mobile-menu-links {
  display: grid;
  gap: var(--space-2);
  font-weight: var(--fw-semibold);
}

.mobile-menu-links a,
.mobile-menu-links summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu-links summary {
  cursor: pointer;
  list-style: none;
}

.mobile-menu-links summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-links details a {
  min-height: 38px;
  padding-left: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

.mobile-menu-switches {
  margin-top: auto;
  padding-top: var(--space-4);
  display: grid;
  gap: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.mobile-menu-switches > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.mobile-menu-switches span {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
}

body.is-mobile-menu-open {
  overflow: hidden;
}

.user-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.user-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 1px;
  width: 12px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 10px 10px 0 0;
  border-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: 0 var(--space-5);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: white;
  font-weight: var(--fw-bold);
  box-shadow: var(--shadow-md);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.btn:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-1px);
}

.form .btn,
.form button[type="submit"],
.checkout .btn,
.checkout button[type="submit"],
.reservation-form .btn,
.reservation-form button,
.booking-form .btn,
.booking-form button {
  color: #fff !important;
}

.form .btn:disabled,
.form button[type="submit"]:disabled,
.checkout .btn:disabled,
.checkout button[type="submit"]:disabled,
.reservation-form .btn:disabled,
.reservation-form button:disabled,
.booking-form .btn:disabled,
.booking-form button:disabled {
  color: #fff !important;
  opacity: 1;
}

.btn.ghost {
  background: transparent;
  color: var(--color-accent);
  box-shadow: none;
}

.section { padding: var(--space-8) 0; }
.section-tight { padding-top: 0; }
.text-center { text-align: center; }
.mb-6 { margin-bottom: var(--space-6); }

.eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent);
}

.muted { color: var(--color-text-muted); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.card-body { padding: var(--space-5); }
.price { font-size: 1.375rem; font-weight: var(--fw-bold); color: var(--color-accent-dark); }

.payment-box h2 {
  margin-bottom: var(--space-4);
}

.payment-qr {
  width: 260px;
  height: 260px;
  margin-top: var(--space-4);
  border: 1px solid var(--color-border);
  background: white;
}

.payment-method-note {
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
}

.payment-method-note[hidden] {
  display: none;
}

.payment-method-note p {
  margin: var(--space-2) 0 0;
  color: var(--color-text-muted);
}

.payment-method-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.payment-method-options span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0 var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  font-weight: 700;
}


.form { display: grid; gap: var(--space-4); }

.form-grid {
  display: grid;
  gap: var(--space-3);
}

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

.checkout-toggle {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-weight: 700;
  line-height: 1.45;
}

.checkout-toggle input {
  margin-top: .2rem;
  accent-color: var(--color-accent);
}

.checkout-collapsible {
  display: grid;
  gap: var(--space-3);
}

.checkout-collapsible[hidden] {
  display: none;
}

.checkout-company-fields {
  margin-top: calc(-1 * var(--space-1));
}

.checkout-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  align-items: start;
}

.checkout-summary {
  align-self: start;
  position: sticky;
  top: calc(var(--space-6) + 90px);
  padding: var(--space-5);
}

.checkout-summary-head {
  margin-bottom: var(--space-4);
}

.checkout-summary-head h2 {
  font-size: 1.65rem;
}

.checkout-summary-products {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.checkout-summary-product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: var(--space-3);
  align-items: center;
  border: 1px solid var(--color-border);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  background: var(--color-bg-card);
}

.checkout-summary-product img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--color-bg-muted);
}

.checkout-summary-product-main {
  min-width: 0;
}

.checkout-summary-product-main strong,
.checkout-summary-product-main span {
  display: block;
}

.checkout-summary-product-main strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.15;
}

.checkout-summary-product-main span {
  margin-top: var(--space-1);
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

.checkout-summary-product-price {
  white-space: nowrap;
  color: var(--color-accent-dark);
}

.checkout-summary-totals {
  border-top: 1px solid var(--color-border);
}

.checkout-total-line {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  color: var(--color-text-muted);
}

.checkout-total-line strong {
  color: var(--color-text);
  white-space: nowrap;
}

.checkout-total-line-final {
  margin-top: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
  font-size: 1.22rem;
  color: var(--color-text);
}

.product-filter {
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 320px) auto;
  align-items: center;
  margin-bottom: var(--space-6);
}

.product-filter .btn {
  min-height: 46px;
  white-space: nowrap;
}

.input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: white;
  font: inherit;
}

.input:focus {
  outline: 2px solid rgba(180, 133, 74, 0.25);
  border-color: var(--color-accent);
}

.notice {
  padding: var(--space-4) var(--space-5);
  background: #eef5e9;
  border: 1px solid #cfddc6;
  margin: var(--space-5) auto;
}

.home-hero {
  position: relative;
  min-height: 456px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fffdf9 0%, #fffdf9 30%, rgba(255,253,249,.72) 48%, rgba(255,253,249,0) 67%),
    url("/images/home/hero.png") right top / auto 100% no-repeat;
}

.farm-page-hero {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.farm-page-hero .split {
  align-items: center;
}

.farm-page-hero h1 {
  font-size: var(--fs-hero);
  margin: var(--space-3) 0 var(--space-5);
}

.farm-page-hero .lead,
.farm-copy p {
  color: var(--color-text-muted);
  font-size: var(--fs-lead);
}

.farm-page-hero img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.farm-info-strip {
  margin-top: var(--space-6);
}

.farm-copy {
  align-items: start;
}

.farm-visit {
  align-items: start;
}

#navstivte-nas {
  padding-top: var(--space-8);
}

.awards-section {
  background: var(--color-bg-alt);
  border-block: 1px solid var(--color-border);
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.award-card {
  min-height: 180px;
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-card);
}

.award-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.gallery-hero {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, .94), rgba(255, 253, 249, .82)),
    url("/images/farma/venkovni-pohled.jpg") center / cover no-repeat;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

.gallery-tabs a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: 0 var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: white;
  color: var(--color-text);
  font-weight: var(--fw-bold);
  text-decoration: none;
}

.gallery-tabs a.active,
.gallery-tabs a:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: white;
}

.gallery-tabs span {
  opacity: .72;
  font-size: var(--fs-small);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: start;
}

.gallery-card {
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-card);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  transition: transform .22s ease;
}

.gallery-card a {
  display: block;
  cursor: zoom-in;
}

.gallery-card a:hover img {
  transform: scale(1.025);
}

.gallery-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4);
  color: var(--color-text-soft);
  font-size: var(--fs-small);
}

.gallery-card strong {
  color: var(--color-text);
}

.contact-hero {
  background: var(--color-bg-alt);
}

.contact-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.contact-card {
  min-height: 220px;
}

.contact-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.contact-details {
  align-items: start;
}

.contact-dl {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-5) 0 0;
}

.contact-dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.contact-dl dt {
  color: var(--color-text-soft);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  font-size: var(--fs-small);
}

.contact-dl dd {
  margin: 0;
  color: var(--color-text);
  overflow-wrap: anywhere;
}

.contact-write .btn {
  margin-right: var(--space-3);
  margin-top: var(--space-3);
}

.contact-map {
  margin-top: var(--space-6);
}

.has-gallery-lightbox {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(48px, 1fr) minmax(0, 1120px) minmax(48px, 1fr);
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  background: rgba(17, 24, 39, .88);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox figure {
  grid-column: 2;
  margin: 0;
}

.gallery-lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  margin: 0 auto;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

.gallery-lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  max-width: 100%;
  margin: var(--space-4) auto 0;
  color: white;
}

.gallery-lightbox figcaption span {
  color: rgba(255, 255, 255, .72);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: white;
  cursor: pointer;
}

.gallery-lightbox-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
}

.gallery-lightbox-close::before,
.gallery-lightbox-close::after {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.gallery-lightbox-close::before {
  transform: rotate(45deg);
}

.gallery-lightbox-close::after {
  transform: rotate(-45deg);
}

.gallery-lightbox-nav {
  align-self: center;
}

.gallery-lightbox-prev {
  grid-column: 1;
  justify-self: end;
}

.gallery-lightbox-next {
  grid-column: 3;
  justify-self: start;
}

.gallery-lightbox-prev::before,
.gallery-lightbox-next::before {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
}

.gallery-lightbox-prev::before {
  transform: rotate(-45deg);
}

.gallery-lightbox-next::before {
  transform: rotate(135deg);
}

.award-logo {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  padding: 0 var(--space-4);
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-accent-dark);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.opening-hours dl {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-5) 0;
}

.opening-hours dl div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.opening-hours dt {
  font-weight: var(--fw-bold);
}

.opening-hours dd {
  margin: 0;
  color: var(--color-text-muted);
  text-align: right;
}

.farm-contact-card .btn {
  margin-top: var(--space-3);
}

.farm-map {
  margin-top: var(--space-5);
}

.farm-map iframe {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.event-hero {
  background: var(--color-bg-alt);
}

.degustace-hero {
  background: var(--color-bg-alt);
}

.degustace-helpdesk {
  position: fixed;
  left: max(5px, calc((100vw - var(--wrap)) / 2 - 78px));
  top: 154px;
  z-index: 40;
  display: flex;
  align-items: center;
}

.degustace-helpdesk-tab {
  display: grid;
  place-items: center;
  width: 44px;
  min-height: 178px;
  padding: var(--space-3) 0;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-text);
  color: white;
  box-shadow: var(--shadow-md);
  cursor: default;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .82rem;
  font-weight: var(--fw-bold);
  letter-spacing: .02em;
  text-align: center;
}

.degustace-helpdesk-panel {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  margin-left: var(--space-3);
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg-card);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.degustace-helpdesk:hover .degustace-helpdesk-panel,
.degustace-helpdesk:focus-within .degustace-helpdesk-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.degustace-helpdesk-panel a {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: white;
  color: var(--color-accent);
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.degustace-helpdesk-panel a:hover {
  transform: translateY(-2px);
  background: var(--color-accent);
  color: white;
}

.helpdesk-phone span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + var(--space-3));
  transform: translateX(-50%) translateY(6px);
  min-width: max-content;
  padding: 9px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-text);
  color: white;
  box-shadow: var(--shadow-md);
  font-size: .9rem;
  font-weight: var(--fw-bold);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.helpdesk-phone:hover span,
.helpdesk-phone:focus span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.degustace-helpdesk-panel svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.degustace-helpdesk-panel .whatsapp-icon {
  width: 30px;
  height: 30px;
}

.degustace-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.degustace-info .split,
.degustace-gift .split {
  align-items: start;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.step-card {
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-card);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: var(--space-3);
  border-radius: 999px;
  background: var(--color-accent);
  color: white;
  font-weight: var(--fw-bold);
}

.step-card h3 {
  margin-bottom: var(--space-2);
}

.step-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.degustace-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: var(--space-5);
}

.degustace-menu {
  position: relative;
}

.degustace-menu h2 {
  margin: var(--space-1) 0 var(--space-3);
  font-size: 2rem;
}

.degustace-menu ul {
  display: grid;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.degustace-menu li {
  color: #514840;
  line-height: 1.55;
}

.degustace-gift {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, .94), rgba(255, 253, 249, .86)),
    url("/images/farma/chlebicky.jpg") center / cover no-repeat;
}

.reservation-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: var(--space-6);
  align-items: start;
  margin-bottom: var(--space-6);
}

#rezervace {
  padding-top: var(--space-8);
}

#rezervace .wrap {
  overflow: visible;
}

.event-card-grid .service-card img {
  height: 220px;
  object-fit: cover;
}

.home-hero .wrap {
  min-height: 456px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 440px;
  padding: 46px 0 92px;
}

.hero-copy h1 {
  font-size: var(--fs-hero);
  margin-bottom: var(--space-5);
}

.hero-copy h1 span {
  display: block;
  color: var(--color-accent);
}

.hero-copy p {
  font-size: var(--fs-lead);
  color: var(--color-text);
  margin: 0 0 var(--space-5);
}

.hero-panel {
  position: relative;
  margin-top: -46px;
  z-index: 4;
}

.hero-panel-after-services {
  margin-top: 0;
  margin-bottom: var(--space-7);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.info-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
}

.info-item + .info-item { border-left: 1px solid var(--color-border); }

.line-icon {
  width: 42px;
  height: 42px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  position: relative;
  color: var(--color-accent);
}

.line-icon.calendar::before,
.line-icon.gift::before,
.line-icon.pin::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px solid currentColor;
}

.line-icon.calendar::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 16px;
  border-top: 1.5px solid currentColor;
}

.line-icon.gift::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  border-left: 1.5px solid currentColor;
}

.line-icon.pin {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.line-icon.pin::before {
  border-radius: 50%;
  transform: rotate(45deg);
}

.info-item h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-2);
}

.link-arrow {
  display: inline-flex;
  gap: var(--space-2);
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
  margin-top: var(--space-2);
}

.service-card { position: relative; }
.service-card img { width: 100%; height: 180px; object-fit: cover; }

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  color: var(--color-accent);
  box-shadow: var(--shadow-md);
  margin-top: -42px;
  margin-left: var(--space-5);
  position: relative;
}

.service-icon::before {
  content: "";
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.service-card h3 {
  font-size: 1.875rem;
  margin: var(--space-3) 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
}

.check-list li {
  position: relative;
  margin: var(--space-2) 0;
  padding-left: 30px;
  color: #514840;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 20px;
  height: 20px;
  background: url("/images/icons/snail.avif") center / contain no-repeat;
}

.external-list-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.external-list-link svg {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.external-list-link:hover {
  color: var(--color-accent);
}

.why {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
  margin-top: var(--space-5);
}

.why-full {
  max-width: 100%;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
  text-align: center;
}

.why-item {
  display: grid;
  gap: var(--space-3);
  place-items: center;
  font-weight: var(--fw-semibold);
}

.why-icon {
  width: 44px;
  height: 44px;
  position: relative;
  color: var(--color-accent);
}

.why-icon.leaf::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 22px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 100% 0 100% 0;
  transform: rotate(-28deg);
}

.why-icon.leaf::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 23px;
  width: 18px;
  border-top: 2px solid currentColor;
  transform: rotate(-24deg);
}

.why-icon.hand::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 24px;
  width: 28px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  transform: rotate(-12deg);
}

.why-icon.hand::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 8px;
  width: 8px;
  height: 24px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(34deg);
}

.why-icon.medal::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 25px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.why-icon.medal::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 29px;
  width: 14px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: skew(-18deg);
}

.why-icon.heart::before,
.why-icon.heart::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 16px;
  height: 24px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.why-icon.heart::before { left: 8px; transform: rotate(-45deg); }
.why-icon.heart::after { right: 8px; transform: rotate(45deg); }

.why-icon.star {
  clip-path: polygon(50% 4%, 61% 36%, 95% 36%, 67% 56%, 78% 91%, 50% 70%, 22% 91%, 33% 56%, 5% 36%, 39% 36%);
  background: currentColor;
}

.why-icon.star::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--color-bg);
  clip-path: inherit;
}

.rating {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.rating strong { font-size: 1.75rem; }
.stars { color: var(--color-star); letter-spacing: 0; }

.promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.promo-card {
  min-height: 190px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  box-shadow: var(--shadow-card);
}

.promo-card .copy { padding: var(--space-6); }
.promo-card img { width: 100%; height: 100%; object-fit: cover; }

.section-gastro {
  background: var(--color-bg-alt);
  border-block: 1px solid var(--color-border);
}

.gastro-panel {
  align-items: center;
}

.gastro-panel .lead,
.social-panel p {
  color: var(--color-text-muted);
  font-size: var(--fs-lead);
}

.gastro-panel img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.gastro-list {
  margin-top: var(--space-5);
}

.reviews-section {
  background: var(--color-bg-card);
  border-block: 1px solid var(--color-border);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.review-card {
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.review-head strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--fw-regular);
}

.review-score {
  display: grid;
  gap: var(--space-1);
  margin: var(--space-4) 0;
  color: var(--color-text-muted);
}

.review-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--color-accent-dark);
}

.review-card .link-arrow {
  margin-top: auto;
}

.slevomat-logo {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 var(--space-4);
  border-radius: 999px;
  background: #e9366f;
  color: white;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: var(--fw-bold) !important;
}

.social-section {
  padding-top: var(--space-7);
}

.trusted-section {
  background: var(--color-bg-alt);
  border-block: 1px solid var(--color-border);
}

.partner-carousel {
  overflow: hidden;
  margin-top: var(--space-6);
  padding: var(--space-2) 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.partner-track {
  display: flex;
  gap: var(--space-5);
  width: max-content;
  animation: partner-scroll 34s linear infinite;
}

.partner-carousel:hover .partner-track {
  animation-play-state: paused;
}

.partner-logo {
  display: grid;
  place-items: center;
  flex: 0 0 calc((var(--wrap) - (var(--space-5) * 4)) / 5);
  min-width: 180px;
  height: 118px;
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: var(--shadow-card);
}

.partner-logo img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter: saturate(.92);
}

@keyframes partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - (var(--space-5) / 2))); }
}

.social-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-muted);
}

.social-links {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.social-links a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-accent-dark);
  background: rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
}

.social-links-large {
  margin-top: 0;
}

.social-note {
  margin-top: var(--space-4);
}

.logo-row {
  text-align: center;
  margin-top: var(--space-7);
}

.logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
  flex-wrap: wrap;
  margin-top: var(--space-5);
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
}

.logos span { font-family: var(--font-display); }

.featured-products {
  background: var(--color-bg-alt);
  border-block: 1px solid var(--color-border);
}

.featured-products .card img {
  height: 210px;
  object-fit: cover;
}

.featured-products .card h3 { font-size: 1.5rem; }
.featured-products .card .muted { min-height: 50px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: stretch;
}

.product-grid .product-card {
  min-width: 0;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.product-card-media {
  display: block;
  background: var(--color-bg-alt);
}

.product-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--space-3);
}

.product-card-kicker {
  display: block;
  color: var(--color-accent);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-card h3 {
  margin: 0;
  line-height: 1.18;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.product-card h3 a {
  display: -webkit-box;
  min-height: calc(1.18em * 2);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card-body .muted {
  display: -webkit-box;
  min-height: calc(1.55em * 3);
  overflow: hidden;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: auto;
}

.product-card-footer form {
  margin: 0;
}

.product-card-footer .price {
  margin: 0;
  white-space: nowrap;
}

.product-card-button {
  min-height: 40px;
  padding-inline: var(--space-4);
  white-space: nowrap;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  padding-top: var(--space-5);
  color: var(--color-text-soft);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.product-breadcrumbs a:hover {
  color: var(--color-accent);
}

.product-breadcrumbs strong {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}

.product-detail-hero {
  padding: var(--space-5) 0 var(--space-8);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: var(--space-8);
  align-items: start;
}

.product-gallery-main {
  position: relative;
  display: grid;
  min-height: 420px;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-card);
  cursor: zoom-in;
  padding: 0;
  width: 100%;
  color: inherit;
  font: inherit;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-placeholder {
  padding: var(--space-7);
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  text-align: center;
}

.product-gallery-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 var(--space-4);
  border-radius: 999px;
  background: rgba(251, 246, 238, 0.92);
  color: var(--color-accent-dark);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.product-thumb {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  cursor: pointer;
  padding: 0;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.product-thumb:hover,
.product-thumb.is-active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(180, 133, 74, 0.18);
}

.product-thumb:hover {
  transform: translateY(-1px);
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-buy-panel {
  position: sticky;
  top: 104px;
}

.product-detail-eyebrow {
  display: inline-flex;
  margin-bottom: var(--space-3);
  color: var(--color-accent);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.product-buy-panel h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

.product-stars {
  color: var(--color-star);
  letter-spacing: 0.08em;
}

.product-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-border);
}

.product-detail-lead {
  margin: var(--space-5) 0 0;
  color: var(--color-text-muted);
  font-size: var(--fs-lead);
}

.product-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: baseline;
  margin-top: var(--space-5);
}

.product-price-row strong {
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.product-price-row span {
  color: var(--color-text-soft);
  font-size: var(--fs-small);
}

.product-cart-form {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.product-cart-form label {
  display: grid;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.product-cart-form .btn {
  align-self: end;
  min-height: 50px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 44px minmax(56px, 1fr) 44px;
  align-items: stretch;
  overflow: hidden;
  min-height: 50px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
}

.quantity-control button {
  border: 0;
  background: var(--color-bg-alt);
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.quantity-control button:hover {
  background: var(--color-accent);
  color: #fff;
}

.quantity-control .input {
  min-height: 48px;
  border: 0;
  border-inline: 1px solid var(--color-border);
  border-radius: 0;
  background: #fff;
  text-align: center;
  -moz-appearance: textfield;
}

.quantity-control .input::-webkit-outer-spin-button,
.quantity-control .input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.product-service-grid {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.product-service-grid div {
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
}

.product-service-grid strong,
.product-service-grid span {
  display: block;
}

.product-service-grid span {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

.product-quick-specs,
.product-spec-card dl {
  display: grid;
  margin: var(--space-5) 0 0;
}

.product-quick-specs div,
.product-spec-card dl div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-soft);
}

.product-quick-specs dt,
.product-spec-card dt {
  color: var(--color-text-muted);
}

.product-quick-specs dd,
.product-spec-card dd {
  margin: 0;
  color: var(--color-text);
  font-weight: var(--fw-semibold);
  text-align: right;
}

.product-detail-section {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border);
}

.product-detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--space-7);
  align-items: start;
}

.product-tabs {
  position: sticky;
  top: 76px;
  z-index: 4;
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  margin-bottom: var(--space-6);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}

.product-tabs a {
  flex: 0 0 auto;
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
}

.product-tabs a:hover {
  color: var(--color-accent-dark);
}

.product-content-block {
  scroll-margin-top: 140px;
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-border-soft);
}

.product-content-block:first-of-type {
  padding-top: 0;
}

.product-content-block h2,
.product-spec-card h2,
.product-review-grid h2 {
  margin-bottom: var(--space-4);
}

.product-rich-text {
  color: var(--color-text-muted);
}

.product-rich-text p:first-child {
  margin-top: 0;
}

.product-rich-text img {
  height: auto;
  margin: var(--space-5) 0;
  border-radius: var(--radius-md);
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.product-info-grid div,
.product-steps div {
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
}

.product-info-grid h3 {
  margin-bottom: var(--space-2);
}

.product-info-grid p,
.product-steps p {
  margin: 0;
  color: var(--color-text-muted);
}

.product-steps {
  display: grid;
  gap: var(--space-3);
}

.product-steps span {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--color-accent);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
}

.product-detail-aside {
  display: grid;
  gap: var(--space-4);
  position: sticky;
  top: 104px;
}

.product-spec-card {
  background: var(--color-bg-alt);
}

.product-spec-card dl {
  margin-top: 0;
}

.product-reviews-section {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.product-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 220px;
  gap: var(--space-5);
  align-items: stretch;
}

.review-summary-card {
  display: grid;
  align-content: center;
  gap: var(--space-2);
  min-height: 150px;
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  box-shadow: var(--shadow-card);
}

.review-summary-card strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
}

.review-summary-card span {
  color: var(--color-text-muted);
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-6);
  background: rgba(43, 36, 24, 0.88);
}

.is-lightbox-open {
  overflow: hidden;
}

.product-lightbox figure {
  display: grid;
  gap: var(--space-3);
  justify-items: center;
  margin: 0;
}

.product-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.product-lightbox figcaption {
  color: #fff;
  text-align: center;
}

.product-lightbox-close,
.product-lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font: inherit;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.product-lightbox-close:hover,
.product-lightbox-nav:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.22);
}

.product-lightbox-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  line-height: 1;
}

.product-lightbox-nav {
  width: 56px;
  height: 56px;
  font-size: 2.4rem;
  line-height: 1;
}

.product-lightbox-prev {
  justify-self: start;
}

.product-lightbox-next {
  justify-self: end;
}

.cart-page h1 {
  margin-bottom: var(--space-5);
}

.cart-form {
  display: grid;
  gap: var(--space-4);
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 130px;
  gap: var(--space-5);
  align-items: center;
}

.cart-row-product {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  min-width: 0;
}

.cart-row-product img {
  width: 86px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-row-product strong,
.cart-row-product span {
  display: block;
}

.cart-row-product span {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

.cart-quantity {
  min-height: 44px;
}

.cart-quantity .input {
  min-height: 42px;
}

.cart-row-total {
  justify-self: end;
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  gap: var(--space-5);
  align-items: center;
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.cart-summary div {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-5) 0 var(--space-6);
}

.blog-categories a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-muted);
  font-weight: var(--fw-semibold);
}

.blog-categories a.is-active,
.blog-categories a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
  background: transparent;
}

.blog-grid {
  align-items: stretch;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blog-card .link-arrow {
  margin-top: auto;
}

.blog-detail-wrap {
  max-width: 860px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  margin-bottom: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

.breadcrumbs a {
  color: var(--color-accent-dark);
  font-weight: var(--fw-semibold);
}

.breadcrumbs strong {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}

.blog-detail h1 {
  margin: var(--space-3) 0;
}

.blog-detail-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin: var(--space-5) 0;
}

.blog-content {
  font-size: var(--fs-lead);
  color: var(--color-text);
}

.blog-content p {
  margin: 0 0 var(--space-5);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-7);
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.pagination-link {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-text);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.pagination-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.pagination-link.is-active {
  background: var(--color-text);
  border-color: var(--color-text);
  color: white;
}

.pagination-link.is-disabled,
.pagination-ellipsis {
  color: var(--color-text-soft);
  pointer-events: none;
  opacity: 0.52;
}

.pagination-arrow {
  min-width: 46px;
}

.pagination-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-list {
  display: grid;
  gap: var(--space-4);
}

.calendar-shell {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-5);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.calendar-head h3 {
  margin: 0;
}

.calendar-nav {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: white;
  color: var(--color-text);
  font-size: 2rem;
  line-height: 1;
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.calendar-nav:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekday {
  padding: var(--space-3) var(--space-4);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  text-align: center;
}

.calendar-weekday:nth-child(7n) {
  border-right: 0;
}

.calendar-day {
  min-height: 154px;
  padding: var(--space-3);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.64);
}

.calendar-day:nth-child(7n) {
  border-right: 0;
}

.calendar-day.is-muted {
  background: rgba(245, 239, 229, 0.54);
}

.calendar-day.is-muted .calendar-date {
  color: var(--color-text-soft);
}

.calendar-date {
  margin-bottom: var(--space-2);
  color: var(--color-text);
  font-weight: var(--fw-bold);
}

.calendar-slots {
  display: grid;
  gap: var(--space-2);
}

.calendar-slot {
  width: 100%;
  min-height: 54px;
  padding: var(--space-2) var(--space-3);
  border: 1px solid rgba(191, 112, 45, 0.32);
  border-radius: var(--radius-sm);
  background: rgba(191, 112, 45, 0.1);
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.calendar-slot:hover {
  border-color: var(--color-accent);
  background: rgba(191, 112, 45, 0.18);
  transform: translateY(-1px);
}

.calendar-slot strong,
.calendar-slot span {
  display: block;
}

.calendar-slot span {
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
}

.tour-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.tour-capacity {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 var(--space-3);
  border-radius: 999px;
  background: var(--color-bg-alt);
  color: var(--color-accent-dark);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  white-space: nowrap;
}

.reservation-form label {
  display: grid;
  gap: var(--space-2);
  font-weight: var(--fw-semibold);
}

body.modal-open {
  overflow: hidden;
}

.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}

.tour-modal.is-open {
  display: flex;
}

.tour-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 21, 34, 0.56);
}

.tour-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.tour-modal-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: white;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.footer {
  background: linear-gradient(180deg, var(--color-bg-alt), var(--color-bg-muted));
  border-top: 1px solid var(--color-border);
  padding: var(--space-7) 0 var(--space-5);
  margin-top: var(--space-7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.3fr;
  gap: var(--space-7);
}

.footer h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
}

.footer p,
.footer a { color: var(--color-text-muted); }

.footer-legal-links {
  display: grid;
  gap: 0.45rem;
  margin-top: var(--space-3);
  font-size: var(--fs-small);
}

.footer-legal-links a {
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-5);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-5);
  margin-top: var(--space-6);
  font-size: var(--fs-small);
  color: var(--color-text-soft);
}

.legal-page {
  max-width: 960px;
}

.legal-content {
  margin-top: var(--space-5);
  color: var(--color-text);
}

.legal-content h3,
.legal-content h4 {
  margin: var(--space-6) 0 var(--space-3);
  font-family: var(--font-serif);
  line-height: 1.15;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
  line-height: 1.75;
}

.legal-content p,
.legal-content ul {
  margin-bottom: var(--space-3);
}

.legal-content ul {
  padding-left: 1.25rem;
}

@media (max-width: 1180px) {
  .reservation-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .links { display: none; }
  .nav {
    gap: var(--space-3);
  }
  .nav-icons > .currency-switch {
    display: none;
  }
  .mobile-menu-toggle {
    display: grid;
  }
  .mobile-menu-backdrop {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid,
  .split,
  .footer-grid,
  .info-strip,
  .why,
  .why-list,
  .promo,
  .award-grid,
  .contact-grid,
  .review-grid,
  .reservation-heading,
  .social-panel,
  .product-detail-grid,
  .product-detail-columns,
  .product-info-grid,
  .product-review-grid { grid-template-columns: 1fr; }
  .form-grid.two {
    grid-template-columns: 1fr;
  }
  .checkout-summary {
    position: static;
  }
  .checkout-summary-product {
    grid-template-columns: 52px minmax(0, 1fr);
  }
  .checkout-summary-product-price {
    grid-column: 2;
  }
  .product-buy-panel,
  .product-detail-aside,
  .product-tabs {
    position: static;
  }
  .product-gallery-main {
    min-height: 280px;
  }
  .product-cart-form {
    grid-template-columns: 1fr;
  }
  .product-lightbox {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    padding: var(--space-4);
  }
  .product-lightbox figure {
    grid-column: 1 / -1;
    align-self: center;
  }
  .product-lightbox img {
    max-height: calc(100vh - 180px);
  }
  .product-lightbox-prev {
    grid-column: 1;
    justify-self: start;
  }
  .product-lightbox-next {
    grid-column: 2;
    justify-self: end;
  }
  .cart-row {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .cart-row-total {
    justify-self: start;
  }
  .cart-summary {
    display: block;
  }
  .cart-summary div {
    justify-content: flex-start;
    margin-top: var(--space-4);
  }
  .product-gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .product-filter {
    grid-template-columns: 1fr;
  }
  .degustace-helpdesk {
    left: var(--space-3);
    top: auto;
    bottom: var(--space-4);
  }
  .degustace-helpdesk-tab {
    width: 40px;
    min-height: 150px;
    font-size: .76rem;
  }
  .degustace-helpdesk-panel {
    margin-left: var(--space-2);
    padding: var(--space-2);
  }
  .degustace-helpdesk-panel a {
    width: 46px;
    height: 46px;
  }
  .helpdesk-phone span {
    display: none;
  }
  .partner-logo {
    flex-basis: 220px;
  }
  .nav { min-height: 68px; }
  .brand-logo { height: 48px; }
  .brand-logo-footer { height: 78px; }
  .section { padding: var(--space-7) 0; }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-lightbox {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    padding: var(--space-5);
  }
  .gallery-lightbox figure {
    grid-column: 1 / -1;
    align-self: center;
  }
  .gallery-lightbox img {
    max-height: calc(100vh - 180px);
  }
  .gallery-lightbox-prev {
    grid-column: 1;
    justify-self: start;
  }
  .gallery-lightbox-next {
    grid-column: 2;
    justify-self: end;
  }
  .contact-dl div {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }
  .step-grid {
    grid-template-columns: 1fr;
  }
  .degustace-aside {
    position: static;
  }
  .home-hero {
    background:
      linear-gradient(180deg, rgba(255,253,249,.95), rgba(255,253,249,.82)),
      url("/images/home/hero.png") center / cover no-repeat;
  }
  .home-hero .wrap { min-height: 520px; }
  .hero-copy { padding: var(--space-7) 0; }
  .info-item + .info-item {
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }
  .promo-card { grid-template-columns: 1fr; }
  .promo-card img { height: 190px; }
  .gastro-panel img { min-height: 220px; }
  .opening-hours dl div { display: block; }
  .opening-hours dd { text-align: left; }
  .social-links-large { margin-top: var(--space-3); }
  .logos { gap: var(--space-5); font-size: 1.4rem; }
  .calendar-head { gap: var(--space-3); }
  .calendar-grid { grid-template-columns: 1fr; }
  .calendar-weekday { display: none; }
  .calendar-day {
    min-height: auto;
    border-right: 0;
  }
  .calendar-day.is-muted:empty { display: none; }
  .tour-card-head { display: block; }
  .tour-capacity { margin-top: var(--space-3); }
  .tour-modal { padding: var(--space-3); }
  .tour-modal-panel { padding: var(--space-5); }
  .footer-bottom { display: block; }
}

@media (max-width: 620px) {
  .partner-logo {
    flex-basis: 72vw;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-hero,
  .product-detail-section,
  .product-reviews-section {
    padding-block: var(--space-6);
  }
  .product-breadcrumbs {
    font-size: 0.68rem;
  }
  .product-gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .quantity-control {
    grid-template-columns: 42px minmax(48px, 1fr) 42px;
  }
  .product-lightbox-nav {
    width: 48px;
    height: 48px;
  }
  .product-quick-specs div,
  .product-spec-card dl div {
    display: block;
  }
  .product-quick-specs dd,
  .product-spec-card dd {
    margin-top: var(--space-1);
    text-align: left;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
