/**
* Template Name: botickylulu
* Template https://botickylulu.cz/
* Updated: 1.2.2026
* Author: Fresh Mill studio, tvoba webovych stranek
* License: https://freshmill.cz
*/

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
´

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: #222;
  background-color: #fff;
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;

}

a {
  color: #e46193;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222222;
  font-family: "Playfair Display", serif;
}

p {
  font-family: "DM Sans", sans-serif;
}


@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/* 991px ↓ – trochu méně vertikálního prostoru */
@media (max-width: 991px) {
  section {
    padding: 50px 0;
  }
}

/* 768px ↓ – tablet na výšku */
@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}

/* 767px ↓ – kdybys chtěl ladit zvlášť menší layouty, necháváme stejné padyngy */
@media (max-width: 767px) {
  section {
    padding: 40px 0;
  }
}

/* 575px ↓ – mobil, ať to není kilometry dlouhé */
@media (max-width: 575px) {
  section {
    padding: 35px 0;
  }
}

/* 425px ↓ – malé telefony */
@media (max-width: 425px) {
  section {
    padding: 32px 0;
  }
}

/* 375px ↓ – ještě malinko méně */
@media (max-width: 375px) {
  section {
    padding: 30px 0;
  }
}

/* 320px ↓ – úplné minimum */
@media (max-width: 320px) {
  section {
    padding: 28px 0;
  }
}

/*--------------------------------------------------------------
# NAVIGACE
--------------------------------------------------------------*/
/* NAVBAR */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e8e4de;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 25px;
  color: #e46193 !important;
  line-height: 1;
  text-decoration: none;
  text-align: center;
}

.navbar-brand span {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: #222;
  font-weight: 400;
}

/* MENU */

.navbar .navbar-nav a {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #222 !important;
  padding: 0 1rem !important;
}

.navbar .navbar-nav a:hover {
  color: #e46193 !important;
}

.navbar-icons a {
  color: #222;
  font-size: 1.2rem;
  margin-left: 0.75rem;
  text-decoration: none;
}

.navbar-icons a:hover {
  color: #e46193;
}

.navbar-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-icons a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-icons i {
  font-size: 1.3rem;
}

/* BADGE */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #e46193;
  color: #fff;
  font-size: 0.9rem;
  padding: 3px 8px;
  border-radius: 50px;
  line-height: 1;
  min-width: 18px;
  text-align: center;
}

/* ─── SEARCH POPUP ─── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #222;
  padding: 0.25rem;
  transition: color 0.2s;
}

.search-close:hover {
  color: #e46193;
}

.search-inner {
  width: 100%;
  max-width: 620px;
  padding: 0 1.5rem;
  text-align: center;
}

.search-label {
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
}

.search-input-row {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  gap: 0.8rem;
}

.search-input-row input {
  flex: 1;
  border: none;
  outline: none;
  font-style: italic;
  font-size: 2rem;
  color: #222;
  background: transparent;
  caret-color: #e46193;
}

.search-input-row input::placeholder {
  color: #ccc;
}

.search-input-row .search-icon {
  color: #ccc;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.search-tags-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #222;
  margin-bottom: 0.8rem;
}

.search-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.search-tag {
  border: 1.5px solid #ddd;
  background: #fff;
  color: #222;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}

.search-tag:hover {
  border-color: #222;
  background: #222;
  color: #fff;
}

/* Search results dropdown */
.search-results {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 400px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background 0.2s;
}

.search-result-item:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #222;
}

.search-result-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.sr-name {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
}

.sr-price {
  font-size: 0.85rem;
  color: #e63b6f;
  white-space: nowrap;
}

/* ─── CART DRAWER ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: #fff;
  z-index: 1600;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.12);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid #f0ece7;
}

.drawer-header h3 {
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  margin: 0;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #222;
  padding: 0.25rem;
  transition: color 0.2s;
  line-height: 1;
}

.drawer-close:hover {
  color: #e46193;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.4rem 1.6rem;
}

/* Empty state */
.drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  color: #bbb;
  text-align: center;
}

.drawer-empty i {
  font-size: 2.8rem;
}

.drawer-empty p {
  font-size: 0.88rem;
  margin: 0;
}

.drawer-empty a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #222;
  padding-bottom: 1px;
  transition: color 0.2s;
}

.drawer-empty a:hover {
  color: #e46193;
  border-color: #e46193;
}

/* Drawer item */
.drawer-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #f0ece7;
}

.drawer-item:last-child {
  border-bottom: none;
}

.drawer-item-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8e0f5;
}

.drawer-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drawer-item-info {
  flex: 1;
  min-width: 0;
}

.drawer-item-cat {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #e46193;
  margin-bottom: 2px;
}

.drawer-item-name {
  font-family: "DM Sans", sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.drawer-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1.5px solid #e0dcd6;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #222;
  transition: all 0.2s;
}

.qty-btn:hover {
  border-color: #222;
}

.qty-val {
  font-size: 0.88rem;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.drawer-item-price {
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.drawer-item-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0;
  margin-left: 0.25rem;
  transition: color 0.2s;
}

.drawer-item-remove:hover {
  color: #e46193;
}

.drawer-footer {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid #f0ece7;
}

.drawer-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.drawer-total-label {
  font-size: 0.82rem;
  color: #666;
}

.drawer-total-amount {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
}

.btn-checkout {
  width: 100%;
  background: #222;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-checkout:hover {
  background: #e46193;
}

/*--------------------------------------------------------------
# ELEMENTY
--------------------------------------------------------------*/
.logo .custom-logo-link img {
  width: 100%;
  height: 20px;
  object-fit: contain;
}
/* ============================================================
   NAVIGACE — kompletní CSS + responzivita
   Struktura: [LEFT MENU collapse] [LOGO střed] [RIGHT MENU + ikony collapse]
   Mobil:     [LOGO] [IKONY mobilní] [TOGGLER] → collapse rozbalí obě menu
   ============================================================ */

/* ─── NAVBAR BASE ─── */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e8e4de;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 25px;
  color: #e46193 !important;
  line-height: 1;
  text-decoration: none;
  text-align: center;
}

.navbar-brand span {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: #222;
  font-weight: 400;
}

/* ─── MENU LINKS ─── */
.navbar .navbar-nav a {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #222 !important;
  padding: 0 1rem !important;
}

.navbar .navbar-nav a:hover {
  color: #e46193 !important;
}

/* ─── DESKTOP LAYOUT: logo uprostřed přes CSS order ─── */
/* Container je flex řádek: [navLeft] [logo] [ikony-mobile] [toggler] [navLeft] [navRight] */
/* Na lg+ jsou collapse viditelné — přeřadíme je pomocí order */

.navbar .custom-logo-link,
.navbar .navbar-brand {
  order: 0; /* logo uprostřed */
}

#navLeft {
  order: -1; /* vlevo od loga */
  flex: 1;
}

#navRight {
  order: 1;  /* vpravo od loga */
  flex: 1;
}

.navbar-icons-mobile {
  order: 2;
}

.navbar-toggler {
  order: 3;
}

/* ─── IKONY DESKTOP (uvnitř #navRight collapse) ─── */
.navbar-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-icons a {
  color: #222;
  font-size: 1.2rem;
  margin-left: 0.75rem;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.navbar-icons a:hover {
  color: #e46193;
}

.navbar-icons i {
  font-size: 1.3rem;
}

/* ─── IKONY MOBIL (mimo collapse — výchozí: skryté) ─── */
.navbar-icons-mobile {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto; /* tlačí ikony doprava před toggler */
}

.navbar-icons-mobile a {
  color: #222;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.navbar-icons-mobile a:hover {
  color: #e46193;
}

.navbar-icons-mobile i {
  font-size: 1.3rem;
}

/* ─── BADGE ─── */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #e46193;
  color: #fff;
  font-size: 0.9rem;
  padding: 3px 8px;
  border-radius: 50px;
  line-height: 1;
  min-width: 18px;
  text-align: center;
}

/* ─── SEARCH POPUP ─── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #222;
  padding: 0.25rem;
  transition: color 0.2s;
}

.search-close:hover {
  color: #e46193;
}

.search-inner {
  width: 100%;
  max-width: 620px;
  padding: 0 1.5rem;
  text-align: center;
}

.search-label {
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
}

.search-input-row {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  gap: 0.8rem;
}

.search-input-row input {
  flex: 1;
  border: none;
  outline: none;
  font-style: italic;
  font-size: 2rem;
  color: #222;
  background: transparent;
  caret-color: #e46193;
}

.search-input-row input::placeholder {
  color: #ccc;
}

.search-input-row .search-icon {
  color: #ccc;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.search-tags-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #222;
  margin-bottom: 0.8rem;
}

.search-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.search-tag {
  border: 1.5px solid #ddd;
  background: #fff;
  color: #222;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}

.search-tag:hover {
  border-color: #222;
  background: #222;
  color: #fff;
}

.search-results {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 400px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background 0.2s;
}

.search-result-item:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #222;
}

.search-result-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.sr-name  { flex: 1; font-size: 0.9rem; font-weight: 500; }
.sr-price { font-size: 0.85rem; color: #e63b6f; white-space: nowrap; }

/* ─── CART DRAWER ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: #fff;
  z-index: 1600;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.12);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid #f0ece7;
}

.drawer-header h3 {
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #222;
  padding: 0.25rem;
  transition: color 0.2s;
  line-height: 1;
}

.drawer-close:hover { color: #e46193; }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.4rem 1.6rem;
}

.drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  color: #bbb;
  text-align: center;
}

.drawer-empty i    { font-size: 2.8rem; }
.drawer-empty p    { font-size: 0.88rem; margin: 0; }
.drawer-empty a    {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #222;
  padding-bottom: 1px;
  transition: color 0.2s;
}
.drawer-empty a:hover { color: #e46193; border-color: #e46193; }

.drawer-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #f0ece7;
}
.drawer-item:last-child { border-bottom: none; }

.drawer-item-img {
  width: 80px; height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8e0f5;
}
.drawer-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.drawer-item-info { flex: 1; min-width: 0; }

.drawer-item-cat {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #e46193;
  margin-bottom: 2px;
}

.drawer-item-name {
  font-family: "DM Sans", sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.drawer-item-qty { display: flex; align-items: center; gap: 0.5rem; }

.qty-btn {
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1.5px solid #e0dcd6;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #222;
  transition: all 0.2s;
}
.qty-btn:hover { border-color: #222; }

.qty-val { font-size: 0.88rem; font-weight: 500; min-width: 20px; text-align: center; }

.drawer-item-price { font-weight: 700; font-size: 0.95rem; white-space: nowrap; }

.drawer-item-remove {
  background: none; border: none;
  color: #ccc; cursor: pointer;
  font-size: 0.85rem; padding: 0;
  margin-left: 0.25rem;
  transition: color 0.2s;
}
.drawer-item-remove:hover { color: #e46193; }

.drawer-footer {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid #f0ece7;
}

.drawer-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.drawer-total-label  { font-size: 0.82rem; color: #666; }
.drawer-total-amount { font-size: 1rem; font-weight: 700; color: #222; }

.btn-checkout {
  width: 100%;
  background: #222;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-checkout:hover { background: #e46193; }

/* Logo */
.logo .custom-logo-link img {
  width: 100%;
  height: 20px;
  object-fit: contain;
}

@media only screen and (max-width: 991px) {
  img.custom-logo {
    width: auto;
    height: 45px;
    object-fit: contain;
  }
}

/* ============================================================
   RESPONZIVITA
   ============================================================ */

/* ─── max-width: 1199px ─── */
@media (max-width: 1199px) {
  .navbar .navbar-nav a {
    font-size: 14px;
    padding: 0 0.75rem !important;
  }

  .navbar-brand {
    font-size: 22px;
  }
}

/* ─── max-width: 991px ─── */
@media (max-width: 991px) {
  .navbar {
    padding: 0.6rem 0;
  }

  .navbar-brand {
    font-size: 20px;
  }

  /* Zobraz mobilní ikony, schuj desktopové */
  .navbar-icons-mobile {
    display: flex !important;
  }

  .navbar-icons {
    display: none !important;
  }

  /* Na mobilu resetuj order — collapse divy jdou za togglerem přirozeně */
  #navLeft,
  #navRight {
    order: unset;
    flex: unset;
  }

  /* Collapse zabere celou šířku pod navbar řádkem */
  .navbar-collapse {
    width: 100%;
    border-top: 1px solid #f0ece7;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.75rem;
    /* Zruší justify-content-end z #navRight na mobilu */
    justify-content: flex-start !important;
  }

  /* Skryje ikony desktop i uvnitř collapse na mobilu */
  .navbar-collapse .navbar-icons {
    display: none !important;
  }

  .navbar .navbar-nav a {
    font-size: 14px;
    padding: 0.55rem 0 !important;
    display: block;
    border-bottom: 1px solid #f5f3ee;
  }

  .navbar .navbar-nav .nav-item:last-child a {
    border-bottom: none;
  }
}

/* ─── max-width: 768px ─── */
@media (max-width: 768px) {
  .navbar {
    padding: 0.55rem 0;
  }

  .navbar-brand {
    font-size: 19px;
  }

  .navbar-brand span {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .navbar-icons-mobile {
    gap: 8px;
  }

  .navbar-icons-mobile i {
    font-size: 1.15rem;
  }

  .cart-badge {
    font-size: 0.75rem;
    padding: 2px 6px;
    top: -5px;
    right: -7px;
    min-width: 16px;
  }

  .cart-drawer {
    width: 100%;
  }
}

/* ─── max-width: 767px ─── */
@media (max-width: 767px) {
  .navbar {
    padding: 0.5rem 0;
  }

  .navbar-brand {
    font-size: 18px;
  }

  .navbar-icons-mobile {
    gap: 7px;
    margin-right: 0.4rem;
  }

  .navbar-icons-mobile i {
    font-size: 1.1rem;
  }

  .navbar .navbar-nav a {
    font-size: 13.5px;
    padding: 0.6rem 0 !important;
  }

  .search-inner {
    max-width: 100%;
    padding: 0 1.25rem;
  }

  .search-input-row input {
    font-size: 1.5rem;
  }

  .search-label {
    font-size: 1.2rem;
  }

  .drawer-header { padding: 1.1rem 1.25rem; }
  .drawer-body   { padding: 1.1rem 1.25rem; }
  .drawer-footer { padding: 1.1rem 1.25rem; }

  .drawer-item-img {
    width: 68px;
    height: 68px;
    border-radius: 8px;
  }

  .drawer-item-name { font-size: 0.88rem; }
}

/* ─── max-width: 601px ─── */
@media (max-width: 601px) {
  .navbar {
    padding: 0.45rem 0;
  }

  .navbar-brand {
    font-size: 17px;
  }

  .navbar-brand span {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .navbar-icons-mobile {
    gap: 6px;
  }

  .navbar-icons-mobile i {
    font-size: 1.1rem;
  }

  .cart-badge {
    font-size: 0.7rem;
    padding: 2px 5px;
    top: -5px;
    right: -6px;
    min-width: 15px;
  }

  .search-input-row input  { font-size: 1.3rem; }
  .search-label            { font-size: 1.1rem; margin-bottom: 1.25rem; }
  .search-input-row        { margin-bottom: 1.5rem; }
  .search-results          { max-height: 320px; }
  .search-result-item img  { width: 50px; height: 50px; }

  .drawer-item-img  { width: 62px; height: 62px; border-radius: 8px; }
  .drawer-item-name { font-size: 0.85rem; }
  .drawer-header h3 { font-size: 1.05rem; }
}

/* ─── max-width: 425px ─── */
@media (max-width: 425px) {
  .navbar-brand {
    font-size: 16px;
  }

  .navbar-brand span {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .navbar-icons-mobile {
    gap: 5px;
    margin-right: 0.3rem;
  }

  .navbar-icons-mobile i {
    font-size: 1.05rem;
  }

  .cart-badge {
    font-size: 0.65rem;
    padding: 1px 5px;
    top: -4px;
    right: -6px;
  }

  .search-close        { top: 1rem; right: 1.25rem; font-size: 1.3rem; }
  .search-label        { font-size: 1.05rem; margin-bottom: 1rem; }
  .search-input-row input { font-size: 1.15rem; }
  .search-tag          { font-size: 0.66rem; padding: 0.38rem 0.8rem; }
  .search-results      { max-height: 280px; }

  .drawer-item         { gap: 0.75rem; }
  .drawer-item-img     { width: 56px; height: 56px; border-radius: 7px; }
  .drawer-item-name    { font-size: 0.82rem; }
  .drawer-item-cat     { font-size: 0.58rem; }
  .drawer-total-label  { font-size: 0.78rem; }
  .drawer-total-amount { font-size: 0.95rem; }
  .btn-checkout        { padding: 13px 20px; font-size: 0.78rem; }
}

/* ─── max-width: 375px ─── */
@media (max-width: 375px) {
  .navbar {
    padding: 0.4rem 0;
  }

  .navbar-brand {
    font-size: 15px;
  }

  /* Tagline schovat — šetří místo v navbar řádku */
  .navbar-brand span {
    display: none;
  }

  .navbar-icons-mobile {
    gap: 4px;
    margin-right: 0.25rem;
  }

  .navbar-icons-mobile i {
    font-size: 1rem;
  }

  .cart-badge          { font-size: 0.62rem; top: -4px; right: -5px; }

  .search-input-row input { font-size: 1.05rem; }
  .search-label           { font-size: 1rem; }
  .search-tags-label      { font-size: 0.6rem; }
  .search-tag             { font-size: 0.62rem; padding: 0.35rem 0.7rem; }
  .search-results         { max-height: 240px; }
  .search-result-item     { gap: 0.75rem; }
  .search-result-item img { width: 44px; height: 44px; }
  .sr-name                { font-size: 0.84rem; }
  .sr-price               { font-size: 0.78rem; }

  .drawer-header  { padding: 1rem; }
  .drawer-body    { padding: 1rem; }
  .drawer-footer  { padding: 1rem; }
  .drawer-item-img { width: 52px; height: 52px; border-radius: 6px; }
  .qty-btn        { width: 24px; height: 24px; font-size: 0.85rem; }
  .qty-val        { font-size: 0.82rem; min-width: 16px; }
  .drawer-item-price { font-size: 0.88rem; }
  .btn-checkout   { padding: 12px 16px; font-size: 0.75rem; border-radius: 7px; }
}

/* ─── max-width: 320px ─── */
@media (max-width: 320px) {
  .navbar {
    padding: 0.35rem 0;
  }

  .navbar-brand {
    font-size: 14px;
  }

  .navbar-icons-mobile {
    gap: 3px;
    margin-right: 0.2rem;
  }

  .navbar-icons-mobile i {
    font-size: 0.95rem;
  }

  .cart-badge {
    font-size: 0.58rem;
    padding: 1px 4px;
    top: -3px;
    right: -5px;
    min-width: 13px;
  }

  .navbar-toggler      { padding: 0.2rem 0.4rem; }
  .navbar-toggler-icon { width: 1.1em; height: 1.1em; }

  .search-close           { top: 0.75rem; right: 1rem; font-size: 1.2rem; }
  .search-inner           { padding: 0 0.875rem; }
  .search-label           { font-size: 0.92rem; margin-bottom: 0.875rem; }
  .search-input-row input { font-size: 0.95rem; }
  .search-input-row       { padding-bottom: 0.4rem; margin-bottom: 1.25rem; gap: 0.5rem; }
  .search-tags-label      { font-size: 0.56rem; margin-bottom: 0.6rem; }
  .search-tag             { font-size: 0.58rem; padding: 0.3rem 0.6rem; }
  .search-tags            { gap: 0.35rem; }
  .search-results         { max-height: 200px; gap: 0.35rem; }
  .search-result-item     { gap: 0.6rem; padding: 0.4rem; }
  .search-result-item img { width: 38px; height: 38px; border-radius: 4px; }
  .sr-name                { font-size: 0.78rem; }
  .sr-price               { font-size: 0.72rem; }

  .drawer-header   { padding: 0.875rem; }
  .drawer-header h3 { font-size: 0.95rem; }
  .drawer-close    { font-size: 1.15rem; }
  .drawer-body     { padding: 0.875rem; }
  .drawer-footer   { padding: 0.875rem; }
  .drawer-item     { gap: 0.6rem; padding: 0.875rem 0; }
  .drawer-item-img { width: 48px; height: 48px; border-radius: 6px; }
  .drawer-item-name { font-size: 0.78rem; margin-bottom: 0.35rem; }
  .drawer-item-cat  { font-size: 0.55rem; }
  .qty-btn          { width: 22px; height: 22px; font-size: 0.8rem; border-radius: 5px; }
  .qty-val          { font-size: 0.78rem; }
  .drawer-item-price { font-size: 0.82rem; }
  .drawer-item-qty  { gap: 0.35rem; }
  .drawer-total-label  { font-size: 0.74rem; }
  .drawer-total-amount { font-size: 0.88rem; }
  .btn-checkout    { padding: 11px 14px; font-size: 0.72rem; border-radius: 6px; }
  .drawer-empty i  { font-size: 2.2rem; }
  .drawer-empty p  { font-size: 0.82rem; }
}
@media only screen and (max-width: 991px) {
  .navbar-icons-mobile {
    margin-left: 0 !important;
  }
}

/*--------------------------------------------------------------
# BUTTON
--------------------------------------------------------------*/
.btn-dark-round {
  background: #222;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-dark-round:hover {
  background: #e46193;
  color: #fff;
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
/* ─── FOOTER ─── */
footer {
  background: #222;
  color: #ccc;
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 35px;
  font-weight: 700;
  color: #e46193;
  line-height: 1;
}

.footer-brand-sub {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-size: 15px;
  color: #fff;
  display: block;
  margin-top: 2px;
}

.footer-desc {
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  max-width: 230px;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background-color: #2d2d2d;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  margin-right: 0.5rem;
  margin-top: 1.2rem;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  background-color: #e46193;
  color: #fff;
}

.footer-col-title {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 44px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.65rem;
}

footer ul a {
  color: #999;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

footer ul a:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  color: #aaa;
}

.footer-contact-item i {
  color: #fff;
  font-size: 0.9rem;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: #999;
}
/* ============================================================
   RESPONZIVITA — footer
   Breakpointy: 1199 | 991 | 768 | 767 | 601 | 425 | 375 | 320
   ============================================================ */

/* ─── max-width: 1199px ─── */
@media (max-width: 1199px) {
  .footer-brand {
    font-size: 30px;
  }

  .footer-col-title {
    margin-bottom: 36px;
  }

  .footer-desc {
    max-width: 200px;
  }
}

/* ─── max-width: 991px ─── */
@media (max-width: 991px) {
  footer {
    padding: 3rem 0 1.75rem;
  }

  .footer-brand {
    font-size: 28px;
  }

  .footer-desc {
    max-width: 100%;
    font-size: 14px;
    margin-top: 0.875rem;
  }

  .footer-col-title {
    margin-bottom: 28px;
    font-size: 14px;
  }

  footer ul a {
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: 2.25rem;
    padding-top: 1.25rem;
  }
}

/* ─── max-width: 768px ─── */
@media (max-width: 768px) {
  footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-brand {
    font-size: 26px;
  }

  .footer-brand-sub {
    font-size: 14px;
  }

  .footer-social a {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .footer-col-title {
    margin-bottom: 22px;
  }

  .footer-desc {
    font-size: 13.5px;
  }

  .footer-bottom {
    margin-top: 2rem;
    font-size: 0.76rem;
  }
}

/* ─── max-width: 767px ─── */
@media (max-width: 767px) {
  footer {
    padding: 2.25rem 0 1.5rem;
  }

  .footer-brand {
    font-size: 24px;
  }

  .footer-brand-sub {
    font-size: 13.5px;
  }

  .footer-desc {
    font-size: 13px;
    margin-top: 0.75rem;
    max-width: 100%;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
    font-size: 15px;
    border-radius: 7px;
    margin-right: 0.4rem;
    margin-top: 1rem;
  }

  .footer-col-title {
    font-size: 13.5px;
    margin-bottom: 18px;
    margin-top: 1.75rem;
  }

  footer ul li {
    margin-bottom: 0.55rem;
  }

  footer ul a {
    font-size: 13.5px;
  }

  .footer-contact-item {
    font-size: 0.84rem;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
  }

  .footer-bottom {
    margin-top: 1.75rem;
    padding-top: 1.1rem;
    font-size: 0.74rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ─── max-width: 601px ─── */
@media (max-width: 601px) {
  footer {
    padding: 2rem 0 1.25rem;
  }

  .footer-brand {
    font-size: 22px;
  }

  .footer-brand-sub {
    font-size: 13px;
  }

  .footer-desc {
    font-size: 12.5px;
    line-height: 1.65;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 14px;
    border-radius: 6px;
    margin-right: 0.35rem;
  }

  .footer-col-title {
    font-size: 13px;
    margin-bottom: 14px;
    margin-top: 1.5rem;
  }

  footer ul li {
    margin-bottom: 0.5rem;
  }

  footer ul a {
    font-size: 13px;
  }

  .footer-contact-item {
    font-size: 0.82rem;
  }

  .footer-contact-item i {
    font-size: 0.85rem;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    font-size: 0.72rem;
  }
}

/* ─── max-width: 425px ─── */
@media (max-width: 425px) {
  footer {
    padding: 1.75rem 0 1.1rem;
  }

  .footer-brand {
    font-size: 20px;
  }

  .footer-brand-sub {
    font-size: 12.5px;
  }

  .footer-desc {
    font-size: 12px;
    margin-top: 0.625rem;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    font-size: 14px;
    margin-top: 0.875rem;
  }

  .footer-col-title {
    font-size: 12.5px;
    margin-bottom: 12px;
    margin-top: 1.25rem;
  }

  footer ul li {
    margin-bottom: 0.45rem;
  }

  footer ul a {
    font-size: 12.5px;
  }

  .footer-contact-item {
    font-size: 0.78rem;
    gap: 0.45rem;
    margin-bottom: 0.45rem;
  }

  .footer-bottom {
    margin-top: 1.25rem;
    padding-top: 0.875rem;
    font-size: 0.7rem;
  }
}

/* ─── max-width: 375px ─── */
@media (max-width: 375px) {
  footer {
    padding: 1.5rem 0 1rem;
  }

  .footer-brand {
    font-size: 19px;
  }

  .footer-brand-sub {
    font-size: 12px;
  }

  .footer-desc {
    font-size: 11.5px;
    line-height: 1.62;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 13px;
    border-radius: 6px;
    margin-right: 0.3rem;
    margin-top: 0.8rem;
  }

  .footer-col-title {
    font-size: 12px;
    margin-bottom: 11px;
    margin-top: 1.1rem;
  }

  footer ul li {
    margin-bottom: 0.4rem;
  }

  footer ul a {
    font-size: 12px;
  }

  .footer-contact-item {
    font-size: 0.75rem;
    gap: 0.4rem;
  }

  .footer-contact-item i {
    font-size: 0.78rem;
  }

  .footer-bottom {
    margin-top: 1.1rem;
    padding-top: 0.75rem;
    font-size: 0.68rem;
  }
}

/* ─── max-width: 320px ─── */
@media (max-width: 320px) {
  footer {
    padding: 1.25rem 0 0.875rem;
  }

  .footer-brand {
    font-size: 17px;
  }

  .footer-brand-sub {
    font-size: 11.5px;
    margin-top: 1px;
  }

  .footer-desc {
    font-size: 11px;
    margin-top: 0.5rem;
    line-height: 1.6;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 12px;
    border-radius: 5px;
    margin-right: 0.25rem;
    margin-top: 0.7rem;
  }

  .footer-col-title {
    font-size: 11.5px;
    margin-bottom: 10px;
    margin-top: 1rem;
  }

  footer ul li {
    margin-bottom: 0.35rem;
  }

  footer ul a {
    font-size: 11.5px;
  }

  .footer-contact-item {
    font-size: 0.71rem;
    gap: 0.35rem;
    margin-bottom: 0.4rem;
  }

  .footer-contact-item i {
    font-size: 0.74rem;
  }

  .footer-bottom {
    margin-top: 1rem;
    padding-top: 0.625rem;
    font-size: 0.64rem;
  }
}

/*--------------------------------------------------------------
# KONTAKT
--------------------------------------------------------------*/
/* KONTAKT */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #e46193;
  margin-bottom: 0.75rem;
}

.contact-section h1 {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
}

.contact-section .intro {
  font-size: 16px;
  color: #999;
  line-height: 1.7;
}

/* Info blocks */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}

.contact-info-icon {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background: #fafaf9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e46193;
  font-size: 18px;
  margin-bottom: 0.9rem;
}

.contact-info-block .label {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}

.contact-info-block p {
  font-size: 16px;
  color: #999;
  line-height: 1.7;
  margin: 0;
}

.contact-info-block a {
  text-decoration: none;
  font-size: 16px;
  color: #999;
  line-height: 1.7;
  margin: 0;
}

.contact-info-block a:hover {
  color: #e46193;
  text-decoration: underline;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #fdf7f9;
  border-radius: 8px;
  color: #e46193;
  font-size: 14px;
  text-decoration: none;
  margin-right: 0.5rem;
  margin-top: 1.2rem;
  transition: border-color 0.2s, color 0.2s;
}

.social-icons a:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* ─── FORM CARD ─── */
.form-card {
  background: #f5f3ee;
  border-radius: 18px;
  padding: 2.5rem;
}

.form-card h2 {
  font-style: italic;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 25px;
}

.form-label-custom {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: #999;
  margin-bottom: 0.4rem;
  display: block;
}

.form-control-custom {
  width: 100%;
  background: #fff;
  border: 1.5px solid #e8e4de;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #222;
  outline: none;
  transition: border-color 0.2s;
}

.form-card br {
  display: none;
}

.form-control-custom:focus {
  border-color: #e8417a;
}

.form-control-custom::placeholder {
  color: #bbb;
}

textarea.form-control-custom {
  resize: none;
  height: 150px;
}

.btn-submit {
  background: #222;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.btn-submit i {
  padding-left: 0.5rem
}

.btn-submit:hover {
  background: #e46193;
}

/* ─── OPENING HOURS ─── */
.hours-section {
  background: #fff;
  border-top: 1px solid #f0ece7;
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.hours-header-icon {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background: #fafaf9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e46193;
  font-size: 18px;
  margin-bottom: 0;
}

.hours-header-label {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 0;
}

.hours-outer-card {
  background: #f5f3ee;
  border-radius: 20px;
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.days-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.day-block {
  padding: 1rem 0;
  border-bottom: 1px solid #e8e4de;
}

.day-block:nth-last-child(-n+2) {
  border-bottom: none;
}

.day-name {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #999;
  margin-bottom: 0.35rem;
}

.day-time {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}

.day-time.closed-text {
  color: #e46193;
}

.hours-note-text {
  font-size: 0.82rem;
  color: #999;
  font-style: italic;
  padding-top: 1rem;
}

.holiday-mini-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  min-width: 280px;
  max-width: 320px;
}

.holiday-mini-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.holiday-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e46193;
  flex-shrink: 0;
}

.holiday-mini-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #222;
}

.hol-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #f5f1ec;
}

.hol-row:last-of-type {
  border-bottom: none;
}

.hol-date {
  font-size: 0.82rem;
  color: #aaa;
  white-space: nowrap;
  flex-shrink: 0;
}

.hol-time {
  font-size: 0.82rem;
  color: #222;
  font-weight: 500;
  text-align: right;
}

.hol-row.hol-closed .hol-time {
  font-weight: 700;
  color: #222;
}

.hol-row.hol-normal .hol-time {
  color: #444;
  font-weight: 400;
}

.hol-row.hol-italic .hol-time {
  font-style: italic;
  color: #555;
  font-weight: 400;
}

.holiday-wish-text {
  margin-top: 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pink);
  text-align: center;
  line-height: 1.6;
  text-transform: uppercase;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #e46193;
  margin-bottom: 0.6rem;
}

.section-title-sm {
  font-family: "DM Sans", sans-serif;
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

/* Hours table */
.hours-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.hours-row {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid #f0ece7;
  gap: 1rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  min-width: 110px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.day-cs {
  font-size: 0.88rem;
  font-weight: 500;
  color: #222;
}

.day-en {
  font-size: 0.7rem;
  color: #999;
  letter-spacing: 0.04em;
}

.hours-time {
  font-size: 0.88rem;
  color: #444;
  flex: 1;
  text-align: right;
}

.hours-row.closed .hours-time {
  text-align: right;
}

.hours-row.closed .day-cs,
.hours-row.closed .day-en {
  color: #bbb;
}

.closed-badge {
  display: inline-block;
  background: #f8f0f3;
  color: #e46193;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
}

/* Notes */
.hours-note {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.7rem;
}

.hours-note i {
  color: #e46193;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hours-note p {
  font-size: 0.84rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* Holiday card */
.holiday-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.holiday-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.4rem;
  border-bottom: 1px solid #f0ece7;
  gap: 1rem;
}

.holiday-row:last-of-type {
  border-bottom: none;
}

.holiday-date {
  font-size: 0.88rem;
  font-weight: 500;
  color: #222;
  min-width: 160px;
}

.holiday-time {
  font-size: 0.88rem;
  color: #222;
  text-align: right;
}

.holiday-row.closed-row .holiday-date {
  color: #999;
}

.holiday-row.highlight-row {
  background: #f8f0f3;
}

.holiday-row.highlight-row .holiday-date {
  color: ##e46193;
  font-weight: 600;
}

.holiday-row.highlight-row .holiday-time {
  color: #e46193;
  font-weight: 500;
}

.holiday-wish {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1.1rem 1.4rem;
  border-top: 1px solid #f0ece7;
  background: #f5f3ee;
}

.holiday-wish i {
  color: ##e46193;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.holiday-wish p {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

.day-block.today {
  background: #fff;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  margin: 0.2rem -1rem;
  border-bottom: none !important;
  box-shadow: 0 2px 12px rgba(232, 65, 122, 0.10);
  position: relative;
}

.day-block.today::after {
  content: 'DNES';
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  background: #e46193;
  padding: 2px 7px;
  border-radius: 20px;
}

/* GALERIE */
.instagram-section {
  border-top: 1px solid #eee;
}

.instagram-section h2 {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.instagram-section .subtitle {
  font-size: 16px;
  color: #999;
  max-width: 320px;
  line-height: 1.7;
}

.btn-dark-round {
  background: #222;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-dark-round:hover {
  background: #e46193;
  color: #fff;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.insta-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  background: #e8e4de;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.insta-item:hover img {
  transform: scale(1.06);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay span {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ============================================================
   RESPONZIVITA — kontakt & galerie sekce
   Breakpointy: 1199 | 991 | 768 | 767 | 601 | 425 | 375 | 320
   ============================================================ */

/* ─── max-width: 1199px ─── */
@media (max-width: 1199px) {
  .contact-section h1,
  .instagram-section h2 {
    font-size: 38px;
  }

  .hours-outer-card {
    gap: 1.5rem;
  }

  .holiday-mini-card {
    min-width: 240px;
  }
}

/* ─── max-width: 991px ─── */
@media (max-width: 991px) {
  .contact-section h1,
  .instagram-section h2 {
    font-size: 34px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }

  .hours-outer-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .holiday-mini-card {
    min-width: unset;
    max-width: 100%;
  }

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

  .form-card {
    padding: 2rem;
  }
}

/* ─── max-width: 768px ─── */
@media (max-width: 768px) {
  .contact-section h1,
  .instagram-section h2 {
    font-size: 30px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
  }

  .days-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
  }

  .hours-outer-card {
    padding: 1.5rem;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .instagram-section .subtitle {
    max-width: 100%;
  }

  .section-title-sm {
    font-size: 1.5rem;
  }
}

/* ─── max-width: 767px ─── */
@media (max-width: 767px) {
  .contact-section h1,
  .instagram-section h2 {
    font-size: 28px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-info-icon {
    width: 48px;
    height: 48px;
    font-size: 16px;
    margin-bottom: 0.75rem;
  }

  .form-card {
    padding: 1.75rem 1.5rem;
    border-radius: 14px;
  }

  .form-card h2 {
    font-size: 21px;
    margin-bottom: 20px;
  }

  .days-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hours-outer-card {
    border-radius: 14px;
    padding: 1.25rem;
  }

  .day-block.today {
    margin: 0.2rem -0.75rem;
  }

  .hours-header-icon {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .section-title-sm {
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
  }
}

/* ─── max-width: 601px ─── */
@media (max-width: 601px) {
  .contact-section h1,
  .instagram-section h2 {
    font-size: 26px;
  }

  .contact-section .intro,
  .instagram-section .subtitle {
    font-size: 15px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  .days-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .day-block:nth-last-child(-n+2) {
    border-bottom: 1px solid #e8e4de;
  }

  .day-block:last-child {
    border-bottom: none;
  }

  .hours-outer-card {
    padding: 1rem 1.25rem;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-top: 1.75rem;
  }

  .btn-submit,
  .btn-dark-round {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .holiday-mini-card {
    padding: 1.1rem 1.2rem;
  }

  .hours-row {
    padding: 0.75rem 1rem;
  }

  .hours-day {
    min-width: 90px;
  }

  .holiday-row {
    padding: 0.75rem 1rem;
  }

  .holiday-date {
    min-width: 130px;
    font-size: 0.82rem;
  }

  .holiday-time {
    font-size: 0.82rem;
  }
}

/* ─── max-width: 425px ─── */
@media (max-width: 425px) {
  .contact-section h1,
  .instagram-section h2 {
    font-size: 24px;
  }

  .contact-info-grid {
    gap: 1rem;
  }

  .contact-info-block .label {
    font-size: 14px;
  }

  .contact-info-block p,
  .contact-info-block a {
    font-size: 14px;
  }

  .form-card {
    padding: 1.25rem 1rem;
  }

  .form-card h2 {
    font-size: 19px;
  }

  .form-control-custom {
    font-size: 14px;
    padding: 0.7rem 0.875rem;
  }

  textarea.form-control-custom {
    height: 130px;
  }

  .btn-submit {
    padding: 13px 20px;
    font-size: 13px;
  }

  .days-grid {
    grid-template-columns: 1fr;
  }

  .day-name {
    font-size: 0.65rem;
  }

  .day-time {
    font-size: 0.88rem;
  }

  .hours-outer-card {
    padding: 0.875rem 1rem;
    border-radius: 12px;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .section-eyebrow {
    font-size: 0.65rem;
  }

  .section-title-sm {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }

  .hours-note {
    padding: 0.875rem 1rem;
  }

  .hours-note p {
    font-size: 0.8rem;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .holiday-date {
    min-width: 110px;
    font-size: 0.8rem;
  }

  .holiday-time {
    font-size: 0.8rem;
  }
}

/* ─── max-width: 375px ─── */
@media (max-width: 375px) {
  .contact-section h1,
  .instagram-section h2 {
    font-size: 22px;
  }

  .form-card {
    padding: 1.1rem 0.875rem;
    border-radius: 10px;
  }

  .form-card h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .form-control-custom {
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
  }

  textarea.form-control-custom {
    height: 120px;
  }

  .contact-info-icon {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .hours-outer-card {
    padding: 0.75rem 0.875rem;
    border-radius: 10px;
  }

  .hours-header-icon {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .holiday-mini-card {
    padding: 0.875rem 1rem;
    border-radius: 10px;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
    margin-top: 1.5rem;
  }

  .insta-item {
    border-radius: 10px;
  }

  .hours-row {
    padding: 0.65rem 0.875rem;
  }

  .hours-day {
    min-width: 80px;
  }

  .day-cs {
    font-size: 0.82rem;
  }

  .day-en {
    font-size: 0.65rem;
  }

  .hours-time {
    font-size: 0.82rem;
  }

  .hol-date,
  .hol-time {
    font-size: 0.78rem;
  }

  .holiday-wish p {
    font-size: 0.78rem;
  }
}

/* ─── max-width: 320px ─── */
@media (max-width: 320px) {
  .contact-section h1,
  .instagram-section h2 {
    font-size: 20px;
  }

  .contact-section .intro,
  .instagram-section .subtitle {
    font-size: 13px;
  }

  .section-eyebrow {
    font-size: 0.62rem;
  }

  .contact-info-block .label {
    font-size: 13px;
  }

  .contact-info-block p,
  .contact-info-block a {
    font-size: 13px;
  }

  .form-card {
    padding: 0.875rem 0.75rem;
  }

  .form-card h2 {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .form-label-custom {
    font-size: 0.62rem;
  }

  .form-control-custom {
    padding: 0.6rem 0.7rem;
    font-size: 13px;
    border-radius: 7px;
  }

  textarea.form-control-custom {
    height: 110px;
  }

  .btn-submit {
    padding: 11px 16px;
    font-size: 12px;
    border-radius: 7px;
  }

  .btn-dark-round {
    padding: 11px 16px;
    font-size: 12px;
    border-radius: 7px;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
    border-radius: 8px;
  }

  .hours-outer-card {
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
  }

  .hours-header-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .day-name {
    font-size: 0.6rem;
  }

  .day-time {
    font-size: 0.82rem;
  }

  .hours-row {
    padding: 0.6rem 0.75rem;
  }

  .hours-day {
    min-width: 72px;
  }

  .day-cs {
    font-size: 0.78rem;
  }

  .day-en {
    font-size: 0.6rem;
  }

  .hours-time {
    font-size: 0.78rem;
  }

  .closed-badge {
    font-size: 0.62rem;
    padding: 2px 7px;
  }

  .holiday-mini-card {
    padding: 0.75rem 0.875rem;
  }

  .hol-date,
  .hol-time {
    font-size: 0.72rem;
  }

  .holiday-date {
    min-width: 90px;
    font-size: 0.75rem;
  }

  .holiday-time {
    font-size: 0.75rem;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
    margin-top: 1.25rem;
  }

  .insta-item {
    border-radius: 8px;
  }

  .section-title-sm {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }

  .hours-note p {
    font-size: 0.75rem;
  }

  .holiday-wish p {
    font-size: 0.72rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# BLOG
--------------------------------------------------------------*/
/* BLOG HERO */
.blog-hero {
  background: #f5f3ee;
  text-align: center;
}

.blog-hero .eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #e46193;
  margin-bottom: 0.75rem;
}

.blog-hero h1 {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
}

.blog-hero p {
  font-size: 16px;
  color: #999;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── BLOG GRID ─── */
.blog-section {
  background: #f5f3ee;
  padding-top: 0;
}

.blog-card {
  background: transparent;
}

.blog-card-img {
  border-radius: 14px;
  overflow: hidden;
  height: 240px;
  margin-bottom: 1.2rem;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.blog-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #e46193;
}

.blog-meta-dot {
  width: 3px;
  height: 3px;
  background: #bbb;
  border-radius: 50%;
}

.blog-date {
  font-size: 0.7rem;
  color: #222;
  letter-spacing: 0.08em;
}

.blog-title-pink a {
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.blog-title-dark {
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.blog-excerpt {
  font-size: 0.87rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.btn-read-more {
  font-size: 14px;
  font-weight: 600;
  color: #e46193;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-read-more:hover {
  color: #c0305e;
}

/* ─── PAGINATION ─── */
.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding-top: 2.5rem;
}

.page-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e0dcd6;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #222;
  text-decoration: none;
  background: #fff;
  transition: all 0.2s;
}

.page-btn:hover,
.page-btn.active {
  background: #e46193;
  color: #fff;
  border-color: #e46193;
}

/* NEWSLETTER */
.newsletter-section {
  background: linear-gradient(135deg, #e94c8a 0%, #d63870 100%);
  padding: 5.5rem 1rem;
  text-align: center;
}

.newsletter-section h2 {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.newsletter-section p {
  font-size: 16px;
  color: #fff;
  max-width: 380px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.4rem;
  border: none;
  border-radius: 8px 0 0 8px;
  background: rgb(231 113 157);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  background: #222;
  color: #fff;
  border: none;
  padding: 15px 25px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #e46193;
  color: #fff;
}
/* ============================================================
   RESPONZIVITA — blog sekce
   Breakpointy: 1199 | 991 | 768 | 767 | 601 | 425 | 375 | 320
   ============================================================ */

/* ─── max-width: 1199px ─── */
@media (max-width: 1199px) {
  .blog-hero h1,
  .newsletter-section h2 {
    font-size: 38px;
  }

  .blog-card-img {
    height: 220px;
  }
}

/* ─── max-width: 991px ─── */
@media (max-width: 991px) {
  .blog-hero h1,
  .newsletter-section h2 {
    font-size: 34px;
  }

  .blog-card-img {
    height: 200px;
  }

  .newsletter-section {
    padding: 4rem 1rem;
  }

  .newsletter-section p {
    max-width: 100%;
  }
}

/* ─── max-width: 768px ─── */
@media (max-width: 768px) {
  .blog-hero h1,
  .newsletter-section h2 {
    font-size: 30px;
  }

  .blog-hero p {
    font-size: 15px;
    max-width: 100%;
  }

  .blog-card-img {
    height: 200px;
    border-radius: 12px;
  }

  .newsletter-section {
    padding: 3.5rem 1rem;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .pagination-wrap {
    padding-top: 2rem;
    flex-wrap: wrap;
  }
}

/* ─── max-width: 767px ─── */
@media (max-width: 767px) {
  .blog-hero h1,
  .newsletter-section h2 {
    font-size: 28px;
  }

  .blog-hero .eyebrow {
    font-size: 0.65rem;
  }

  .blog-card-img {
    height: 210px;
    margin-bottom: 1rem;
  }

  .blog-title-pink a,
  .blog-title-dark {
    font-size: 1.15rem;
  }

  .newsletter-section {
    padding: 3rem 1rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-form input {
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .newsletter-form button {
    border-radius: 8px;
    width: 100%;
  }
}

/* ─── max-width: 601px ─── */
@media (max-width: 601px) {
  .blog-hero h1,
  .newsletter-section h2 {
    font-size: 26px;
  }

  .blog-hero p {
    font-size: 14px;
  }

  .blog-card-img {
    height: 190px;
    border-radius: 10px;
    margin-bottom: 0.9rem;
  }

  .blog-title-pink a,
  .blog-title-dark {
    font-size: 1.1rem;
  }

  .blog-excerpt {
    font-size: 0.83rem;
  }

  .newsletter-section {
    padding: 2.75rem 1rem;
  }

  .newsletter-section p {
    font-size: 15px;
    margin-bottom: 1.5rem;
  }

  .newsletter-form input {
    padding: 0.8rem 1.1rem;
    font-size: 0.85rem;
  }

  .newsletter-form button {
    padding: 13px 20px;
    font-size: 13px;
  }

  .pagination-wrap {
    gap: 0.3rem;
    padding-top: 1.75rem;
  }

  .page-btn {
    width: 35px;
    height: 35px;
    font-size: 0.78rem;
  }
}

/* ─── max-width: 425px ─── */
@media (max-width: 425px) {
  .blog-hero h1,
  .newsletter-section h2 {
    font-size: 24px;
  }

  .blog-hero p,
  .newsletter-section p {
    font-size: 14px;
  }

  .blog-card-img {
    height: 175px;
    border-radius: 10px;
  }

  .blog-title-pink a,
  .blog-title-dark {
    font-size: 1.05rem;
  }

  .blog-excerpt {
    font-size: 0.82rem;
    margin-bottom: 0.875rem;
  }

  .blog-tag {
    font-size: 0.62rem;
  }

  .blog-date {
    font-size: 0.65rem;
  }

  .btn-read-more {
    font-size: 13px;
  }

  .newsletter-section {
    padding: 2.5rem 1rem;
  }

  .newsletter-form input {
    padding: 0.75rem 1rem;
    font-size: 0.84rem;
  }

  .newsletter-form button {
    padding: 12px 18px;
    font-size: 13px;
  }

  .page-btn {
    width: 34px;
    height: 34px;
    font-size: 0.76rem;
    border-radius: 7px;
  }
}

/* ─── max-width: 375px ─── */
@media (max-width: 375px) {
  .blog-hero h1,
  .newsletter-section h2 {
    font-size: 22px;
  }

  .blog-card-img {
    height: 160px;
    border-radius: 9px;
    margin-bottom: 0.8rem;
  }

  .blog-title-pink a,
  .blog-title-dark {
    font-size: 1rem;
  }

  .blog-excerpt {
    font-size: 0.8rem;
  }

  .blog-meta {
    gap: 0.4rem;
    margin-bottom: 0.5rem;
  }

  .newsletter-section {
    padding: 2.25rem 0.875rem;
  }

  .newsletter-section p {
    font-size: 13.5px;
    margin-bottom: 1.25rem;
  }

  .newsletter-form input {
    padding: 0.7rem 0.9rem;
    font-size: 0.82rem;
  }

  .newsletter-form button {
    padding: 11px 16px;
    font-size: 12.5px;
    border-radius: 7px;
  }

  .newsletter-form input {
    border-radius: 7px;
  }

  .pagination-wrap {
    gap: 0.25rem;
    padding-top: 1.5rem;
  }

  .page-btn {
    width: 32px;
    height: 32px;
    font-size: 0.73rem;
    border-radius: 6px;
  }
}

/* ─── max-width: 320px ─── */
@media (max-width: 320px) {
  .blog-hero h1,
  .newsletter-section h2 {
    font-size: 20px;
  }

  .blog-hero p,
  .newsletter-section p {
    font-size: 13px;
  }

  .blog-hero .eyebrow {
    font-size: 0.6rem;
  }

  .blog-card-img {
    height: 145px;
    border-radius: 8px;
    margin-bottom: 0.75rem;
  }

  .blog-title-pink a,
  .blog-title-dark {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .blog-excerpt {
    font-size: 0.77rem;
    margin-bottom: 0.75rem;
  }

  .blog-tag {
    font-size: 0.58rem;
  }

  .blog-date {
    font-size: 0.6rem;
  }

  .btn-read-more {
    font-size: 12px;
  }

  .newsletter-section {
    padding: 2rem 0.75rem;
  }

  .newsletter-section p {
    margin-bottom: 1rem;
  }

  .newsletter-form input {
    padding: 0.65rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 6px;
  }

  .newsletter-form button {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 6px;
  }

  .pagination-wrap {
    gap: 0.2rem;
    padding-top: 1.25rem;
  }

  .page-btn {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
    border-radius: 6px;
  }
}

/*--------------------------------------------------------------
# UVOD
--------------------------------------------------------------*/
section.hero {
  padding-top: 0;
  padding-bottom: 0;
}

.hero {
  background: #f5f3ee;
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

.hero-content {
  padding: 5rem 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 0.7rem !important;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #e46193 !important;
  margin-bottom: 0.75rem !important;
}

.hero h1 {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
  color: #222;
}

.hero h1 .line-black {
  font-style: italic;
  font-size: 80px;
  font-weight: 700;
}

.hero h1 .line-pink {
  color: #e56f99;
  font-style: italic;
}

.hero p {
  font-size: 16px;
  color: #999;
  max-width: 340px;
  line-height: 1.7;
  margin-bottom: 0;
}

.ctaup {
  margin-top: 50px;
}

.btn-dark-custom {
  background: #222;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-dark-custom:hover {
  background: #e46193;
  color: #fff;
}

.btn-outline-custom {
  background: #fff;
  color: #222;
  border: 1px solid #e7e5e4;
  padding: 15px 25px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s;
}

.btn-outline-custom:hover {
  border-color: #222;
  color: #222;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}

.hero-stat-number {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  line-height: 1;
}

.hero-stat-label {
  font-size: 15px;
  color: #222;
  font-weight: 500;
  margin-top: 3px;
}

.hero-image {
  background: #ddd;
  overflow: hidden;
  min-height: 420px;
}

.hero-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, #e8e0d5 0%, #d5cec4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.85rem;
}

/* FEATURES */
.features-bar {
  background: #fff;
  border-bottom: 1px solid #fafaf9;
}

.feature-item {
  text-align: center;
  padding: 0 1.5rem;
}

.feature-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fce4ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e56595;
  font-size: 18px;
  margin-bottom: 1rem;
}

.feature-item h6 {
  font-style: italic;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-item p {
  font-size: 16px;
  color: #999;
  line-height: 1.65;
  max-width: 320px;
  margin: 0 auto;
}

/* PRODUKTY */
.products-section {
  background: #fff;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #e46193;
  margin-bottom: 0.75rem;
}

.section-title {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.btn-link-arrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #222;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-link-arrow:hover {
  color: #e46193;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.product-card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  background: #f0eae3;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border: 2px solid #f5f3ee;
  border-radius: 8px;
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e8e8e8;
  color: #222;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 20px;
}

.product-category {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: #999;
  font-weight: 500;
  margin: 1.1rem 0 0.3rem;
}

.product-name a {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: #222;
}

.product-price {
  font-family: "DM Sans", sans-serif;
  color: #e46193;
  font-size: 19px;
  font-weight: 700;
}

/* Wishlist button */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: #aaa;
  transition: color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.wishlist-btn:hover {
  color: #e46193;
}

.wishlist-btn.active {
  color: #e46193;
}

/* Quick buy overlay */
.quick-buy {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 8px;
  padding: 0.7rem;
  font-family: "DM Sans", sans-serif;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--dark);
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
  color: #fff;
  background-color: #e46193;
}

.product-card:hover .quick-buy {
  opacity: 1;
  transform: translateY(0);
}
/* ============================================================
   RESPONZIVITA — úvod sekce (hero, features, produkty)
   Breakpointy: 1199 | 991 | 768 | 767 | 601 | 425 | 375 | 320
   ============================================================ */

/* ─── max-width: 1199px ─── */
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero h1 .line-black {
    font-size: 70px;
  }

  .section-title {
    font-size: 38px;
  }

  .hero-content {
    padding: 4rem 2.5rem 3.5rem;
  }

  .product-card-img {
    height: 270px;
  }
}

/* ─── max-width: 991px ─── */
@media (max-width: 991px) {
  .hero {
    min-height: unset;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    padding: 3.5rem 2rem 3rem;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h1 .line-black {
    font-size: 60px;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-image {
    min-height: 320px;
  }

  .hero-image img {
    height: 400px;
  }

  .section-title {
    font-size: 34px;
  }

  .hero-stats {
    gap: 1.75rem;
  }

  .product-card-img {
    height: 250px;
  }

  .feature-item {
    padding: 0 1rem;
  }

  .feature-item p {
    font-size: 15px;
  }
}

/* ─── max-width: 768px ─── */
@media (max-width: 768px) {
  .hero-content {
    padding: 3rem 1.75rem 2.5rem;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h1 .line-black {
    font-size: 54px;
  }

  .hero-image img {
    height: 320px;
  }

  .hero-image {
    min-height: 280px;
  }

  .section-title {
    font-size: 30px;
  }

  .hero-stats {
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .hero-stat-number {
    font-size: 16px;
  }

  .hero-stat-label {
    font-size: 13px;
  }

  .ctaup {
    margin-top: 35px;
  }

  .product-card-img {
    height: 230px;
  }

  .feature-item h6 {
    font-size: 18px;
  }

  .feature-item p {
    font-size: 14px;
  }
}

/* ─── max-width: 767px ─── */
@media (max-width: 767px) {
  .hero-content {
    padding: 2.75rem 1.5rem 2.25rem;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero h1 .line-black {
    font-size: 50px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-image img {
    height: 280px;
  }

  .hero-image {
    min-height: 260px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-eyebrow {
    font-size: 0.65rem;
  }

  .hero-stats {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .ctaup {
    margin-top: 30px;
  }

  .btn-dark-custom,
  .btn-outline-custom {
    padding: 13px 20px;
    font-size: 13px;
  }

  .product-card-img {
    height: 220px;
    border-radius: 10px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .feature-item h6 {
    font-size: 17px;
  }
}

/* ─── max-width: 601px ─── */
@media (max-width: 601px) {
  .hero-content {
    padding: 2.5rem 1.25rem 2rem;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero h1 .line-black {
    font-size: 44px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-image img {
    height: 240px;
  }

  .hero-image {
    min-height: 220px;
  }

  .section-title {
    font-size: 26px;
  }

  .hero-stats {
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
  }

  .hero-stat-number {
    font-size: 15px;
  }

  .hero-stat-label {
    font-size: 12px;
  }

  .ctaup {
    margin-top: 25px;
  }

  .btn-dark-custom,
  .btn-outline-custom {
    padding: 12px 18px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .product-card-img {
    height: 200px;
    border-radius: 10px;
  }

  .product-price {
    font-size: 17px;
  }

  .feature-item {
    padding: 0 0.5rem;
  }

  .feature-item h6 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 13.5px;
  }
}

/* ─── max-width: 425px ─── */
@media (max-width: 425px) {
  .hero-content {
    padding: 2.25rem 1rem 1.75rem;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero h1 .line-black {
    font-size: 40px;
  }

  .hero-eyebrow {
    font-size: 0.62rem !important;
  }

  .hero-image img {
    height: 210px;
  }

  .hero-image {
    min-height: 200px;
  }

  .section-title {
    font-size: 24px;
  }

  .hero-stats {
    gap: 0.875rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .ctaup {
    margin-top: 22px;
  }

  .product-card-img {
    height: 185px;
    border-radius: 9px;
  }

  .product-name a {
    font-size: 0.98rem;
  }

  .product-price {
    font-size: 16px;
  }

  .product-category {
    font-size: 0.6rem;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 15px;
    margin-bottom: 0.75rem;
  }

  .feature-item h6 {
    font-size: 15px;
  }

  .feature-item p {
    font-size: 13px;
  }
}

/* ─── max-width: 375px ─── */
@media (max-width: 375px) {
  .hero-content {
    padding: 2rem 0.875rem 1.5rem;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero h1 .line-black {
    font-size: 36px;
  }

  .hero p {
    font-size: 13.5px;
  }

  .hero-image img {
    height: 190px;
  }

  .hero-image {
    min-height: 180px;
  }

  .section-title {
    font-size: 22px;
  }

  .hero-stats {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .hero-stat-number {
    font-size: 14px;
  }

  .hero-stat-label {
    font-size: 11.5px;
  }

  .ctaup {
    margin-top: 18px;
  }

  .btn-dark-custom,
  .btn-outline-custom {
    padding: 11px 16px;
    font-size: 12.5px;
    border-radius: 7px;
  }

  .product-card-img {
    height: 170px;
    border-radius: 8px;
  }

  .product-card {
    border-radius: 10px;
  }

  .product-name a {
    font-size: 0.93rem;
  }

  .product-price {
    font-size: 15px;
  }

  .wishlist-btn {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .feature-item h6 {
    font-size: 14px;
  }

  .feature-item p {
    font-size: 12.5px;
  }
}

/* ─── max-width: 320px ─── */
@media (max-width: 320px) {
  .hero-content {
    padding: 1.75rem 0.75rem 1.25rem;
  }

  .hero h1 {
    font-size: 20px;
  }

  .hero h1 .line-black {
    font-size: 32px;
  }

  .hero-eyebrow {
    font-size: 0.6rem !important;
    margin-bottom: 0.5rem !important;
  }

  .hero p {
    font-size: 13px;
  }

  .hero-image img {
    height: 170px;
  }

  .hero-image {
    min-height: 160px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-eyebrow {
    font-size: 0.6rem;
  }

  .hero-stats {
    gap: 0.625rem;
    margin-top: 1.25rem;
    padding-top: 0.875rem;
    flex-wrap: wrap;
  }

  .hero-stat-number {
    font-size: 13px;
  }

  .hero-stat-label {
    font-size: 11px;
  }

  .ctaup {
    margin-top: 15px;
  }

  .btn-dark-custom,
  .btn-outline-custom {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 6px;
  }

  .product-card-img {
    height: 155px;
    border-radius: 7px;
  }

  .product-card {
    border-radius: 8px;
  }

  .product-name a {
    font-size: 0.88rem;
  }

  .product-price {
    font-size: 14px;
  }

  .product-category {
    font-size: 0.58rem;
  }

  .product-badge {
    font-size: 0.58rem;
    padding: 4px 9px;
  }

  .wishlist-btn {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    top: 8px;
    right: 8px;
  }

  .quick-buy {
    bottom: 10px;
    left: 10px;
    right: 10px;
    font-size: 0.65rem;
    padding: 0.6rem;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    font-size: 13px;
    margin-bottom: 0.6rem;
  }

  .feature-item h6 {
    font-size: 13px;
  }

  .feature-item p {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# ESHOP
--------------------------------------------------------------*/
.filter-bar-wrap {
  background: #f5f3ee;
}

.filter-bar-card {
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 1.2rem 1.6rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-row-divider {
  border-top: 1px solid #f0ece7;
  margin: 1rem 0;
}

/* Category pills */
.cat-btn {
  border: none;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #222;
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.cat-btn:hover {
  background: #f0ece7;
}

.cat-btn.active {
  background: #e46193;
  color: #fff;
}

/* Sort select */
.sort-select-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-select {
  border: none;
  background: #fafaf9;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #222;
  cursor: pointer;
  outline: none;
  border-radius: 8px;
  padding: 0.55rem 1.2rem;
}

.sort-icon {
  color: #aaa;
  font-size: 1rem;
}

/* Size row */
.size-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: #222;
  font-weight: 600;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.size-btn {
  border: none;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  color: #222;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.size-btn:hover {
  background: #f0ece7;
}

.size-btn.active {
  background: #222;
  color: #fff;
  font-weight: 500;
}

/*--------------------------------------------------------------
# O NAS
--------------------------------------------------------------*/
/* ─── HERO STATEMENT ─── */
.hero-statement {
  background: #f5f3ee;
}

.hero-statement .eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #e46193;
  margin-bottom: 0.75rem;
}

.hero-statement h1 {
  font-style: italic;
  font-size: 85px;
  font-weight: 700;
}

.hero-statement h1 .line-dark {
  color: #222;
}

.hero-statement h1 .line-pink {
  color: #e8417a;
}

.hero-statement p {
  font-size: 16px;
  color: #999;
  line-height: 1.7;
  max-width: 460px;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: #fff;
  padding: 3.5rem 0;
  border-bottom: 1px solid #f0ece7;
}

.stat-item {
  text-align: center;
  padding: 0 1rem;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: #222;
  font-weight: 500;
  margin-top: 4px;
}

/* ─── ABOUT STORY ─── */
.story-section {
  background: #fff;
}

.story-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #e46193;
  margin-bottom: 0.75rem;
}

.story-title {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
}

.story-body p {
  font-size: 16px;
  color: #999;
  line-height: 1.7;
}

.story-signature {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #e46193;
  margin-top: 2rem;
}

/* Photo collage */
.photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.photo-collage .photo-item {
  border-radius: 14px;
  overflow: hidden;
  background: #f5f3ee;
}

.photo-collage .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-collage .photo-item.tall {
  grid-row: span 2;
}

.photo-collage .photo-item.tall img {
  height: 100%;
  min-height: 380px;
}

.photo-collage .photo-item:not(.tall) img {
  height: 185px;
}

/* ─── VALUES ─── */
.values-section {
  background: #f5f3ee;
}

.values-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #e46193;
  margin-bottom: 0.75rem;
}

.values-title {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 25px;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
}

.value-icon {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background: #fafaf9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e46193;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.value-card h4 {
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.85rem;
  color: #222;
  line-height: 1.7;
  margin: 0;
}

/* ─── MAP ─── */
.map-section {
  background: #fff;
  border-top: 1px solid #f0ece7;
}

.map-eyebrow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #e46193;
  margin-bottom: 0.75rem;
}

.map-title {
  text-align: center;
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 25px;
}

.map-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* ============================================================
   RESPONZIVITA — o nás sekce
   Breakpointy: 1199 | 991 | 768 | 767 | 601 | 425 | 375 | 320
   ============================================================ */

/* ─── max-width: 1199px ─── */
@media (max-width: 1199px) {
  .hero-statement h1 {
    font-size: 72px;
  }

  .story-title,
  .values-title,
  .map-title {
    font-size: 38px;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .photo-collage .photo-item.tall img {
    min-height: 340px;
  }
}

/* ─── max-width: 991px ─── */
@media (max-width: 991px) {
  .hero-statement h1 {
    font-size: 60px;
  }

  .hero-statement p {
    max-width: 100%;
  }

  .story-title,
  .values-title,
  .map-title {
    font-size: 34px;
  }

  .stat-number {
    font-size: 2.1rem;
  }

  .stat-label {
    font-size: 0.64rem;
  }

  .stats-bar {
    padding: 2.75rem 0;
  }

  .photo-collage .photo-item.tall img {
    min-height: 300px;
  }

  .photo-collage .photo-item:not(.tall) img {
    height: 160px;
  }

  .map-wrapper {
    height: 360px;
  }

  .value-card {
    padding: 20px;
  }
}

/* ─── max-width: 768px ─── */
@media (max-width: 768px) {
  .hero-statement h1 {
    font-size: 52px;
  }

  .story-title,
  .values-title,
  .map-title {
    font-size: 30px;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .stats-bar {
    padding: 2.25rem 0;
  }

  .photo-collage {
    gap: 0.75rem;
  }

  .photo-collage .photo-item.tall img {
    min-height: 260px;
  }

  .photo-collage .photo-item:not(.tall) img {
    height: 140px;
  }

  .photo-collage .photo-item {
    border-radius: 10px;
  }

  .map-wrapper {
    height: 320px;
    border-radius: 14px;
  }

  .value-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
}

/* ─── max-width: 767px ─── */
@media (max-width: 767px) {
  .hero-statement h1 {
    font-size: 46px;
  }

  .hero-statement .eyebrow {
    font-size: 0.65rem;
  }

  .hero-statement p {
    font-size: 15px;
  }

  .story-title,
  .values-title,
  .map-title {
    font-size: 28px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.62rem;
  }

  .stats-bar {
    padding: 2rem 0;
  }

  .story-body p {
    font-size: 15px;
  }

  .story-signature {
    font-size: 1.15rem;
    margin-top: 1.5rem;
  }

  .photo-collage {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }

  .photo-collage .photo-item.tall img {
    min-height: 230px;
  }

  .photo-collage .photo-item:not(.tall) img {
    height: 130px;
  }

  .value-card {
    padding: 18px;
    border-radius: 12px;
  }

  .value-card h4 {
    font-size: 1.05rem;
  }

  .value-card p {
    font-size: 0.82rem;
  }

  .map-wrapper {
    height: 300px;
    border-radius: 12px;
  }

  .values-title {
    margin-bottom: 18px;
  }

  .map-title {
    margin-bottom: 18px;
  }
}

/* ─── max-width: 601px ─── */
@media (max-width: 601px) {
  .hero-statement h1 {
    font-size: 38px;
  }

  .hero-statement p {
    font-size: 14px;
  }

  .story-title,
  .values-title,
  .map-title {
    font-size: 26px;
  }

  .stat-number {
    font-size: 1.55rem;
  }

  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .stats-bar {
    padding: 1.75rem 0;
  }

  .stat-item {
    padding: 0 0.5rem;
  }

  .photo-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .photo-collage .photo-item.tall {
    grid-row: span 1;
  }

  .photo-collage .photo-item.tall img {
    min-height: 220px;
    height: 220px;
  }

  .photo-collage .photo-item:not(.tall) img {
    height: 180px;
  }

  .photo-collage .photo-item {
    border-radius: 10px;
  }

  .value-card {
    padding: 16px;
  }

  .value-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .map-wrapper {
    height: 280px;
    border-radius: 12px;
  }

  .story-body p {
    font-size: 14px;
  }

  .story-signature {
    font-size: 1.1rem;
  }
}

/* ─── max-width: 425px ─── */
@media (max-width: 425px) {
  .hero-statement h1 {
    font-size: 32px;
  }

  .hero-statement .eyebrow {
    font-size: 0.62rem;
  }

  .hero-statement p {
    font-size: 14px;
  }

  .story-title,
  .values-title,
  .map-title {
    font-size: 24px;
  }

  .story-eyebrow,
  .values-eyebrow,
  .map-eyebrow {
    font-size: 0.62rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.58rem;
  }

  .stats-bar {
    padding: 1.5rem 0;
  }

  .photo-collage .photo-item.tall img,
  .photo-collage .photo-item:not(.tall) img {
    height: 190px;
    min-height: unset;
  }

  .value-card {
    padding: 15px;
    border-radius: 10px;
  }

  .value-card h4 {
    font-size: 1rem;
  }

  .value-card p {
    font-size: 0.8rem;
  }

  .value-icon {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .map-wrapper {
    height: 250px;
    border-radius: 10px;
  }

  .story-signature {
    font-size: 1.05rem;
    margin-top: 1.25rem;
  }

  .values-title,
  .map-title {
    margin-bottom: 14px;
  }
}

/* ─── max-width: 375px ─── */
@media (max-width: 375px) {
  .hero-statement h1 {
    font-size: 28px;
  }

  .story-title,
  .values-title,
  .map-title {
    font-size: 22px;
  }

  .hero-statement p,
  .story-body p {
    font-size: 13.5px;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .stats-bar {
    padding: 1.25rem 0;
  }

  .photo-collage {
    gap: 0.5rem;
  }

  .photo-collage .photo-item.tall img,
  .photo-collage .photo-item:not(.tall) img {
    height: 170px;
  }

  .photo-collage .photo-item {
    border-radius: 8px;
  }

  .value-card {
    padding: 13px;
    border-radius: 9px;
  }

  .value-card h4 {
    font-size: 0.95rem;
  }

  .value-card p {
    font-size: 0.78rem;
  }

  .value-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    margin-bottom: 0.875rem;
  }

  .map-wrapper {
    height: 230px;
    border-radius: 9px;
  }

  .story-signature {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

/* ─── max-width: 320px ─── */
@media (max-width: 320px) {
  .hero-statement h1 {
    font-size: 24px;
  }

  .hero-statement .eyebrow {
    font-size: 0.6rem;
  }

  .hero-statement p,
  .story-body p {
    font-size: 13px;
  }

  .story-title,
  .values-title,
  .map-title {
    font-size: 20px;
  }

  .story-eyebrow,
  .values-eyebrow,
  .map-eyebrow {
    font-size: 0.6rem;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.54rem;
    letter-spacing: 0.08em;
    margin-top: 2px;
  }

  .stats-bar {
    padding: 1rem 0;
  }

  .stat-item {
    padding: 0 0.25rem;
  }

  .photo-collage {
    gap: 0.4rem;
  }

  .photo-collage .photo-item.tall img,
  .photo-collage .photo-item:not(.tall) img {
    height: 150px;
    min-height: unset;
  }

  .photo-collage .photo-item {
    border-radius: 7px;
  }

  .value-card {
    padding: 11px;
    border-radius: 8px;
  }

  .value-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .value-card p {
    font-size: 0.75rem;
  }

  .value-icon {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
    border-radius: 7px;
    margin-bottom: 0.75rem;
  }

  .map-wrapper {
    height: 210px;
    border-radius: 8px;
  }

  .map-title {
    margin-bottom: 12px;
  }

  .values-title {
    margin-bottom: 12px;
  }

  .story-signature {
    font-size: 0.95rem;
    margin-top: 0.875rem;
  }
}

/*--------------------------------------------------------------
# DETAIL CLANEK
--------------------------------------------------------------*/
section.detailclanek-bg {
  background-color: #f5f3ee;
  padding-bottom: 0;
}

.article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

/* Back link */
.back-link {
  font-family: "DM Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #999;
  text-decoration: none;
  margin-bottom: 2.2rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: #e46193;
}

/* Meta */
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.article-tag {
  font-size: 14px;
  font-weight: 600;
  color: #e46193;
}

.article-meta-dot {
  width: 3px;
  height: 3px;
  background: #ccc;
  border-radius: 50%;
}

.article-date {
  color: #222;
  font-size: 14px;
  font-weight: 600;
}

/* Title */
.article-title {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

/* Author */
.author-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fce4ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e56595;
  font-size: 18px;
  margin-bottom: 0;
}

.author-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #222;
  margin-bottom: 1px;
}

.author-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: #999;
}

/* Hero image */
.article-hero-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  height: 420px;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Body text */
.article-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #333;
}

.article-body p {
  margin-bottom: 1rem;
}

.article-body h2 {
  font-family: "DM Sans", sans-serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 0.8rem;
  color: #222;
}

.article-body strong {
  color: #222;
  font-weight: 600;
}

.article-body ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.article-body ul li {
  margin-bottom: 0.4rem;
}

/* Share card */
.share-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.share-card-left h4 {
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.share-card-left p {
  font-size: 0.83rem;
  color: #999;
  margin: 0;
}

.share-btns {
  display: flex;
  gap: 0.6rem;
}

.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid #e0dcd6;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.2s;
}

.share-btn:hover {
  border-color: #e46193;
  color: #e46193;
}

section.related-section {
  background-color: #f5f3ee;
}
/* ============================================================
   RESPONZIVITA — detail článku
   Breakpointy: 1199 | 991 | 768 | 767 | 601 | 425 | 375 | 320
   ============================================================ */

/* ─── max-width: 1199px ─── */
@media (max-width: 1199px) {
  .article-title {
    font-size: 38px;
  }

  .article-hero-img {
    height: 380px;
  }
}

/* ─── max-width: 991px ─── */
@media (max-width: 991px) {
  .article-title {
    font-size: 34px;
  }

  .article-hero-img {
    height: 340px;
    border-radius: 14px;
  }

  .article-wrap {
    padding: 0 1.25rem 4rem;
  }

  .share-card {
    padding: 1.5rem 1.75rem;
  }
}

/* ─── max-width: 768px ─── */
@media (max-width: 768px) {
  .article-title {
    font-size: 30px;
    margin-bottom: 1.5rem;
  }

  .article-hero-img {
    height: 300px;
    border-radius: 12px;
    margin-bottom: 2rem;
  }

  .article-wrap {
    padding: 0 1rem 3.5rem;
  }

  .article-body h2 {
    font-size: 1.35rem;
  }

  .share-card {
    padding: 1.4rem 1.5rem;
    gap: 1.25rem;
  }

  .share-card-left h4 {
    font-size: 1.15rem;
  }
}

/* ─── max-width: 767px ─── */
@media (max-width: 767px) {
  .article-title {
    font-size: 28px;
    margin-bottom: 1.4rem;
  }

  .article-hero-img {
    height: 270px;
    border-radius: 12px;
    margin-bottom: 1.75rem;
  }

  .article-wrap {
    padding: 0 1rem 3rem;
  }

  .back-link {
    font-size: 0.72rem;
    margin-bottom: 1.75rem;
  }

  .article-meta {
    margin-bottom: 0.875rem;
  }

  .article-tag,
  .article-date {
    font-size: 13px;
  }

  .author-row {
    margin-bottom: 1.75rem;
  }

  .author-avatar {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .article-body {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .article-body h2 {
    font-size: 1.25rem;
    margin: 1.75rem 0 0.7rem;
  }

  .share-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    margin-top: 2.5rem;
  }

  .share-card-left h4 {
    font-size: 1.1rem;
  }

  .share-card-left p {
    font-size: 0.8rem;
  }
}

/* ─── max-width: 601px ─── */
@media (max-width: 601px) {
  .article-title {
    font-size: 26px;
    margin-bottom: 1.25rem;
  }

  .article-hero-img {
    height: 240px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
  }

  .article-wrap {
    padding: 0 0.875rem 2.5rem;
  }

  .back-link {
    margin-bottom: 1.5rem;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .author-name {
    font-size: 0.75rem;
  }

  .author-label {
    font-size: 0.62rem;
  }

  .article-body {
    font-size: 0.88rem;
  }

  .article-body h2 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.6rem;
  }

  .share-card {
    border-radius: 7px;
    padding: 1.1rem 1.25rem;
    margin-top: 2rem;
  }

  .share-btn {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
    border-radius: 8px;
  }
}

/* ─── max-width: 425px ─── */
@media (max-width: 425px) {
  .article-title {
    font-size: 24px;
    margin-bottom: 1.1rem;
  }

  .article-hero-img {
    height: 210px;
    border-radius: 9px;
    margin-bottom: 1.4rem;
  }

  .article-wrap {
    padding: 0 0.75rem 2.25rem;
  }

  .back-link {
    font-size: 0.7rem;
    margin-bottom: 1.25rem;
  }

  .article-tag,
  .article-date {
    font-size: 12.5px;
  }

  .author-row {
    gap: 0.7rem;
    margin-bottom: 1.4rem;
  }

  .author-avatar {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .author-name {
    font-size: 0.72rem;
  }

  .author-label {
    font-size: 0.6rem;
  }

  .article-body {
    font-size: 0.86rem;
    line-height: 1.78;
  }

  .article-body h2 {
    font-size: 1.12rem;
    margin: 1.4rem 0 0.55rem;
  }

  .share-card {
    padding: 1rem 1.1rem;
    gap: 0.875rem;
  }

  .share-card-left h4 {
    font-size: 1.05rem;
  }

  .share-card-left p {
    font-size: 0.78rem;
  }

  .share-btn {
    width: 38px;
    height: 38px;
    border-radius: 7px;
  }

  .share-btns {
    gap: 0.5rem;
  }
}

/* ─── max-width: 375px ─── */
@media (max-width: 375px) {
  .article-title {
    font-size: 22px;
    margin-bottom: 1rem;
  }

  .article-hero-img {
    height: 190px;
    border-radius: 8px;
    margin-bottom: 1.25rem;
  }

  .article-wrap {
    padding: 0 0.625rem 2rem;
  }

  .back-link {
    font-size: 0.68rem;
    margin-bottom: 1.1rem;
  }

  .article-meta {
    margin-bottom: 0.75rem;
  }

  .article-tag,
  .article-date {
    font-size: 12px;
  }

  .author-row {
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }

  .author-avatar {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .author-name {
    font-size: 0.7rem;
  }

  .author-label {
    font-size: 0.58rem;
  }

  .article-body {
    font-size: 0.84rem;
    line-height: 1.75;
  }

  .article-body h2 {
    font-size: 1.05rem;
    margin: 1.25rem 0 0.5rem;
  }

  .article-body ul {
    padding-left: 1rem;
  }

  .share-card {
    padding: 0.875rem 1rem;
    border-radius: 7px;
    margin-top: 1.75rem;
  }

  .share-card-left h4 {
    font-size: 1rem;
  }

  .share-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    border-radius: 6px;
  }
}

/* ─── max-width: 320px ─── */
@media (max-width: 320px) {
  .article-title {
    font-size: 20px;
    margin-bottom: 0.875rem;
  }

  .article-hero-img {
    height: 170px;
    border-radius: 7px;
    margin-bottom: 1.1rem;
  }

  .article-wrap {
    padding: 0 0.5rem 1.75rem;
  }

  .back-link {
    font-size: 0.65rem;
    margin-bottom: 1rem;
    gap: 0.3rem;
  }

  .article-tag,
  .article-date {
    font-size: 11.5px;
  }

  .article-meta {
    gap: 0.4rem;
    margin-bottom: 0.625rem;
  }

  .author-row {
    gap: 0.5rem;
    margin-bottom: 1.1rem;
  }

  .author-avatar {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .author-name {
    font-size: 0.65rem;
  }

  .author-label {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  .article-body {
    font-size: 0.82rem;
    line-height: 1.72;
  }

  .article-body p {
    margin-bottom: 0.875rem;
  }

  .article-body h2 {
    font-size: 1rem;
    margin: 1.1rem 0 0.45rem;
  }

  .article-body ul {
    padding-left: 0.875rem;
  }

  .article-body ul li {
    margin-bottom: 0.3rem;
  }

  .share-card {
    padding: 0.75rem 0.875rem;
    border-radius: 6px;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .share-card-left h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  .share-card-left p {
    font-size: 0.72rem;
  }

  .share-btn {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .share-btns {
    gap: 0.4rem;
  }
}

/*--------------------------------------------------------------
# PODSTRANKA
--------------------------------------------------------------*/
/* ─── PAGE HERO ─── */
.page-hero {
  background: #f5f3ee;
  padding: 4.5rem 0 4rem;
}

section.related-section {
  background-color: #f5f3ee;
  padding-top: 0;
}

.page-hero .eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #e46193;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
}

.page-hero .updated {
  font-size: 16px;
  color: #999;
  line-height: 1.7;
}

/* ─── CONTENT LAYOUT ─── */
section#content-wrap {
  background-color: #f5f3ee;
  padding-top: 0;
}

.content-wrap {
  padding: 4rem 0 6rem;
  background: #190505;
}

/* Article prose */
.prose {
  background-color: #fff;
  padding: 50px;
  border-radius: 15px;
}

.prose h2 {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
}

.prose h2 .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e46193;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  flex-shrink: 0;
}

.prose h2:first-of-type {
  margin-top: 0;
}

.prose p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.prose ul li,
.prose ol li {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.prose strong {
  color: #222;
  font-weight: 600;
}

.prose a {
  color: #e46193;
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}
/* ============================================================
   RESPONZIVITA — podstránka (page hero, content, prose)
   Breakpointy: 1199 | 991 | 768 | 767 | 601 | 425 | 375 | 320
   ============================================================ */

/* ─── max-width: 1199px ─── */
@media (max-width: 1199px) {
  .page-hero h1 {
    font-size: 38px;
  }

  .prose h2 {
    font-size: 38px;
  }

  .prose {
    padding: 42px;
  }
}

/* ─── max-width: 991px ─── */
@media (max-width: 991px) {
  .page-hero {
    padding: 3.5rem 0 3rem;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .prose h2 {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .prose {
    padding: 36px;
    border-radius: 13px;
  }
}

/* ─── max-width: 768px ─── */
@media (max-width: 768px) {
  .page-hero {
    padding: 3rem 0 2.5rem;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .page-hero .updated {
    font-size: 15px;
  }

  .prose h2 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .prose {
    padding: 30px;
    border-radius: 12px;
  }

  .prose p {
    font-size: 0.9rem;
  }
}

/* ─── max-width: 767px ─── */
@media (max-width: 767px) {
  .page-hero {
    padding: 2.75rem 0 2.25rem;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero .eyebrow {
    font-size: 0.65rem;
  }

  .page-hero .updated {
    font-size: 14.5px;
  }

  .prose {
    padding: 26px;
    border-radius: 11px;
  }

  .prose h2 {
    font-size: 26px;
    margin-bottom: 13px;
  }

  .prose p {
    font-size: 0.88rem;
    line-height: 1.82;
  }

  .prose ul li,
  .prose ol li {
    font-size: 0.87rem;
    line-height: 1.75;
  }

  .prose h2 .num {
    width: 25px;
    height: 25px;
    font-size: 0.68rem;
  }
}

/* ─── max-width: 601px ─── */
@media (max-width: 601px) {
  .page-hero {
    padding: 2.5rem 0 2rem;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  .page-hero .updated {
    font-size: 14px;
  }

  .prose {
    padding: 22px;
    border-radius: 10px;
  }

  .prose h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .prose p {
    font-size: 0.86rem;
    margin-bottom: 0.875rem;
  }

  .prose ul,
  .prose ol {
    padding-left: 1.2rem;
    margin-bottom: 0.875rem;
  }

  .prose ul li,
  .prose ol li {
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
  }

  .prose h2 .num {
    width: 24px;
    height: 24px;
    font-size: 0.66rem;
  }
}

/* ─── max-width: 425px ─── */
@media (max-width: 425px) {
  .page-hero {
    padding: 2.25rem 0 1.75rem;
  }

  .page-hero h1 {
    font-size: 24px;
  }

  .page-hero .eyebrow {
    font-size: 0.62rem;
  }

  .page-hero .updated {
    font-size: 13.5px;
  }

  .prose {
    padding: 18px;
    border-radius: 10px;
  }

  .prose h2 {
    font-size: 22px;
    margin-bottom: 11px;
  }

  .prose p {
    font-size: 0.85rem;
    line-height: 1.8;
  }

  .prose ul li,
  .prose ol li {
    font-size: 0.83rem;
  }

  .prose h2 .num {
    width: 23px;
    height: 23px;
    font-size: 0.64rem;
  }
}

/* ─── max-width: 375px ─── */
@media (max-width: 375px) {
  .page-hero {
    padding: 2rem 0 1.5rem;
  }

  .page-hero h1 {
    font-size: 22px;
  }

  .page-hero .updated {
    font-size: 13px;
  }

  .prose {
    padding: 15px;
    border-radius: 9px;
  }

  .prose h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .prose p {
    font-size: 0.83rem;
    line-height: 1.78;
    margin-bottom: 0.8rem;
  }

  .prose ul,
  .prose ol {
    padding-left: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .prose ul li,
  .prose ol li {
    font-size: 0.82rem;
    line-height: 1.72;
    margin-bottom: 0.3rem;
  }

  .prose h2 .num {
    width: 22px;
    height: 22px;
    font-size: 0.62rem;
  }
}

/* ─── max-width: 320px ─── */
@media (max-width: 320px) {
  .page-hero {
    padding: 1.75rem 0 1.25rem;
  }

  .page-hero h1 {
    font-size: 20px;
  }

  .page-hero .eyebrow {
    font-size: 0.6rem;
    margin-bottom: 0.5rem;
  }

  .page-hero .updated {
    font-size: 12.5px;
  }

  .prose {
    padding: 13px;
    border-radius: 8px;
  }

  .prose h2 {
    font-size: 18px;
    margin-bottom: 9px;
  }

  .prose p {
    font-size: 0.8rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
  }

  .prose ul,
  .prose ol {
    padding-left: 1rem;
    margin-bottom: 0.75rem;
  }

  .prose ul li,
  .prose ol li {
    font-size: 0.78rem;
    line-height: 1.7;
    margin-bottom: 0.25rem;
  }

  .prose h2 .num {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }
}

/*--------------------------------------------------------------
# KOSIK
--------------------------------------------------------------*/
main.kosik-bg {
  background-color: #f5f3ee;
}

.lulu-cart-wrap {
  padding: 56px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* â”€â”€ HEADER â”€â”€ */
.lulu-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding-bottom: 24px;
}

.lulu-cart-header .eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #e46193;
  margin-bottom: 0.75rem;
}

.lulu-cart-header h1 {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
}

.lulu-continue-top {
  font-size: 0.82rem;
  color: #999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  white-space: nowrap;
  padding-bottom: 4px;
}

.lulu-continue-top:hover {
  color: #e46193;
}

.lulu-continue-top svg {
  transition: transform 0.2s;
}

.lulu-continue-top:hover svg {
  transform: translateX(-3px);
}

/* â”€â”€ LAYOUT â”€â”€ */
.lulu-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 920px) {
  .lulu-cart-layout {
    grid-template-columns: 1fr;
  }

  .lulu-cart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* â”€â”€ CARD BASE â”€â”€ */
.lulu-card {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  overflow: hidden;
}

/* â”€â”€ CART ITEMS â”€â”€ */
.lulu-items-list {
  list-style: none;
}

.lulu-item {
  display: grid;
  grid-template-columns: 88px 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid #f5f3ee;
  transition: background 0.15s;
}

.lulu-item:last-child {
  border-bottom: none;
}

.lulu-item:hover {
  background: rgba(255, 255, 255, 0.025);
}

/* Thumbnail */
.lulu-item-thumb {
  width: 88px;
  height: 88px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #fff;
  display: block;
}

.lulu-item-thumb-wrap a {
  display: block;
}

/* Info */
.lulu-item-category {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}

.lulu-item-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: color 0.15s;
}

.lulu-item-name:hover {
  color: #e46193;
}

.lulu-item-stock {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: #009800;
  font-weight: 400;
}

/* Qty stepper */
.lulu-qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  background: #efefef;
  width: fit-content;
}

.lulu-qty-btn {
  width: 34px;
  height: 36px;
  background: none;
  border: none;
  color: #999;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.lulu-qty-btn:hover {
  background: #999;
  color: #222;
}

.lulu-qty-input {
  width: 46px;
  height: 36px;
  background: none;
  border: none;
  border-left: 1px solid #222;
  border-right: 1px solid #222;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
  outline: none;
  -moz-appearance: textfield;
}

.lulu-qty-input::-webkit-outer-spin-button,
.lulu-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Price */
.lulu-item-price {
  font-size: 0.88rem;
  color: #999;
  white-space: nowrap;
  text-align: center;
  min-width: 72px;
}

/* Line total */
.lulu-item-total {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: #999;
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}

/* Remove */
.lulu-remove-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: inline-flex;
  transition: color 0.15s, background 0.15s;
}

.lulu-remove-btn:hover {
  color: #e46193;
  background: rgba(228, 97, 147, 0.1);
}

@media (max-width: 640px) {
  .lulu-item {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto auto;
  }

  .lulu-item-thumb-wrap {
    grid-row: 1 / 3;
  }

  .lulu-item-info {
    grid-column: 2;
  }

  .lulu-qty-wrap {
    margin-top: 8px;
  }

  .lulu-item-price,
  .lulu-item-total,
  .lulu-remove-btn {
    grid-column: 2;
  }
}

/* â”€â”€ SUMMARY CARD â”€â”€ */
.lulu-summary {
  padding: 28px;
  position: sticky;
  top: 24px;
}

.lulu-summary-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
}

.lulu-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.lulu-summary-row .val {
  color: #222;
  font-weight: 500;
}

.lulu-summary-row .free {
  color: var(--green);
  font-weight: 600;
}

.lulu-divider {
  border: none;
  border-top: 1px solid #222;
  margin: 14px 0;
}

.lulu-total-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0 24px;
}

.lulu-total-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding-top: 4px;
}

.lulu-total-amount {
  text-align: right;
}

.lulu-total-amount .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--pink);
  display: block;
  line-height: 1;
}

.lulu-total-amount .vat {
  font-size: 0.72rem;
  color: #999;
  display: block;
  margin-top: 4px;
}

/* Buttons */
a.checkout-button.button.alt.wc-forward {
  display: none;
}

.lulu-btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #222;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 12px;
}

.lulu-btn-checkout:hover {
  background: #e46193;
  color: #fff;
}

/* SSL badge */
.lulu-secure {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #999;
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 16px;
}


.lulu-secure-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lulu-secure-text span {
  font-size: 0.76rem;
  color: #fff;
  line-height: 1.5;
}

/* â”€â”€ EMPTY STATE â”€â”€ */
.lulu-empty {
  text-align: center;
  padding: 80px 24px;
}

.lulu-empty p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 24px;
}
/* ============================================================
   RESPONZIVITA — košík
   Breakpointy: 1199 | 991 | 768 | 767 | 601 | 425 | 375 | 320
   Poznámka: breakpointy 920px a 640px jsou již v base CSS,
   zde je doplňujeme a zpřesňujeme pro náš systém breakpointů.
   ============================================================ */

/* ─── max-width: 1199px ─── */
@media (max-width: 1199px) {
  .lulu-cart-header h1 {
    font-size: 38px;
  }

  .lulu-cart-layout {
    grid-template-columns: 1fr 340px;
    gap: 22px;
  }

  .lulu-cart-wrap {
    padding: 48px 20px 70px;
  }
}

/* ─── max-width: 991px ─── */
@media (max-width: 991px) {
  .lulu-cart-header h1 {
    font-size: 34px;
  }

  .lulu-cart-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lulu-cart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 18px;
  }

  .lulu-summary {
    position: static;
  }

  .lulu-cart-wrap {
    padding: 40px 18px 60px;
  }
}

/* ─── max-width: 768px ─── */
@media (max-width: 768px) {
  .lulu-cart-header h1 {
    font-size: 30px;
  }

  .lulu-cart-wrap {
    padding: 32px 16px 52px;
  }

  .lulu-cart-header {
    margin-bottom: 22px;
    padding-bottom: 16px;
  }

  .lulu-item {
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 16px;
    padding: 18px 20px;
  }

  .lulu-item-thumb {
    width: 80px;
    height: 80px;
  }

  .lulu-summary {
    padding: 24px;
  }

  .lulu-summary-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .lulu-total-amount .price {
    font-size: 1.6rem;
  }
}

/* ─── max-width: 767px ─── */
@media (max-width: 767px) {
  .lulu-cart-header h1 {
    font-size: 28px;
  }

  .lulu-cart-header .eyebrow {
    font-size: 0.65rem;
  }

  .lulu-cart-wrap {
    padding: 28px 14px 48px;
  }

  .lulu-item {
    grid-template-columns: 76px 1fr auto auto auto;
    gap: 14px;
    padding: 16px 18px;
  }

  .lulu-item-thumb {
    width: 76px;
    height: 76px;
    border-radius: 8px;
  }

  .lulu-item-name {
    font-size: 0.92rem;
  }

  .lulu-item-price,
  .lulu-item-total {
    font-size: 0.84rem;
    min-width: 60px;
  }

  .lulu-qty-btn {
    width: 30px;
    height: 32px;
  }

  .lulu-qty-input {
    width: 40px;
    height: 32px;
    font-size: 0.85rem;
  }

  .lulu-summary {
    padding: 20px;
    border-radius: 10px;
  }

  .lulu-summary-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }

  .lulu-summary-row {
    font-size: 0.84rem;
    padding: 7px 0;
  }

  .lulu-total-amount .price {
    font-size: 1.5rem;
  }

  .lulu-total-label {
    font-size: 0.84rem;
  }

  .lulu-btn-checkout {
    padding: 13px 20px;
    font-size: 0.82rem;
  }

  .lulu-secure {
    padding: 12px 14px;
    gap: 10px;
  }

  .lulu-secure-text strong {
    font-size: 0.78rem;
  }

  .lulu-secure-text span {
    font-size: 0.72rem;
  }
}

/* ─── max-width: 640px — rozšíření existujícího breakpointu ─── */
@media (max-width: 640px) {
  .lulu-cart-header h1 {
    font-size: 26px;
  }

  .lulu-cart-wrap {
    padding: 24px 12px 44px;
  }

  .lulu-item {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px 14px;
    padding: 14px 16px;
  }

  .lulu-item-thumb-wrap {
    grid-row: 1 / 3;
  }

  .lulu-item-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
  }

  .lulu-item-info {
    grid-column: 2;
  }

  .lulu-qty-wrap {
    margin-top: 6px;
    grid-column: 2;
  }

  .lulu-item-price,
  .lulu-item-total,
  .lulu-remove-btn {
    grid-column: 2;
  }

  .lulu-item-price {
    text-align: left;
    min-width: unset;
  }

  .lulu-item-total {
    text-align: left;
    min-width: unset;
    font-size: 0.93rem;
  }

  .lulu-summary {
    padding: 18px;
  }

  .lulu-total-row {
    padding: 10px 0 20px;
  }
}

/* ─── max-width: 601px ─── */
@media (max-width: 601px) {
  .lulu-cart-header h1 {
    font-size: 24px;
  }

  .lulu-continue-top {
    font-size: 0.78rem;
  }

  .lulu-cart-header {
    margin-bottom: 18px;
    padding-bottom: 14px;
    gap: 10px;
  }

  .lulu-item {
    padding: 13px 14px;
    gap: 9px 12px;
  }

  .lulu-item-thumb {
    width: 68px;
    height: 68px;
  }

  .lulu-item-category {
    font-size: 0.64rem;
  }

  .lulu-item-name {
    font-size: 0.88rem;
    margin-bottom: 4px;
  }

  .lulu-item-stock {
    font-size: 0.72rem;
  }

  .lulu-qty-btn {
    width: 28px;
    height: 30px;
    font-size: 1rem;
  }

  .lulu-qty-input {
    width: 36px;
    height: 30px;
    font-size: 0.82rem;
  }

  .lulu-summary {
    padding: 16px;
    border-radius: 9px;
  }

  .lulu-summary-title {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }

  .lulu-summary-row {
    font-size: 0.82rem;
    padding: 6px 0;
  }

  .lulu-total-amount .price {
    font-size: 1.4rem;
  }

  .lulu-total-amount .vat {
    font-size: 0.68rem;
  }

  .lulu-btn-checkout {
    padding: 12px 18px;
    font-size: 0.8rem;
    border-radius: 7px;
  }

  .lulu-empty {
    padding: 60px 16px;
  }

  .lulu-empty p {
    font-size: 1.1rem;
  }
}

/* ─── max-width: 425px ─── */
@media (max-width: 425px) {
  .lulu-cart-wrap {
    padding: 20px 10px 40px;
  }

  .lulu-cart-header h1 {
    font-size: 22px;
  }

  .lulu-cart-header .eyebrow {
    font-size: 0.62rem;
    margin-bottom: 0.5rem;
  }

  .lulu-item {
    padding: 12px;
    gap: 8px 10px;
  }

  .lulu-item-thumb {
    width: 64px;
    height: 64px;
    border-radius: 7px;
  }

  .lulu-item-name {
    font-size: 0.85rem;
  }

  .lulu-item-total {
    font-size: 0.88rem;
  }

  .lulu-qty-btn {
    width: 26px;
    height: 28px;
    font-size: 0.95rem;
  }

  .lulu-qty-input {
    width: 34px;
    height: 28px;
    font-size: 0.8rem;
  }

  .lulu-summary {
    padding: 14px;
    border-radius: 8px;
  }

  .lulu-summary-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .lulu-summary-row {
    font-size: 0.8rem;
  }

  .lulu-total-row {
    padding: 8px 0 18px;
  }

  .lulu-total-amount .price {
    font-size: 1.3rem;
  }

  .lulu-divider {
    margin: 10px 0;
  }

  .lulu-btn-checkout {
    padding: 11px 16px;
    font-size: 0.78rem;
    gap: 8px;
  }

  .lulu-secure {
    padding: 10px 12px;
    gap: 8px;
    border-radius: 8px;
    margin-top: 12px;
  }

  .lulu-secure-text strong {
    font-size: 0.74rem;
  }

  .lulu-secure-text span {
    font-size: 0.68rem;
  }

  .lulu-empty {
    padding: 48px 12px;
  }
}

/* ─── max-width: 375px ─── */
@media (max-width: 375px) {
  .lulu-cart-wrap {
    padding: 18px 8px 36px;
  }

  .lulu-cart-header h1 {
    font-size: 20px;
  }

  .lulu-cart-header {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .lulu-item {
    padding: 11px;
    gap: 7px 9px;
  }

  .lulu-item-thumb {
    width: 60px;
    height: 60px;
    border-radius: 7px;
  }

  .lulu-item-name {
    font-size: 0.82rem;
  }

  .lulu-item-category {
    font-size: 0.6rem;
    margin-bottom: 4px;
  }

  .lulu-item-stock {
    font-size: 0.68rem;
  }

  .lulu-qty-btn {
    width: 25px;
    height: 27px;
  }

  .lulu-qty-input {
    width: 32px;
    height: 27px;
    font-size: 0.78rem;
  }

  .lulu-summary {
    padding: 13px;
  }

  .lulu-summary-title {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }

  .lulu-summary-row {
    font-size: 0.78rem;
    padding: 5px 0;
  }

  .lulu-total-amount .price {
    font-size: 1.2rem;
  }

  .lulu-total-label {
    font-size: 0.8rem;
  }

  .lulu-btn-checkout {
    padding: 10px 14px;
    font-size: 0.76rem;
    border-radius: 7px;
  }

  .lulu-empty {
    padding: 40px 10px;
  }

  .lulu-empty p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
}

/* ─── max-width: 320px ─── */
@media (max-width: 320px) {
  .lulu-cart-wrap {
    padding: 14px 6px 30px;
  }

  .lulu-cart-header h1 {
    font-size: 18px;
  }

  .lulu-cart-header .eyebrow {
    font-size: 0.6rem;
  }

  .lulu-cart-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
    gap: 8px;
  }

  .lulu-continue-top {
    font-size: 0.72rem;
  }

  .lulu-item {
    padding: 10px;
    gap: 6px 8px;
  }

  .lulu-item-thumb {
    width: 54px;
    height: 54px;
    border-radius: 6px;
  }

  .lulu-item-name {
    font-size: 0.78rem;
    margin-bottom: 3px;
  }

  .lulu-item-category {
    font-size: 0.58rem;
    margin-bottom: 3px;
  }

  .lulu-item-stock {
    font-size: 0.65rem;
  }

  .lulu-item-total {
    font-size: 0.82rem;
  }

  .lulu-qty-btn {
    width: 24px;
    height: 26px;
    font-size: 0.9rem;
  }

  .lulu-qty-input {
    width: 30px;
    height: 26px;
    font-size: 0.75rem;
  }

  .lulu-summary {
    padding: 11px;
    border-radius: 7px;
  }

  .lulu-summary-title {
    font-size: 1rem;
    margin-bottom: 11px;
  }

  .lulu-summary-row {
    font-size: 0.75rem;
    padding: 4px 0;
  }

  .lulu-total-row {
    padding: 7px 0 14px;
  }

  .lulu-total-amount .price {
    font-size: 1.1rem;
  }

  .lulu-total-amount .vat {
    font-size: 0.62rem;
    margin-top: 2px;
  }

  .lulu-total-label {
    font-size: 0.75rem;
  }

  .lulu-divider {
    margin: 8px 0;
  }

  .lulu-btn-checkout {
    padding: 9px 12px;
    font-size: 0.72rem;
    border-radius: 6px;
    gap: 6px;
  }

  .lulu-secure {
    padding: 9px 10px;
    gap: 7px;
    border-radius: 7px;
    margin-top: 10px;
  }

  .lulu-secure-text strong {
    font-size: 0.7rem;
  }

  .lulu-secure-text span {
    font-size: 0.64rem;
  }

  .lulu-empty {
    padding: 32px 8px;
  }

  .lulu-empty p {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }
}

/*--------------------------------------------------------------
# POKLADNA
--------------------------------------------------------------*/
/* ── Checkout – sdílí proměnné s košíkem ── */
.co-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  font-family: "DM Sans", sans-serif;
  color: #222;
}

/* ── Stepper ── */
.co-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  gap: 0;
}

.co-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #999;
  white-space: nowrap;
}

.co-step.active {
  color: #222;
  font-weight: 700;
}

.co-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #e46193;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.co-step.active .co-step-num,
.co-step.done .co-step-num {
  background: #e46193;
  color: #1a1a1a;
}

.co-step-line {
  width: 56px;
  height: 2px;
  background: #fff;
  flex-shrink: 0;
  margin: 0 6px;
  transition: background 0.3s;
}

.co-step-line.done {
  background: #e46193);
}

/* ── Karta – shodná s košíkem ── */
.co-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  padding: 36px 40px 40px;
}

@media (max-width: 600px) {
  .co-card {
    padding: 24px 18px 28px;
  }
}

.co-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: #222;
}

/* ── Formulář ── */
.co-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

@media (max-width: 500px) {
  .co-form-row {
    grid-template-columns: 1fr;
  }
}

.co-form-group {
  margin-bottom: 16px;
}

.co-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.co-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #fff;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--text);
  background: #f9fafb;
  outline: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  font-family: inherit;
}

.co-input:focus {
  border-color: #e46193;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.12);
}

/* ── Checkbox ── */
.co-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 22px;
  cursor: pointer;
}

.co-checkbox-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #e46193;
  flex-shrink: 0;
  cursor: pointer;
}

.co-checkbox-wrap span {
  font-size: 0.86rem;
  color: #999;
}

/* ── Doručovací adresa ── */
.co-shipping-fields {
  display: none;
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px solid #fff;
}

.co-shipping-fields.show {
  display: block;
}

/* ── Akce ── */
.co-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #fff;
}

.co-back-link {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s;
  padding: 0;
}

.co-back-link:hover {
  color: #222;
}

.co-btn-primary {
  padding: 13px 28px;
  background: #e46193;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.co-btn-primary:hover {
  background: #222;
  transform: translateY(-1px);
}

.co-btn-green {
  background: #22C55E;
  color: #fff;
}

.co-btn-green:hover {
  background: #16a34a;
}

/* ── Chybová hláška ── */
.co-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.86rem;
  color: #dc2626;
  margin-bottom: 22px;
  display: none;
}

.co-error.show {
  display: block;
}

/* ── Sekce doprava / platba ── */
.co-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.co-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid #fff;
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: border-color 0.15s, background 0.15s;
  background: #fff;
}

.co-option:last-child {
  margin-bottom: 0;
}

.co-option:hover {
  border-color: #d1d5db;
}

.co-option.selected {
  border-color: #e46193;
  background: #fffbeb;
}

.co-option input[type="radio"] {
  accent-color: #e46193;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.co-option-body {
  flex: 1;
}

.co-option-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.co-option-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

.co-option-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.co-option-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
}

/* ── Packeta ── */
.packeta-pickup-wrap {
  display: none;
  margin: -6px 0 10px;
  padding: 12px 16px;
  background: #f9fafb;
  border: 1.5px dashed #fff;
  border-radius: 12px;
  flex-direction: column;
  gap: 10px;
}

.packeta-pickup-wrap.show {
  display: flex;
}

.packeta-chosen {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: #222;
}

.packeta-chosen strong {
  font-weight: 700;
}

.packeta-chosen span {
  color: #222;
}

.packeta-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: #e46193;
  color: #222;
  border: none;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s;
  width: fit-content;
}

.packeta-open-btn:hover {
  background: #e46193;
}

/* ── Shrnutí (krok 3) ── */
.co-summary-items {
  margin-bottom: 20px;
}

.co-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 0.91rem;
  border-bottom: 1px solid #fff;
  gap: 12px;
}

.co-summary-row:last-child {
  border-bottom: none;
}

.co-summary-row .val {
  font-weight: 600;
  white-space: nowrap;
}

.co-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
}

.co-summary-total .val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #e46193;
}

.co-vat-note {
  font-size: 0.76rem;
  color: #999;
  text-align: right;
  margin-bottom: 24px;
}

.co-divider {
  border: none;
  border-top: 1px solid #fff;
  margin: 4px 0 20px;
}

/* ── Podmínky ── */
.co-terms-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}

.co-terms-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #e46193;
  margin-top: 2px;
  flex-shrink: 0;
}

.co-terms-wrap span {
  font-size: 0.86rem;
  color: #999;
  line-height: 1.5;
}

.co-terms-wrap a {
  color: #222;
  font-weight: 600;
}

/* ── Bezpečnostní badge ── */
.co-secure {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #999;
}

.co-secure-icon {
  color: #999;
  flex-shrink: 0;
}

.co-secure-text {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.4;
}

.co-secure-text strong {
  color: var(--text);
  display: block;
}
/* ============================================================
   RESPONZIVITA — pokladna (checkout)
   Breakpointy: 1199 | 991 | 768 | 767 | 601 | 425 | 375 | 320
   Poznámka: 600px a 500px jsou již v base CSS, zde doplňujeme
   a zpřesňujeme pro náš systém breakpointů.
   ============================================================ */

/* ─── max-width: 1199px ─── */
@media (max-width: 1199px) {
  .co-wrap {
    max-width: 620px;
    padding: 36px 20px 72px;
  }

  .co-card {
    padding: 32px 36px 36px;
  }
}

/* ─── max-width: 991px ─── */
@media (max-width: 991px) {
  .co-wrap {
    max-width: 100%;
    padding: 32px 18px 64px;
  }

  .co-card {
    padding: 28px 30px 32px;
    border-radius: 16px;
  }

  .co-card-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }

  .co-stepper {
    margin-bottom: 28px;
  }

  .co-step-line {
    width: 44px;
  }
}

/* ─── max-width: 768px ─── */
@media (max-width: 768px) {
  .co-wrap {
    padding: 26px 16px 56px;
  }

  .co-card {
    padding: 26px 26px 28px;
    border-radius: 14px;
  }

  .co-card-title {
    font-size: 1.15rem;
    margin-bottom: 22px;
  }

  .co-stepper {
    margin-bottom: 24px;
  }

  .co-step {
    font-size: 0.82rem;
    gap: 8px;
  }

  .co-step-num {
    width: 28px;
    height: 28px;
    font-size: 0.76rem;
  }

  .co-step-line {
    width: 36px;
    margin: 0 4px;
  }

  .co-btn-primary {
    padding: 12px 22px;
    font-size: 0.88rem;
  }

  .co-option {
    padding: 12px 14px;
    gap: 10px;
  }

  .co-option-name {
    font-size: 0.86rem;
  }

  .co-option-desc {
    font-size: 0.74rem;
  }

  .co-option-price {
    font-size: 0.86rem;
  }
}

/* ─── max-width: 767px ─── */
@media (max-width: 767px) {
  .co-wrap {
    padding: 22px 14px 52px;
  }

  .co-card {
    padding: 22px 22px 26px;
    border-radius: 14px;
    box-shadow: 0 1px 14px rgba(0, 0, 0, 0.06);
  }

  .co-card-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .co-stepper {
    margin-bottom: 22px;
    gap: 0;
  }

  .co-step {
    font-size: 0.78rem;
    gap: 7px;
  }

  .co-step-num {
    width: 26px;
    height: 26px;
    font-size: 0.72rem;
  }

  .co-step-line {
    width: 28px;
    margin: 0 3px;
  }

  .co-input {
    padding: 10px 12px;
    font-size: 0.88rem;
    border-radius: 9px;
  }

  .co-label {
    font-size: 0.76rem;
    margin-bottom: 5px;
  }

  .co-form-row {
    gap: 12px;
    margin-bottom: 14px;
  }

  .co-form-group {
    margin-bottom: 14px;
  }

  .co-actions {
    margin-top: 22px;
    padding-top: 20px;
  }

  .co-btn-primary {
    padding: 11px 20px;
    font-size: 0.86rem;
    border-radius: 9px;
    gap: 6px;
  }

  .co-back-link {
    font-size: 0.82rem;
  }

  .co-option {
    padding: 11px 13px;
    border-radius: 10px;
    gap: 9px;
    margin-bottom: 8px;
  }

  .co-summary-row {
    font-size: 0.87rem;
    padding: 8px 0;
  }

  .co-summary-total {
    font-size: 1rem;
    padding: 14px 0 4px;
  }

  .co-summary-total .val {
    font-size: 1.15rem;
  }

  .co-secure {
    margin-top: 16px;
    padding-top: 14px;
    gap: 8px;
  }

  .co-secure-text {
    font-size: 0.76rem;
  }
}

/* ─── max-width: 601px — rozšíření existujícího 600px ─── */
@media (max-width: 601px) {
  .co-wrap {
    padding: 18px 12px 48px;
  }

  .co-card {
    padding: 20px 18px 22px;
    border-radius: 12px;
  }

  .co-card-title {
    font-size: 1.05rem;
    margin-bottom: 18px;
  }

  .co-stepper {
    margin-bottom: 20px;
  }

  .co-step {
    font-size: 0.72rem;
    gap: 6px;
  }

  .co-step-num {
    width: 24px;
    height: 24px;
    font-size: 0.68rem;
  }

  .co-step-line {
    width: 22px;
    margin: 0 2px;
  }

  .co-input {
    padding: 9px 11px;
    font-size: 0.86rem;
    border-radius: 8px;
  }

  .co-label {
    font-size: 0.74rem;
  }

  .co-form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .co-form-group {
    margin-bottom: 12px;
  }

  .co-option {
    padding: 10px 12px;
    border-radius: 9px;
    gap: 8px;
  }

  .co-option-name {
    font-size: 0.84rem;
  }

  .co-option-desc {
    font-size: 0.72rem;
  }

  .co-option-price {
    font-size: 0.84rem;
  }

  .co-option input[type="radio"] {
    width: 16px;
    height: 16px;
  }

  .packeta-pickup-wrap {
    padding: 10px 13px;
    gap: 8px;
    border-radius: 10px;
  }

  .packeta-open-btn {
    padding: 8px 13px;
    font-size: 0.8rem;
    border-radius: 7px;
  }

  .co-actions {
    margin-top: 18px;
    padding-top: 16px;
  }

  .co-btn-primary {
    padding: 10px 18px;
    font-size: 0.84rem;
    border-radius: 8px;
  }

  .co-summary-row {
    font-size: 0.84rem;
    padding: 7px 0;
  }

  .co-summary-total {
    font-size: 0.96rem;
    padding: 12px 0 4px;
  }

  .co-summary-total .val {
    font-size: 1.1rem;
  }

  .co-vat-note {
    font-size: 0.72rem;
    margin-bottom: 18px;
  }

  .co-terms-wrap span {
    font-size: 0.82rem;
  }

  .co-section-label {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }

  .co-checkbox-wrap span {
    font-size: 0.82rem;
  }
}

/* ─── max-width: 425px ─── */
@media (max-width: 425px) {
  .co-wrap {
    padding: 16px 10px 44px;
  }

  .co-card {
    padding: 17px 15px 19px;
    border-radius: 11px;
  }

  .co-card-title {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .co-stepper {
    margin-bottom: 18px;
  }

  .co-step {
    font-size: 0.68rem;
    gap: 5px;
  }

  .co-step-num {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }

  .co-step-line {
    width: 18px;
  }

  .co-input {
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .co-label {
    font-size: 0.72rem;
  }

  .co-form-group {
    margin-bottom: 11px;
  }

  .co-btn-primary {
    padding: 10px 16px;
    font-size: 0.82rem;
    border-radius: 8px;
    gap: 5px;
  }

  .co-back-link {
    font-size: 0.78rem;
  }

  .co-actions {
    margin-top: 16px;
    padding-top: 14px;
  }

  .co-option {
    padding: 9px 11px;
    gap: 7px;
    border-radius: 8px;
    margin-bottom: 7px;
  }

  .co-option-icon {
    width: 22px;
    height: 22px;
  }

  .co-summary-row {
    font-size: 0.82rem;
  }

  .co-summary-total .val {
    font-size: 1.05rem;
  }

  .co-error {
    padding: 10px 13px;
    font-size: 0.82rem;
    border-radius: 8px;
  }

  .co-secure {
    margin-top: 14px;
    padding-top: 12px;
    gap: 7px;
  }

  .co-secure-text {
    font-size: 0.72rem;
  }
}

/* ─── max-width: 375px ─── */
@media (max-width: 375px) {
  .co-wrap {
    padding: 14px 8px 40px;
  }

  .co-card {
    padding: 15px 13px 17px;
    border-radius: 10px;
  }

  .co-card-title {
    font-size: 0.97rem;
    margin-bottom: 14px;
  }

  .co-stepper {
    margin-bottom: 16px;
  }

  .co-step {
    font-size: 0.64rem;
    gap: 4px;
  }

  .co-step-num {
    width: 20px;
    height: 20px;
    font-size: 0.62rem;
  }

  .co-step-line {
    width: 14px;
    margin: 0 2px;
  }

  .co-input {
    padding: 7px 9px;
    font-size: 0.82rem;
    border-radius: 7px;
  }

  .co-label {
    font-size: 0.7rem;
    margin-bottom: 4px;
  }

  .co-form-group {
    margin-bottom: 10px;
  }

  .co-btn-primary {
    padding: 9px 14px;
    font-size: 0.8rem;
    border-radius: 7px;
  }

  .co-back-link {
    font-size: 0.75rem;
  }

  .co-actions {
    margin-top: 14px;
    padding-top: 12px;
  }

  .co-option {
    padding: 8px 10px;
    gap: 6px;
    border-radius: 8px;
  }

  .co-option-name {
    font-size: 0.8rem;
  }

  .co-option-desc {
    font-size: 0.68rem;
  }

  .co-option-price {
    font-size: 0.8rem;
  }

  .co-summary-row {
    font-size: 0.8rem;
    padding: 6px 0;
  }

  .co-summary-total {
    font-size: 0.92rem;
    padding: 10px 0 4px;
  }

  .co-summary-total .val {
    font-size: 1rem;
  }

  .co-vat-note {
    font-size: 0.68rem;
    margin-bottom: 16px;
  }

  .co-terms-wrap span,
  .co-checkbox-wrap span {
    font-size: 0.78rem;
  }

  .co-section-label {
    font-size: 0.64rem;
    margin-bottom: 8px;
  }

  .packeta-open-btn {
    padding: 7px 11px;
    font-size: 0.76rem;
  }

  .co-secure-text {
    font-size: 0.7rem;
  }
}

/* ─── max-width: 320px ─── */
@media (max-width: 320px) {
  .co-wrap {
    padding: 12px 6px 36px;
  }

  .co-card {
    padding: 13px 11px 15px;
    border-radius: 9px;
  }

  .co-card-title {
    font-size: 0.93rem;
    margin-bottom: 12px;
  }

  .co-stepper {
    margin-bottom: 14px;
  }

  .co-step {
    font-size: 0.6rem;
    gap: 3px;
  }

  .co-step-num {
    width: 18px;
    height: 18px;
    font-size: 0.58rem;
  }

  .co-step-line {
    width: 10px;
    height: 1.5px;
    margin: 0 1px;
  }

  .co-input {
    padding: 7px 8px;
    font-size: 0.8rem;
    border-radius: 6px;
  }

  .co-label {
    font-size: 0.66rem;
    margin-bottom: 3px;
  }

  .co-form-group {
    margin-bottom: 9px;
  }

  .co-btn-primary {
    padding: 8px 12px;
    font-size: 0.76rem;
    border-radius: 6px;
    gap: 4px;
  }

  .co-back-link {
    font-size: 0.72rem;
  }

  .co-actions {
    margin-top: 12px;
    padding-top: 10px;
  }

  .co-option {
    padding: 7px 9px;
    gap: 6px;
    border-radius: 7px;
    margin-bottom: 6px;
  }

  .co-option-name {
    font-size: 0.76rem;
  }

  .co-option-desc {
    font-size: 0.65rem;
  }

  .co-option-price {
    font-size: 0.76rem;
  }

  .co-option input[type="radio"] {
    width: 14px;
    height: 14px;
  }

  .co-option-icon {
    width: 18px;
    height: 18px;
  }

  .co-summary-row {
    font-size: 0.76rem;
    padding: 5px 0;
    gap: 8px;
  }

  .co-summary-total {
    font-size: 0.88rem;
    padding: 9px 0 3px;
  }

  .co-summary-total .val {
    font-size: 0.95rem;
  }

  .co-vat-note {
    font-size: 0.64rem;
    margin-bottom: 14px;
  }

  .co-terms-wrap span,
  .co-checkbox-wrap span {
    font-size: 0.74rem;
  }

  .co-section-label {
    font-size: 0.6rem;
    letter-spacing: 0.07em;
    margin-bottom: 7px;
  }

  .co-divider {
    margin: 3px 0 14px;
  }

  .packeta-pickup-wrap {
    padding: 8px 10px;
    gap: 6px;
    border-radius: 8px;
  }

  .packeta-open-btn {
    padding: 6px 10px;
    font-size: 0.72rem;
    border-radius: 6px;
  }

  .co-error {
    padding: 8px 11px;
    font-size: 0.76rem;
    border-radius: 7px;
    margin-bottom: 14px;
  }

  .co-secure {
    margin-top: 12px;
    padding-top: 10px;
    gap: 6px;
  }

  .co-secure-text {
    font-size: 0.66rem;
  }
}

/*--------------------------------------------------------------
# DETAIL PRODUKTU
--------------------------------------------------------------*/
/* DETAIL PRODUKTU */
nav.woocommerce-breadcrumb {
  display: none;
}

/* ── Sekce ── */
.product-detail-bg {
  padding: 2rem 0 4rem;
  background: #f5f3ee;
}

/* ════════════════════════════════════════
   GALERIE
════════════════════════════════════════ */

/* Obal galerie – relativní kvůli badgím */
.product-gallery {
  position: relative;
}

/* Badges (Akce / custom) */
.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  border-radius: 20px;
  line-height: 1;
}

.product-badge--custom {
  background: var(--dark);
  color: #fff;
}

.product-badge--sale {
  background: var(--pink);
  color: #fff;
}

/* Hlavní obrázek galerie – WooCommerce obalí do .woocommerce-product-gallery */
.product-gallery-main .woocommerce-product-gallery {
  position: relative;
  margin: 0 !important;
  float: none !important;
  width: 100% !important;
}

/* Hlavní foto */
.product-gallery-main .woocommerce-product-gallery__wrapper {
  border-radius: 18px;
  overflow: hidden;
  background: #f0ebe4;
  margin-bottom: 1rem;
}

.product-gallery-main .woocommerce-product-gallery__image:first-child a,
.product-gallery-main .woocommerce-product-gallery__image:first-child img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 18px;
}

/* Miniatury (thumbnails) */
.product-gallery-main .flex-control-nav.flex-control-thumbs {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 15px !important;
}

.product-gallery-main .flex-control-nav.flex-control-thumbs li {
  margin: 0;
  padding: 0;
}

.product-gallery-main .flex-control-nav.flex-control-thumbs img {
  width: 100%;
  height: 90px !important;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  display: block;
}

.product-gallery-main .flex-control-nav.flex-control-thumbs img:hover {
  border-color: #ccc;
}

.product-gallery-main .flex-control-nav.flex-control-thumbs .flex-active img {
  border-color: var(--dark);
}

/* Schovat WooCommerce zoom ikonu */
.product-gallery-main .woocommerce-product-gallery__trigger {
  display: none;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: 100%
}

/* ─── ZNAČKA NA DETAILU PRODUKTU ─── */
.product-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  margin: 16px 0 20px;
  background: #f8f8f8;
  border-radius: 10px;
  border: 1px solid #ececec;
}

.product-brand-logo {
  flex-shrink: 0;
  width: 175px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  border: 1px solid #ececec;
}

.product-brand-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-brand-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.product-brand-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  font-weight: 500;
}

.product-brand-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Pokud značka nemá logo, blok je kompaktnější */
.product-brand:not(:has(.product-brand-logo)) {
  padding: 8px 14px;
}

/* ─── ZNAČKA V KARTIČCE PRODUKTU ─── */
.product-card-brand {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 2px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ─── RESPONSIVNÍ ÚPRAVA ─── */
@media (max-width: 575px) {
  .product-brand {
    padding: 10px 12px;
    gap: 10px;
  }
  .product-brand-logo {
    width: 52px;
    height: 52px;
  }
  .product-brand-name {
    font-size: 16px;
  }
}

/* ════════════════════════════════════════
   PRAVÝ PANEL – .product-summary
════════════════════════════════════════ */
.product-summary {
  padding-left: 2.5rem;
}

/* ── Název ── */
.product-summary .product-title {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
}

/* ── Krátký popis ── */
.product-summary .product-short {
  font-size: 16px;
  color: #222;
  line-height: 1.7;
}
}

/* ── Hodnocení ── */
.product-summary .product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.product-summary .product-rating-text {
  font-size: 0.78rem;
  color: #222;
  font-weight: 500;
}

/* WooCommerce star rating */
.product-summary .star-rating {
  font-size: 0.85rem;
  color: #e46193;
}

.product-summary .star-rating::before,
.product-summary .star-rating span::before {
  color: #e46193;
}

/* ── Cenový box ── */
.product-price-box {
  background: #fafaf8;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.4rem;
}

.product-price-main {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
}

.product-price-current {
  font-family: "DM Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #222;
  line-height: 1;
}

.product-price-current .woocommerce-Price-amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  color: #e56f99;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: #e56f99;
    font-family: "DM Sans", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}
.product-price-old {
  font-size: 1.05rem;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 400;
}

.product-price-old .woocommerce-Price-amount {
  color: #bbb;
}

.price-vat {
  font-size: 0.75rem;
  font-weight: 400;
  color: #999;
}

.product-price-badge {
  background: #e46193;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  align-self: center;
}

.product-price-note {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  color: #999;
}

/* ── Variace (dropdowns) ── */
.product-summary .product-options {
  margin-bottom: 1.2rem;
}

/* Label nad dropdownem */
.product-summary .variations label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

/* Dropdown select */
.product-summary .variations select {
  width: 100%;
  height: 48px;
  border: 1.5px solid #fafaf8;
  background-color: #fff !important;
  border-radius: 10px;
  background: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: #222;
  padding: 0 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
  transition: border-color 0.2s;
  margin-bottom: 0.8rem;
}

/* Skryje duplicitní cenu varianty, kterou WooCommerce renderuje pod selectem.
   Cenu vybrané varianty zobrazujeme nahoře u hlavní ceny "od". */
.single_variation_wrap .woocommerce-variation-price {
  display: none;
}

/* Volitelně – pokud se zobrazuje i popis varianty a nechceš ho,
   odkomentuj následující řádek:
.single_variation_wrap .woocommerce-variation-description { display: none; }
*/

.product-summary .variations select:focus {
  outline: none;
  border-color: #222;
}

button.single_add_to_cart_button.button.alt {
  background: #e56f99 !important;
  color: #fff !important;
  border: none !important;
  padding: 15px 25px !important;
  border-radius: 8px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

button.single_add_to_cart_button.button.alt:hover {
  background: #222 !important;
}

/* Tabulka variací – reset WooCommerce výchozích stylů */
.product-summary .variations {
  width: 100%;
  border: none;
  margin-bottom: 0.5rem;
}

.product-summary .variations td,
.product-summary .variations th {
  border: none;
  padding: 0 0 0.6rem 0;
  vertical-align: top;
}

.product-summary .variations td.label {
  width: auto;
  padding-right: 0;
  padding-bottom: 0.25rem;
}

.product-summary .variations td.value {
  width: 100%;
}

/* Reset variation link */
.product-summary .reset_variations {
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: none;
  display: inline-block;
  margin-top: 0.2rem;
}

.product-summary .reset_variations:hover {
  color: var(--pink);
}

/* ── Quantity + Add to cart ── */
.product-summary .cart {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Qty */
.product-summary .quantity {
  display: flex;
  align-items: center;
}

.product-summary .qty {
  width: 80px;
  height: 52px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: #fff;
  -moz-appearance: textfield;
  transition: border-color 0.2s;
}

.product-summary .qty:focus {
  outline: none;
  border-color: var(--dark);
}

.product-summary .qty::-webkit-inner-spin-button,
.product-summary .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* Tlačítko přidat do košíku */
.product-summary .single_add_to_cart_button {
  flex: 1;
  min-width: 180px;
  height: 52px;
  background: var(--pink) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s !important;
  text-decoration: none;
  padding: 0 1.5rem !important;
}

.product-summary .single_add_to_cart_button:hover {
  background: #d03060 !important;
}

.product-summary .single_add_to_cart_button.disabled,
.product-summary .single_add_to_cart_button:disabled {
  background: #ccc !important;
  cursor: not-allowed;
}

/* ── Stav skladu ── */
.product-stock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dark);
  margin-top: 0.75rem;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.stock-dot--in {
  background: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, .15);
}

.stock-dot--out {
  background: #ccc;
}

/* ── Wishlist ── */
.product-actions {
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

/* YITH button reset + přestylování */
.btn-add-to-wishlist,
.yith-wcwl-add-to-wishlist {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
}

.yith-wcwl-add-button a,
.yith-wcwl-wishlistaddedbrowse a,
.yith-wcwl-wishlistexistsbrowse a {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 1.1rem !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #aaa !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-decoration: none !important;
  transition: color 0.2s, border-color 0.2s !important;
}

.yith-wcwl-add-button a:hover,
.yith-wcwl-wishlistaddedbrowse a,
.yith-wcwl-wishlistexistsbrowse a {
  color: var(--pink) !important;
  border-color: var(--pink) !important;
}

/* ── Benefits list ── */
.product-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  border-top: 1px solid #f0ece6;
  padding-top: 1.1rem;
}

.product-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 0.55rem;
}

.benefit-icon {
  color: #27ae60;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Doprava nota ── */
.product-info-note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.8rem 1rem;
  background: #f8f7f4;
  border-radius: 10px;
  line-height: 1.6;
}

.product-info-note strong {
  color: var(--dark);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 991px) {
  .product-summary {
    padding-left: 0;
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .product-gallery-main .woocommerce-product-gallery__image:first-child img {
    height: 320px;
  }

  .product-summary .single_add_to_cart_button {
    width: 100%;
  }
}



/* PROC NAS */
section.perks-bg {
  padding-top: 0;
  padding-bottom: 0;
}

.perks-bar {
  background: #fff;
  padding: 2.5rem 0;
  border-top: 1px solid #f0ece7;
  border-bottom: 1px solid #f0ece7;
}

.perk-item {
  text-align: center;
}

.perk-icon i {
  color: #e56f99;
  font-size: 25px;
  margin-bottom: 5px;
}

.perk-label {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #999;
  margin-top: 5px;
}

/* RECENZE */
.reviews-section {
  padding: 5rem 0;
  background: #fff;
}

.section-title {
  font-style: italic;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.review-stat {
  text-align: center;
  padding: 0 1.5rem;
  border-left: 1px solid #eee;
}

.review-stat:first-child {
  border-left: none;
}

.review-stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  line-height: 1;
}

.review-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: #222;
  font-weight: 500;
  margin-top: 3px;
}

.review-card {
  background: #f5f3ee;
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.review-stars i {
  color: #e46193;
  font-size: 0.8rem;
}

.review-date {
  font-size: 0.72rem;
  color: #aaa;
}

.review-text {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.review-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fce4ec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #000000;
  font-weight: 600;
  flex-shrink: 0;
}

.review-avatar.blue {
  background: #fce4ec;
}

.review-avatar.green {
  background: #fce4ec;
}

.review-author-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #222;
}

/* ============================================================
   PROVITTO – Product Tabs + Inner Table
   ============================================================ */
section.product-tabs-bg {
  background-color: #f5f3ee;
}

/* ── Tab navigace ── */
.product-tabs-nav {
  display: flex;
  border-bottom: 1.5px solid #eee;
  margin-bottom: 2rem;
  gap: 0;
}

.product-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted, #888);
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.product-tab-btn:hover {
  color: var(--dark, #1a1a1a);
}

.product-tab-btn.is-active {
  color: var(--dark, #1a1a1a);
  border-bottom-color: var(--dark, #1a1a1a);
}

/* ── Tab obsah ── */
.product-tab-content {
  display: none;
}

.product-tab-content.is-active {
  display: block;
}

/* ── Vnitřní obsah (the_content()) ── */
.product-tab-inner {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.85;
  max-width: 720px;
}

.product-tab-inner p {
  margin-bottom: 0.9rem;
}

.product-tab-inner p:empty {
  display: none;
  /* schová prázdné <p>&nbsp;</p> z WP editoru */
}

.product-tab-inner h3,
.product-tab-inner h4 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  color: var(--dark, #1a1a1a);
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.product-tab-inner h3 {
  font-size: 1.25rem;
}

.product-tab-inner h4 {
  font-size: 1.05rem;
}

/* ── Tabulka velikostí ── */
.product-tab-inner table {
  width: 100% !important;
  max-width: 460px !important;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.84rem;
  color: var(--dark, #1a1a1a);
}

/* Záhlaví (první řádek s <strong>) */
.product-tab-inner table tbody tr:first-child td {
  background: var(--dark, #1a1a1a);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  border: none;
}

.product-tab-inner table tbody tr:first-child td strong {
  color: #fff;
  font-weight: 600;
}

/* Zaoblení rohů záhlaví */
.product-tab-inner table tbody tr:first-child td:first-child {
  border-radius: 10px 0 0 0;
}

.product-tab-inner table tbody tr:first-child td:last-child {
  border-radius: 0 10px 0 0;
}

/* Datové řádky */
.product-tab-inner table tbody tr {
  border-bottom: 1px solid #f0ece6;
  transition: background 0.15s;
}

.product-tab-inner table tbody tr:last-child {
  border-bottom: none;
}

.product-tab-inner table tbody tr:not(:first-child):hover {
  background: #fafaf8;
}

/* Střídání řádků */
.product-tab-inner table tbody tr:not(:first-child):nth-child(even) {
  background: #fafaf8;
}

.product-tab-inner table tbody tr:not(:first-child):nth-child(even):hover {
  background: #f3f0eb;
}

/* Buňky */
.product-tab-inner table tbody tr:not(:first-child) td {
  padding: 0.6rem 1rem;
  border: none;
  font-size: 0.84rem;
  color: #444;
  vertical-align: middle;
}

/* První sloupec (velikost) tučněji */
.product-tab-inner table tbody tr:not(:first-child) td:first-child {
  font-weight: 600;
  color: var(--dark, #1a1a1a);
}

/* Celý table obal – zaoblení + stín */
.product-tab-inner table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* ── Responsive ── */
@media (max-width: 575px) {
  .product-tab-btn {
    padding: 0.7rem 1rem;
    font-size: 0.65rem;
  }

  .product-tab-inner table,
  .product-tab-inner table tbody tr:first-child td:first-child,
  .product-tab-inner table tbody tr:first-child td:last-child {
    border-radius: 8px 8px 0 0;
  }
}
/* ============================================================
   RESPONZIVITA — detail produktu
   Breakpointy: 1199 | 991 | 768 | 767 | 601 | 425 | 375 | 320
   Poznámka: 991px, 767px a 575px jsou v base CSS — zde
   doplňujeme a zpřesňujeme pro náš systém breakpointů.
   ============================================================ */

/* ─── max-width: 1199px ─── */
@media (max-width: 1199px) {
  .product-summary .product-title {
    font-size: 38px;
  }

  .section-title {
    font-size: 38px;
  }

  .product-gallery-main .woocommerce-product-gallery__image:first-child img {
    height: 440px;
  }

  .product-summary {
    padding-left: 2rem;
  }

  .review-stat-number {
    font-size: 1.9rem;
  }
}

/* ─── max-width: 991px — rozšíření existujícího breakpointu ─── */
@media (max-width: 991px) {
  .product-summary .product-title {
    font-size: 34px;
  }

  .section-title {
    font-size: 34px;
  }

  .product-gallery-main .woocommerce-product-gallery__image:first-child img {
    height: 400px;
  }

  .product-gallery-main .flex-control-nav.flex-control-thumbs img {
    height: 80px !important;
  }

  .product-price-current {
    font-size: 1.55rem;
  }

  .review-stat {
    padding: 0 1rem;
  }

  .review-stat-number {
    font-size: 1.7rem;
  }

  .reviews-section {
    padding: 4rem 0;
  }
}

/* ─── max-width: 768px ─── */
@media (max-width: 768px) {
  .product-summary .product-title {
    font-size: 30px;
  }

  .section-title {
    font-size: 30px;
  }

  .product-gallery-main .woocommerce-product-gallery__image:first-child img {
    height: 360px;
  }

  .product-gallery-main .flex-control-nav.flex-control-thumbs img {
    height: 72px !important;
  }

  .product-price-box {
    padding: 1rem 1.1rem;
  }

  .product-price-current {
    font-size: 1.45rem;
  }

  .product-summary .qty {
    width: 70px;
    height: 48px;
  }

  .product-summary .single_add_to_cart_button {
    height: 48px !important;
    font-size: 0.76rem !important;
  }

  .perks-bar {
    padding: 2rem 0;
  }

  .perk-icon i {
    font-size: 22px;
  }

  .perk-label {
    font-size: 12px;
  }

  .review-stat-number {
    font-size: 1.55rem;
  }

  .review-stat-label {
    font-size: 0.6rem;
  }

  .product-tab-btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.68rem;
  }
}

/* ─── max-width: 767px — rozšíření existujícího breakpointu ─── */
@media (max-width: 767px) {
  .product-summary .product-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .product-gallery-main .woocommerce-product-gallery__image:first-child img {
    height: 320px;
  }

  .product-gallery-main .woocommerce-product-gallery__wrapper {
    border-radius: 14px;
  }

  .product-gallery-main .flex-control-nav.flex-control-thumbs {
    gap: 0.5rem;
    margin-top: 10px !important;
  }

  .product-gallery-main .flex-control-nav.flex-control-thumbs img {
    height: 68px !important;
    border-radius: 6px;
  }

  .product-price-current {
    font-size: 1.35rem;
  }

  .product-price-old {
    font-size: 0.95rem;
  }

  .product-summary .cart {
    gap: 0.6rem;
  }

  .product-summary .qty {
    width: 64px;
    height: 46px;
    font-size: 0.9rem;
  }

  .product-summary .single_add_to_cart_button {
    height: 46px !important;
    min-width: 140px !important;
  }

  .product-summary .product-short {
    font-size: 15px;
  }

  .product-benefits li {
    font-size: 0.82rem;
  }

  .product-info-note {
    font-size: 0.75rem;
  }

  .review-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .review-text {
    font-size: 0.83rem;
  }

  .reviews-section {
    padding: 3rem 0;
  }

  .review-stat {
    padding: 0 0.75rem;
  }

  .review-stat-number {
    font-size: 1.4rem;
  }

  .product-tab-btn {
    padding: 0.7rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }

  .product-tab-inner {
    font-size: 0.88rem;
  }

  .product-tab-inner h3 {
    font-size: 1.15rem;
  }

  .product-tab-inner h4 {
    font-size: 1rem;
  }
}

/* ─── max-width: 601px ─── */
@media (max-width: 601px) {
  .product-summary .product-title {
    font-size: 26px;
  }

  .section-title {
    font-size: 26px;
  }

  .product-gallery-main .woocommerce-product-gallery__image:first-child img {
    height: 280px;
  }

  .product-gallery-main .woocommerce-product-gallery__wrapper {
    border-radius: 12px;
  }

  .product-gallery-main .flex-control-nav.flex-control-thumbs img {
    height: 62px !important;
  }

  .product-price-box {
    padding: 0.9rem 1rem;
    border-radius: 12px;
  }

  .product-price-current {
    font-size: 1.25rem;
  }

  .product-price-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .product-summary .cart {
    flex-wrap: wrap;
  }

  .product-summary .qty {
    width: 60px;
    height: 44px;
  }

  .product-summary .single_add_to_cart_button {
    height: 44px !important;
    width: 100% !important;
    min-width: unset !important;
  }

  .yith-wcwl-add-button a,
  .yith-wcwl-wishlistaddedbrowse a,
  .yith-wcwl-wishlistexistsbrowse a {
    width: 100% !important;
    justify-content: center;
    height: 44px !important;
  }

  .product-summary .variations select {
    height: 44px;
    font-size: 0.82rem;
  }

  .perks-bar {
    padding: 1.75rem 0;
  }

  .perk-icon i {
    font-size: 20px;
  }

  .perk-label {
    font-size: 11.5px;
  }

  .review-stat-number {
    font-size: 1.3rem;
  }

  .review-card {
    padding: 1.1rem;
  }

  .review-text {
    font-size: 0.82rem;
  }

  .product-tab-inner {
    font-size: 0.86rem;
  }

  .product-tab-inner table {
    font-size: 0.82rem;
  }

  .product-tab-inner table tbody tr:not(:first-child) td {
    padding: 0.5rem 0.8rem;
    font-size: 0.82rem;
  }
}

/* ─── max-width: 425px ─── */
@media (max-width: 425px) {
  .product-summary .product-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .product-detail-bg {
    padding: 1.25rem 0 3rem;
  }

  .product-gallery-main .woocommerce-product-gallery__image:first-child img {
    height: 250px;
  }

  .product-gallery-main .flex-control-nav.flex-control-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
  }

  .product-gallery-main .flex-control-nav.flex-control-thumbs img {
    height: 56px !important;
    border-radius: 5px;
  }

  .product-price-current {
    font-size: 1.2rem;
  }

  .price-vat {
    font-size: 0.7rem;
  }

  .product-price-note {
    font-size: 0.68rem;
  }

  .product-summary .product-short {
    font-size: 14px;
  }

  .product-summary .qty {
    width: 56px;
    height: 42px;
    font-size: 0.88rem;
    border-radius: 8px;
  }

  .product-summary .single_add_to_cart_button {
    height: 42px !important;
    font-size: 0.74rem !important;
    border-radius: 8px !important;
  }

  .product-benefits li {
    font-size: 0.8rem;
  }

  .product-info-note {
    font-size: 0.72rem;
    padding: 0.7rem 0.875rem;
  }

  .reviews-section {
    padding: 2.5rem 0;
  }

  .review-stat-number {
    font-size: 1.2rem;
  }

  .review-stat-label {
    font-size: 0.58rem;
  }

  .review-stat {
    padding: 0 0.5rem;
  }

  .review-card {
    padding: 1rem;
    border-radius: 10px;
  }

  .review-text {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .review-author-name {
    font-size: 0.75rem;
  }

  .product-tab-btn {
    padding: 0.65rem 0.875rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .product-tab-inner {
    font-size: 0.84rem;
  }
}

/* ─── max-width: 375px ─── */
@media (max-width: 375px) {
  .product-summary .product-title {
    font-size: 22px;
  }

  .section-title {
    font-size: 22px;
  }

  .product-gallery-main .woocommerce-product-gallery__image:first-child img {
    height: 220px;
  }

  .product-gallery-main .woocommerce-product-gallery__wrapper {
    border-radius: 10px;
  }

  .product-gallery-main .flex-control-nav.flex-control-thumbs img {
    height: 50px !important;
    border-radius: 5px;
  }

  .product-gallery-main .flex-control-nav.flex-control-thumbs {
    gap: 0.35rem;
  }

  .product-price-box {
    padding: 0.8rem 0.875rem;
    border-radius: 10px;
  }

  .product-price-current {
    font-size: 1.1rem;
  }

  .product-price-old {
    font-size: 0.88rem;
  }

  .product-summary .qty {
    width: 52px;
    height: 40px;
    font-size: 0.85rem;
    border-radius: 7px;
  }

  .product-summary .single_add_to_cart_button {
    height: 40px !important;
    font-size: 0.72rem !important;
    border-radius: 7px !important;
  }

  .product-benefits {
    margin-bottom: 1.1rem;
    padding-top: 0.875rem;
  }

  .product-benefits li {
    font-size: 0.78rem;
    gap: 0.5rem;
  }

  .perks-bar {
    padding: 1.5rem 0;
  }

  .perk-icon i {
    font-size: 18px;
  }

  .perk-label {
    font-size: 11px;
  }

  .review-stat-number {
    font-size: 1.1rem;
  }

  .review-card {
    padding: 0.875rem;
    border-radius: 9px;
  }

  .review-text {
    font-size: 0.78rem;
  }

  .product-tab-btn {
    padding: 0.6rem 0.75rem;
    font-size: 0.6rem;
  }

  .product-tab-inner {
    font-size: 0.82rem;
    line-height: 1.8;
  }

  .product-tab-inner table tbody tr:first-child td {
    padding: 0.55rem 0.75rem;
    font-size: 0.62rem;
  }

  .product-tab-inner table tbody tr:not(:first-child) td {
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
  }
}

/* ─── max-width: 320px ─── */
@media (max-width: 320px) {
  .product-summary .product-title {
    font-size: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .product-detail-bg {
    padding: 1rem 0 2.5rem;
  }

  .product-gallery-main .woocommerce-product-gallery__image:first-child img {
    height: 195px;
  }

  .product-gallery-main .woocommerce-product-gallery__wrapper {
    border-radius: 9px;
    margin-bottom: 0.75rem;
  }

  .product-gallery-main .flex-control-nav.flex-control-thumbs img {
    height: 44px !important;
    border-radius: 4px;
  }

  .product-gallery-main .flex-control-nav.flex-control-thumbs {
    gap: 0.3rem;
    margin-top: 8px !important;
  }

  .product-price-box {
    padding: 0.7rem 0.75rem;
    border-radius: 9px;
    margin-bottom: 1.1rem;
  }

  .product-price-current {
    font-size: 1rem;
  }

  .product-price-old {
    font-size: 0.82rem;
  }

  .product-price-badge {
    font-size: 0.55rem;
    padding: 3px 7px;
  }

  .product-summary .product-short {
    font-size: 13px;
  }

  .product-summary .qty {
    width: 48px;
    height: 38px;
    font-size: 0.82rem;
    border-radius: 6px;
  }

  .product-summary .single_add_to_cart_button {
    height: 38px !important;
    font-size: 0.7rem !important;
    border-radius: 6px !important;
    padding: 0 1rem !important;
  }

  .product-summary .variations select {
    height: 40px;
    font-size: 0.78rem;
    border-radius: 8px;
  }

  .product-benefits li {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
  }

  .product-info-note {
    font-size: 0.7rem;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
  }

  .perks-bar {
    padding: 1.25rem 0;
  }

  .perk-icon i {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .perk-label {
    font-size: 10.5px;
    margin-top: 3px;
  }

  .reviews-section {
    padding: 2rem 0;
  }

  .review-stat-number {
    font-size: 1rem;
  }

  .review-stat-label {
    font-size: 0.54rem;
    letter-spacing: 0.12em;
  }

  .review-stat {
    padding: 0 0.375rem;
  }

  .review-card {
    padding: 0.75rem;
    border-radius: 8px;
  }

  .review-text {
    font-size: 0.75rem;
    line-height: 1.65;
    margin-bottom: 0.875rem;
  }

  .review-author-name {
    font-size: 0.7rem;
  }

  .review-avatar {
    width: 26px;
    height: 26px;
    font-size: 0.64rem;
  }

  .review-date {
    font-size: 0.65rem;
  }

  .product-tab-btn {
    padding: 0.55rem 0.625rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .product-tab-inner {
    font-size: 0.8rem;
    line-height: 1.75;
  }

  .product-tab-inner h3 {
    font-size: 1rem;
  }

  .product-tab-inner h4 {
    font-size: 0.9rem;
  }

  .product-tab-inner table tbody tr:first-child td {
    padding: 0.5rem 0.625rem;
    font-size: 0.6rem;
  }

  .product-tab-inner table tbody tr:not(:first-child) td {
    padding: 0.4rem 0.625rem;
    font-size: 0.75rem;
  }
}

/*--------------------------------------------------------------
# OBCHOD
--------------------------------------------------------------*/
/* ═══════════════════════════════════════════════════════════════
   SHOP – SIDEBAR LAYOUT
   Přidej do svého hlavního CSS souboru (nebo enqueue jako shop-sidebar.css)
═══════════════════════════════════════════════════════════════ */

/* ── Layout: sidebar + main ─────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────────── */
.shop-sidebar {
  position: sticky;
  top: 100px;
  /* výška headeru – uprav dle potřeby */
}

.sidebar-toggle {
  display: none;
  /* schované na desktopu */
  width: 100%;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  margin-bottom: 8px;
}

.sidebar-toggle .filter-count {
  margin-left: auto;
  background: #e91e8c;
  /* přizpůsob hlavní barvě webu */
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  align-items: center;
  justify-content: center;
}

/* ── Aktivní filtry ──────────────────────────────────────────── */
.active-filters {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
}

.active-filters .filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.clear-all-btn {
  background: none;
  border: none;
  color: #e91e8c;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.active-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}

.filter-tag:hover {
  background: #fce4f0;
  border-color: #e91e8c;
}

.filter-tag span {
  font-size: 14px;
  line-height: 1;
  color: #999;
}

/* ── Skupiny filtrů ──────────────────────────────────────────── */
.filter-group {
  border-bottom: 1px solid #ebebeb;
}

.filter-group:first-child {
  border-top: 1px solid #ebebeb;
}

.filter-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1a1a1a;
  cursor: pointer;
}

.filter-group-toggle .chevron {
  transition: transform .25s ease;
  flex-shrink: 0;
}

.filter-group-toggle.open .chevron {
  transform: rotate(180deg);
}

/* ── Panel (rozbalovací obsah) ───────────────────────────────── */
.filter-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, padding .3s ease;
  padding-bottom: 0;
}

.filter-panel.open {
  max-height: 600px;
  padding-bottom: 14px;
}

/* ── Checkboxy / radio ───────────────────────────────────────── */
.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list.scrollable {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 4px;
}

.filter-list li+li {
  margin-top: 4px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  padding: 3px 0;
  transition: color .15s;
}

.filter-checkbox:hover {
  color: #e91e8c;
}

.filter-checkbox input[type="radio"],
.filter-checkbox input[type="checkbox"] {
  accent-color: #e91e8c;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
}

.filter-checkbox .count {
  margin-left: auto;
  font-size: 11px;
  color: #aaa;
}

/* ── Cenový slider ───────────────────────────────────────────── */
.price-range-wrap {
  padding: 4px 0 8px;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.price-input-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.price-input-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #aaa;
}

.price-input-group input[type="number"] {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 13px;
  outline: none;
  transition: border-color .15s;
  -moz-appearance: textfield;
}

.price-input-group input[type="number"]::-webkit-inner-spin-button {
  display: none;
}

.price-input-group input[type="number"]:focus {
  border-color: #e91e8c;
}

.price-input-group .currency {
  font-size: 10px;
  color: #aaa;
  display: none;
  /* schované – cena je v placeholderu */
}

.price-separator {
  color: #ccc;
  font-size: 18px;
  padding-top: 14px;
}

.range-slider-wrap {
  position: relative;
  height: 20px;
}

.range-track {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  height: 4px;
  background: #e5e5e5;
  border-radius: 2px;
}

.range-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  background: #e91e8c;
  border-radius: 2px;
}

.range-input {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background: transparent;
  outline: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid #e91e8c;
  border-radius: 50%;
  pointer-events: all;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
  transition: box-shadow .15s;
}

.range-input::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 4px rgba(233, 30, 140, .15);
}

.range-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid #e91e8c;
  border-radius: 50%;
  pointer-events: all;
  cursor: pointer;
}

/* ── Velikosti – grid chipsů ─────────────────────────────────── */
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.size-chip {
  padding: 5px 10px;
  min-width: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: all .15s;
  color: #333;
}

.size-chip:hover {
  border-color: #e91e8c;
  color: #e91e8c;
}

.size-chip.active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

/* ── Barvy – kruhové chipy ───────────────────────────────────── */
.color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-chip {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  padding: 0;
  position: relative;
}

.color-chip:hover {
  transform: scale(1.15);
}

.color-chip.active {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 2px #fff inset;
}

/* ── Toolbar ─────────────────────────────────────────────────── */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  margin-bottom: 24px;
}

.product-count-label {
  font-size: 13px;
  color: #888;
}

.product-count-label strong {
  color: #1a1a1a;
}

.sort-wrap select.sort-select {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 7px 32px 7px 12px;
  font-size: 13px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpolyline points='1 1 5 5 9 1'/%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color .15s;
}

.sort-wrap select.sort-select:focus {
  border-color: #e91e8c;
}

/* ── No results ──────────────────────────────────────────────── */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 15px;
  grid-column: 1 / -1;
}

/* ── Responzivita ────────────────────────────────────────────── */

/* Tablet: sidebar se přesune nahoru, skryje se za toggle */
@media (max-width: 991px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

  .sidebar-toggle {
    display: flex;
  }

  .sidebar-inner {
    display: none;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
  }

  .sidebar-inner.open {
    display: block;
  }
}

/* Mobil */
@media (max-width: 575px) {
  .shop-toolbar {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .sort-wrap {
    width: 100%;
  }

  .sort-wrap select.sort-select {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# SCROLL
--------------------------------------------------------------*/
/* SCROLLBAR */
/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background-color: #e46193;
}
::-webkit-scrollbar-thumb {
  background: #fce4ec;
}

/*--------------------------------------------------------------
# WP LOGIN
--------------------------------------------------------------*/
body.login {
    background-image: url('/wp-content/uploads/2026/04/banner.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-color: #1b1b1b;
}
#login h1 a {
  background-image: url("/wp-content/uploads/2026/04/logo.jpg");
  background-size: 335px;
  width: auto;
}
.login form {
  box-shadow: none;
  padding: 20px;
  background: #ffffff;
  border: none;
}
#login {
  background: #ffffff;
  margin: 50px auto;
  padding: 40px 20px;
  width: 400px;
  border-radius: 15px;
}
#login h1 a {
  font-family: "Playfair Display", serif;
}
.login label {
 font-family: "DM Sans", serif;
  font-weight: 700;
  color: #222222;
  font-size: 14px;
}
.login form .forgetmenot {
  float: none;
}
#login form p.submit {
  margin-top: 15px;
}
.login.wp-core-ui .button-primary {
font-family: "DM Sans", serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border-radius: 10px;
    border: 2px solid #e46193;
    background-color: #e46193;
    padding: 12px 35px;
    text-transform: uppercase;
    transition: .5s;
  width: 100%;
}
.login.wp-core-ui .button-primary:hover {
  background-color: #222;
  color: #ffffff;
  border-color: #222;
}
.login form .input,
.login input[type=text],
.login input[type=password] {
  background: #d9dbe1;
  font-size: 24px;
  line-height: 1.33333333;
  width: 100%;
  border-width: 2px;
  padding: 0.1875rem 0.3125rem;
  margin: 0 6px 16px 0;
  min-height: 40px;
  border: 2px solid #ffffff;
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
}
p#backtoblog {
  display: none;
}
.privacy-policy-page-link a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #222;
  font-weight: 700;
}
.login #nav a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: #222;
  text-decoration: underline;
}
.login #nav a:hover {
  color: #e46193;
}










/* ═══════════════════════════════════════════════════════════════
   POKLADNA – WC Blocks Gutenberg → Lulu design override
   Primární: #c8426a | Světlá: #fdf2f6 | Border: #e8dde2
════════════════════════════════════════════════════════════════ */

/* ── Wrapper layout ── */
.wp-block-woocommerce-checkout.wc-block-checkout {
    max-width: 100% !important;
    padding: 0 !important;
}
.wc-block-checkout .wc-block-components-sidebar-layout {
    display: block !important;
    padding: 0 !important;
}
.wc-block-checkout .wc-block-components-main {
    max-width: 100% !important;
    padding: 0 !important;
    float: none !important;
    width: 100% !important;
}
.wc-block-checkout .wc-block-components-sidebar {
   
}
.wc-block-checkout .wc-block-components-form.wc-block-checkout__form {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* ── Sekce / kroky ── */
.wc-block-checkout .wc-block-components-checkout-step {
    background: transparent !important;
    border: none !important;
    padding: 0 0 28px !important;
    margin: 0 !important;
    box-shadow: none !important;
}
.wc-block-checkout .wc-block-components-checkout-step__heading-container {
    margin-bottom: 14px !important;
    padding: 0 !important;
    border: none !important;
}
.wc-block-checkout .wc-block-components-checkout-step__title {
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .1em !important;
    color: #aaa !important;
    margin: 0 !important;
}
.wc-block-checkout .wc-block-components-checkout-step__content {
    padding: 0 !important;
}

/* ── Radio – výběr dopravy ── */
.wc-block-checkout .wc-block-components-radio-control__option {
    display: flex !important;
    align-items: center !important;
    padding: 14px 18px !important;
    margin-bottom: 10px !important;
    border: 1.5px solid #e8dde2 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: border-color .18s, background .18s !important;
    background: #fff !important;
    gap: 12px !important;
}
.wc-block-checkout .wc-block-components-radio-control__option:hover {
    border-color: #c8426a !important;
    background: #fdf2f6 !important;
}
.wc-block-checkout .wc-block-components-radio-control__option-checked,
.wc-block-checkout .wc-block-components-radio-control__option--checked-option-highlighted {
    border-color: #c8426a !important;
    background: #fdf2f6 !important;
}
.wc-block-checkout .wc-block-components-radio-control__input {
    width: 18px !important;
    height: 18px !important;
    accent-color: #c8426a !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}
.wc-block-checkout .wc-block-components-radio-control__option-layout {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}
.wc-block-checkout .wc-block-components-radio-control__label-group {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    gap: 8px !important;
    padding-left: 25px;
}
.wc-block-checkout .wc-block-components-radio-control__label {
    font-size: .95rem !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    flex: 1 !important;
}
.wc-block-checkout .wc-block-components-radio-control__secondary-label {
    font-size: .9rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-left: auto !important;
}
.wc-block-checkout .wc-block-checkout__shipping-option--free {
    color: #22c55e !important;
    font-weight: 600 !important;
}
.wc-block-checkout .wc-block-formatted-money-amount {
    font-weight: 600 !important;
    color: #1a1a1a !important;
}

/* ── Zásilkovna parcelshop widget ── */
.wc-block-checkout .tzzas-block-parcelshops {
    margin: 4px 0 16px 32px !important;
    padding: 14px 16px !important;
    background: #fdf2f6 !important;
    border: 1.5px solid #f0d0dd !important;
    border-radius: 10px !important;
}
.wc-block-checkout .tzzas-block-parcelshops:empty {
    display: none;
}
/* Tlačítko výběru pobočky od Toret pluginu */
.wc-block-checkout .tzzas-block-parcelshops button,
.wc-block-checkout .tzzas-block-parcelshops a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 9px 18px !important;
    background: #c8426a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: .88rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: background .18s !important;
}
.wc-block-checkout .tzzas-block-parcelshops button:hover,
.wc-block-checkout .tzzas-block-parcelshops a:hover {
    background: #a8325a !important;
}
/* Vybraná pobočka */
.wc-block-checkout .tzzas-block-parcelshops .tzzas-chosen-point,
.wc-block-checkout .tzzas-block-parcelshops [class*="chosen"],
.wc-block-checkout .tzzas-block-parcelshops [class*="selected"] {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: .9rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-bottom: 10px !important;
}

/* ── Platební metody ── */
.wc-block-checkout .wc-block-components-payment-methods {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}
.wc-block-checkout .wc-block-components-payment-method-label {
    display: flex !important;
    align-items: center !important;
    padding: 14px 18px !important;
    border: 1.5px solid #e8dde2 !important;
    border-radius: 12px !important;
    background: #fff !important;
    cursor: pointer !important;
    transition: border-color .18s, background .18s !important;
    gap: 12px !important;
}
.wc-block-checkout .wc-block-components-payment-method-label:has(input:checked) {
    border-color: #c8426a !important;
    background: #fdf2f6 !important;
}
.wc-block-checkout .wc-block-components-payment-method-label input[type="radio"] {
    accent-color: #c8426a !important;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
}
.wc-block-checkout .wc-block-components-payment-method-label__name {
    font-size: .95rem !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
}

/* ── Text inputs ── */
.wc-block-checkout .wc-block-components-text-input {
    position: relative !important;
    margin-bottom: 14px !important;
}
.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-blocks-components-select__select {
    border: 1.5px solid #e8dde2 !important;
    border-radius: 10px !important;
    padding: 22px 14px 8px !important;
    font-size: .95rem !important;
    background: #fff !important;
    width: 100% !important;
    transition: border-color .18s, box-shadow .18s !important;
    color: #1a1a1a !important;
}
.wc-block-checkout .wc-block-components-text-input input:focus,
.wc-block-checkout .wc-blocks-components-select__select:focus {
    border-color: #c8426a !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(200,66,106,.12) !important;
}
.wc-block-checkout .wc-block-components-text-input label {
    position: absolute !important;
    top: 50% !important;
    left: 14px !important;
    transform: translateY(-50%) !important;
    font-size: .9rem !important;
    color: #999 !important;
    pointer-events: none !important;
    transition: all .18s !important;
}
.wc-block-checkout .wc-block-components-text-input.is-active label,
.wc-block-checkout .wc-block-components-text-input input:focus ~ label {
    top: 8px !important;
    transform: none !important;
    font-size: .72rem !important;
    color: #c8426a !important;
}

/* ── Select (Země) ── */
.wc-block-checkout .wc-blocks-components-select__container {
    border: 1.5px solid #e8dde2 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #fff !important;
    margin-bottom: 14px !important;
}
.wc-block-checkout .wc-blocks-components-select__label {
    /* font-size: .72rem !important; */
    /* color: #c8426a !important; */
    /* padding: 8px 14px 0 !important; */
    /* display: block !important; */
    display: none;
}
.wc-block-checkout .wc-blocks-components-select__select {
    border: none !important;
    border-radius: 0 !important;
    padding: 4px 14px 10px !important;
    margin: 0 !important;
}

/* ── Checkbox ── */
.wc-block-checkout .wc-block-components-checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
}
.wc-block-checkout .wc-block-components-checkbox__input {
    width: 18px !important;
    height: 18px !important;
    accent-color: #c8426a !important;
    flex-shrink: 0 !important;
}
.wc-block-checkout .wc-block-components-checkbox__mark {
    
}
.wc-block-checkout .wc-block-components-checkbox__label {
    font-size: .88rem !important;
    color: #555 !important;
    line-height: 1.5 !important;
}

/* ── Error / notice ── */
.wc-block-checkout .wc-block-components-notice-banner.is-error {
    border-radius: 10px !important;
    border-left: 4px solid #c8426a !important;
    background: #fdf2f6 !important;
    padding: 12px 16px !important;
    font-size: .88rem !important;
    color: #7a1a35 !important;
}
.wc-block-checkout .wc-block-components-notice-banner.is-error svg {
    fill: #c8426a !important;
    flex-shrink: 0 !important;
}

/* ── Skryj nepotřebné elementy ── */
.wc-block-checkout .wc-block-checkout__actions,
.wc-block-checkout .wc-block-checkout__terms,
.wc-block-checkout .wc-block-components-checkout-return-to-cart-button,
.wc-block-checkout .wc-block-components-checkout-place-order-button,
.wc-block-checkout .wc-block-checkout__order-notes,
.wc-block-checkout #contact-fields,
.wc-block-checkout #shipping-fields,
.wc-block-checkout #billing-fields {

}

/* ── Tlačítko "Pokračovat" pod WC Blocks (naše vlastní) ── */
.co-step1-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: 8px !important;
    padding-top: 24px !important;
    border-top: 1px solid #f0e8ec !important;
}

.wc-block-checkout__actions .wc-block-checkout__actions_row {
  display: none;
}