/* =========================================================
   PEKÁRNA KOTYZA — Styles
   ========================================================= */

/* === GOOGLE FONTS === */
/* Fonty se načítají přes <link> v <head> obou HTML stránek.
   Dřív byly zde přes @import — to prohlížeč musel nejdřív stáhnout
   tento soubor a teprve pak začal stahovat fonty (zbytečné čekání). */

/* === CSS VARIABLES === */
:root {
  --brown:        #6B564C;
  --brown-dark:   #5A473E;
  --brown-light:  #7D6B62;
  --gold:         #C68D33;
  --gold-dark:    #A87729;
  --gold-light:   #E8C88F;
  --cream:        #F8F3E9;
  --cream-dark:   #EDE8DC;
  --white:        #FFFFFF;
  --taupe:        #A59B9B;
  --taupe-light:  #C4BEBE;
  --taupe-dark:   #8A7F7F;

  --radius:       12px;
  --radius-sm:    8px;
  --shadow-sm:    0 4px 20px -8px rgba(107,86,76,.2);
  --shadow-md:    0 8px 30px -10px rgba(107,86,76,.25);
  --shadow-lg:    0 18px 45px -12px rgba(107,86,76,.35);
  --transition:   0.25s ease;
  --header-h:     72px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 0.5rem); /* offset pro fixní hlavičku u odkazů na kotvy */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* pojistka proti horizontálnímu posuvu na mobilu */
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--gold); color: #fff; }

/* === SCROLLBAR === */
@media (min-width: 1024px) {
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: var(--cream); }
  ::-webkit-scrollbar-thumb { background: var(--taupe-light); border-radius: 6px; border: 2px solid var(--cream); }
  ::-webkit-scrollbar-thumb:hover { background: var(--taupe); }
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.section--white  { background: var(--white); }
.section--cream  { background: var(--cream); }
.section--brown  { background: var(--brown); color: #fff; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-3px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-md { padding: .75rem 1.5rem; font-size: 1rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }

.btn-primary { background: var(--gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-dark); box-shadow: var(--shadow-md); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: #fff; color: var(--brown); }

.btn-secondary { background: var(--brown); color: var(--cream); }
.btn-secondary:hover { background: var(--brown-dark); }

/* =========================================================
   SECTION HEADING
   ========================================================= */
.section-heading { text-align: center; margin-bottom: 3.5rem; }
.section-heading .eyebrow {
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  color: var(--brown);
}
.section-heading .subtitle {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  color: var(--brown-light);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.section-heading .divider {
  width: 4rem;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(248,243,233,.9);
  backdrop-filter: blur(12px);
  padding: .75rem 0;
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.header__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  transition: color var(--transition);
}
.header.scrolled .header__logo { color: var(--brown); }
.header.scrolled .header__logo span { color: var(--gold); }
.header__logo span { color: var(--gold-light); }
.header__logo:hover span { color: var(--gold-dark); }

.header__nav { display: none; }
@media (min-width: 1024px) {
  .header__nav { display: flex; align-items: center; gap: .25rem; }
}
.header__nav a {
  position: relative;
  padding: .5rem 1rem;
  font-size: .9375rem;
  font-weight: 500;
  color: #fff;
  transition: color var(--transition);
}
.header.scrolled .header__nav a { color: var(--brown); }
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: .25rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.header__nav a:hover { color: var(--gold); }
.header__nav a:hover::after { transform: scaleX(1); }

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
  color: #fff;
}
.header.scrolled .header__burger { color: var(--brown); }
@media (min-width: 1024px) { .header__burger { display: none; } }
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   MOBILE MENU
   ========================================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.mobile-menu.open { pointer-events: all; opacity: 1; }
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(90,71,62,.6);
  backdrop-filter: blur(4px);
}
.mobile-menu__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 360px);
  background: var(--cream);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open .mobile-menu__panel { transform: none; }
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--taupe-light);
}
.mobile-menu__header span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brown);
}
.mobile-menu__close {
  cursor: pointer;
  background: none;
  border: none;
  padding: .5rem;
  color: var(--brown);
  font-size: 1.5rem;
  line-height: 1;
}
.mobile-menu nav { padding: 1rem; }
.mobile-menu nav a {
  display: block;
  padding: .85rem 1rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brown);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu nav a:hover { background: var(--cream-dark); color: var(--gold); }
.mobile-menu__info {
  margin-top: auto;
  padding: 1.5rem;
  border-top: 1px solid var(--taupe-light);
  font-size: .875rem;
  color: var(--brown-light);
  line-height: 1.8;
}
.mobile-menu__info a:hover { color: var(--gold); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--brown-dark);
  color: #fff;
}

/* Carousel */
.hero__carousel {
  position: absolute;
  inset: 0;
}
.hero__slides {
  display: flex;
  height: 100%;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.hero__slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(90,71,62,.4) 0%, rgba(58,46,40,.4) 40%, rgba(58,46,40,.85) 100%);
  pointer-events: none;
  z-index: 1;
}

/* content */
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero__eyebrow {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp .7s .1s ease forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .8s .25s ease forwards;
}
.hero__title em { color: var(--gold-light); font-style: italic; }
.hero__subtitle {
  margin-top: 1.5rem;
  font-size: clamp(.95rem, 2.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  max-width: 640px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .8s .45s ease forwards;
}
.hero__buttons {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .8s .65s ease forwards;
}

/* dots */
.hero__dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .4rem;
}
.hero__dot {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.4);
  width: 16px;
  border: none;
  cursor: pointer;
  transition: width .3s, background .3s;
}
.hero__dot.active { width: 32px; background: var(--gold-light); }

/* scroll arrow */
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,.8);
  font-size: 1.75rem;
  animation: bounceDown 2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero__scroll:hover { color: #fff; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .about__grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
}

.about__text .eyebrow {
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: .75rem;
}
.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: var(--brown);
}
.about__text h2 em { color: var(--gold); font-style: italic; }
.about__divider {
  width: 4rem;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.about__text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--brown-light);
  margin-bottom: 1.25rem;
}

.about__image-wrap {
  position: relative;
}
.about__image-wrap .img-box {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__image-wrap .deco-1 {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 7rem;
  height: 7rem;
  background: var(--gold);
  border-radius: var(--radius);
  border: 4px solid var(--cream);
  z-index: -1;
}
.about__image-wrap .deco-2 {
  display: none;
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 5.5rem;
  height: 5.5rem;
  background: var(--cream-dark);
  border-radius: var(--radius);
  border: 4px solid var(--cream);
  z-index: -1;
}
@media (min-width: 640px) {
  .about__image-wrap .deco-1,
  .about__image-wrap .deco-2 { display: block; }
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--taupe-light);
  border-bottom: 1px solid var(--taupe-light);
  padding: 3rem 0;
  margin-top: 4rem;
  text-align: center;
}
@media (max-width: 400px) { .stats { grid-template-columns: 1fr; } }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brown-light);
  margin-top: .5rem;
}

/* TIMELINE */
.timeline {
  position: relative;
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}
@media (min-width: 768px) { .timeline { grid-template-columns: repeat(3, 1fr); } }
.timeline::before {
  content: '';
  position: absolute;
  top: .5rem;
  left: .5rem;
  width: 2px;
  height: calc(100% - 1rem);
  background: var(--taupe-light);
}
@media (min-width: 768px) {
  .timeline::before {
    top: 0.4375rem;
    left: 0;
    width: 100%;
    height: 1px;
    transform: none;
    z-index: 0;
  }
}
.timeline__item { position: relative; padding-left: 2.5rem; }
@media (min-width: 768px) { .timeline__item { padding-left: 0; text-align: center; } }
.timeline__dot {
  position: absolute;
  left: 0;
  top: .4rem;
  width: .875rem;
  height: .875rem;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--cream);
  z-index: 1;
}
@media (min-width: 768px) {
  .timeline__dot {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 1rem;
  }
}
.timeline__year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}
.timeline__text {
  margin-top: .25rem;
  font-size: .9375rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* =========================================================
   PRODUCTS
   ========================================================= */
.products__block { margin-top: 3.5rem; }
.products__block-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.products__block-title h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: var(--brown);
  white-space: nowrap;
}
.products__block-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--taupe-light);
}

.products__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products__grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: #fff;
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }
.product-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.product-card:hover .product-card__img img { transform: scale(1.08); }
.product-card__body { padding: 1.5rem; flex: 1; }
.product-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--brown);
  margin-bottom: .5rem;
}
.product-card__desc { font-size: .9375rem; color: var(--brown-light); line-height: 1.6; }

/* =========================================================
   BESTSELLERY — TOP 3
   ========================================================= */
.bestsellers { margin-bottom: 1rem; }
.bestsellers__head { text-align: center; margin-bottom: 2.5rem; }
.bestsellers__head .eyebrow {
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: .5rem;
}
.bestsellers__head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--brown);
}
.bestsellers__sub { margin-top: .5rem; font-size: 1rem; color: var(--brown-light); }

.bestsellers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .bestsellers__grid { grid-template-columns: repeat(3, 1fr); }
}

.bestseller-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s cubic-bezier(.22,1,.36,1);
}
.bestseller-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bestseller-card__rank {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.bestseller-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.bestseller-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.bestseller-card:hover .bestseller-card__img img { transform: scale(1.06); }
.bestseller-card__body { padding: 1.5rem; text-align: center; }
.bestseller-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: .4rem;
}
.bestseller-card__desc { font-size: .92rem; color: var(--brown-light); line-height: 1.6; }

/* 1. místo — vystouplá, zvýrazněná dlaždice */
.bestseller-card--featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 860px) {
  .bestseller-card--featured { transform: translateY(-1.75rem) scale(1.04); }
  .bestseller-card--featured:hover { transform: translateY(-2.5rem) scale(1.04); }
}
.bestseller-card--featured .bestseller-card__rank { background: var(--gold); color: #fff; }
.bestseller-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background: var(--gold);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-bottom-left-radius: var(--radius-sm);
}

/* =========================================================
   SHOPS
   ========================================================= */
.shops__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .shops__grid { grid-template-columns: repeat(2, 1fr); } }

.shop-card {
  background: #fff;
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
}
.shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.shop-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-dark);
}
.shop-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.shop-card:hover .shop-card__img img { transform: scale(1.05); }
.shop-card__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.shop-card__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--brown);
  margin-bottom: .75rem;
}
.shop-card__desc { font-size: .9375rem; color: var(--brown-light); line-height: 1.6; margin-bottom: 1.5rem; }
.shop-card__details { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.shop-card__detail { display: flex; gap: .75rem; align-items: flex-start; font-size: .9375rem; }
.shop-card__icon { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.shop-card__hours-list { display: flex; flex-direction: column; gap: 2px; }
.shop-card__hours-row { display: flex; gap: .75rem; }
.shop-card__hours-day { width: 5rem; color: var(--brown-light); font-weight: 500; }
.shop-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--taupe-light);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
}
.shop-card__link:hover { color: var(--gold-dark); }

.maps-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 700px) {
  .maps-grid { grid-template-columns: 1fr; }
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--taupe-light);
  box-shadow: var(--shadow-md);
}
.map-label {
  padding: .65rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--brown);
  background: var(--cream-dark);
  border-bottom: 1px solid var(--taupe-light);
}
.map-wrap iframe { display: block; width: 100%; height: 340px; border: 0; }
.map-credit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: .75rem 1.25rem;
  font-size: .75rem;
  color: var(--brown-light);
  border-top: 1px solid var(--taupe-light);
  flex-wrap: wrap;
  gap: .5rem;
}
.map-credit a { color: var(--gold); font-weight: 600; }
.map-credit a:hover { color: var(--gold-dark); }

/* =========================================================
   ORDER CTA
   ========================================================= */
.order-cta { position: relative; overflow: hidden; }
.order-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(232,200,143,.08) 0, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(198,141,51,.08) 0, transparent 45%);
  pointer-events: none;
}
.order-cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .order-cta__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.order-cta .eyebrow { color: var(--gold-light); margin-bottom: .75rem; font-size: .8rem; font-weight: 500; text-transform: uppercase; letter-spacing: .18em; }
.order-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
}
.order-cta h2 em { color: var(--gold-light); }
.order-cta .divider { width: 4rem; height: 2px; background: var(--gold-light); margin: 1.5rem 0; }
.order-cta p { font-size: 1.0625rem; line-height: 1.8; color: rgba(255,255,255,.9); max-width: 560px; }
.order-cta strong { color: #fff; }
.order-cta__buttons { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }

/* Mini carousel */
.mini-carousel { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.2); }
.mini-carousel__track { overflow: hidden; }
.mini-carousel__slides { display: flex; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.mini-carousel__slide { flex: 0 0 100%; aspect-ratio: 4/3; }
.mini-carousel__slide img { width: 100%; height: 100%; object-fit: cover; }
.mini-carousel__nav { display: flex; justify-content: flex-end; gap: .5rem; padding: .75rem; }
.mini-carousel__btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.mini-carousel__btn:hover { background: #fff; color: var(--brown); }

/* =========================================================
   DELIVERY
   ========================================================= */
.delivery__card {
  border: 1px solid var(--taupe-light);
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.delivery__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
.delivery__icon {
  width: 4rem;
  height: 4rem;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.delivery__text h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brown);
}
.delivery__text p { margin-top: .5rem; font-size: .9375rem; color: var(--brown-light); line-height: 1.7; }
.delivery__text strong { color: var(--brown); font-weight: 600; }

.delivery__modes {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.delivery__mode {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.delivery__mode-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivery__mode h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: .25rem;
}
.delivery__mode p { font-size: .9rem; color: var(--brown-light); line-height: 1.6; }
.delivery__cta { margin-top: 2rem; }

@media (max-width: 640px) {
  .delivery__head { grid-template-columns: 1fr; text-align: center; }
  .delivery__icon { margin: 0 auto; }
  .delivery__modes { grid-template-columns: 1fr; }
  .delivery__cta { display: flex; justify-content: center; }
}

/* =========================================================
   NA POBOČKÁCH NAJDETE VÍC
   ========================================================= */
.amenities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .amenities__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .amenities__grid { grid-template-columns: repeat(4, 1fr); } }

.amenity {
  background: var(--cream);
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s cubic-bezier(.22,1,.36,1);
}
.amenity:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.amenity__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #fff;
  color: var(--gold);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}
.amenity h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: .5rem;
}
.amenity p { font-size: .9rem; color: var(--brown-light); line-height: 1.6; }

/* Instagram pozvánka */
.insta-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
  box-shadow: var(--shadow-md);
}
.insta-cta__text { display: flex; align-items: center; gap: 1.25rem; }
.insta-cta__icon {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.insta-cta h3 { font-family: var(--font-display); font-size: 1.4rem; }
.insta-cta p { font-size: .95rem; opacity: .92; margin-top: .25rem; max-width: 46ch; }
.insta-cta__links { display: flex; flex-wrap: wrap; gap: .75rem; }
.insta-cta__btn {
  background: #fff;
  color: var(--gold-dark);
  padding: .75rem 1.5rem;
  font-weight: 600;
}
.insta-cta__btn:hover { background: var(--cream); color: var(--gold-dark); }

@media (max-width: 600px) {
  .insta-cta { flex-direction: column; align-items: flex-start; }
  .insta-cta__text { align-items: flex-start; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
}
.contact__list { display: flex; flex-direction: column; gap: 1rem; }
.contact__row { display: flex; gap: .75rem; align-items: flex-start; font-size: 1rem; }
.contact__icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact__row a { color: var(--brown); transition: color var(--transition); }
.contact__row a:hover { color: var(--gold); }

.contact__tip {
  margin-top: 2.5rem;
  background: #fff;
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.contact__tip h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: .5rem;
}
.contact__tip p { font-size: .9375rem; color: var(--brown-light); line-height: 1.6; }

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) { .contact-form { padding: 2.5rem; } }
.form__grid { display: grid; gap: 1.25rem; }
@media (min-width: 540px) { .form__grid { grid-template-columns: 1fr 1fr; } }
.form__field { display: flex; flex-direction: column; gap: .375rem; }
.form__field.full { grid-column: 1 / -1; }
.form__label { font-size: .875rem; font-weight: 500; color: var(--brown); }
.form__input,
.form__select,
.form__textarea {
  display: block;
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--taupe-light);
  border-radius: 6px;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 16px; /* 16px zabrání automatickému přiblížení na iOS při fokusu */
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,141,51,.2);
}
.form__input.error, .form__textarea.error { border-color: #e05c5c; }
.form__error { font-size: .8125rem; color: #c0392b; }
.form__textarea { resize: vertical; min-height: 120px; }
.form__checkbox { display: flex; gap: .75rem; align-items: flex-start; font-size: .875rem; color: var(--brown-light); line-height: 1.5; }
.form__checkbox input { width: 1rem; height: 1rem; margin-top: .15rem; flex-shrink: 0; accent-color: var(--gold); cursor: pointer; }
.form__footer { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.form__status {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  padding: .5rem .75rem;
  border-radius: 6px;
}
.form__status--success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.form__status--error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--brown); color: rgba(248,243,233,.85); }
.footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(3, 1fr); } }
.footer h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer__contact-list { display: flex; flex-direction: column; gap: .75rem; font-size: .9rem; }
.footer__contact-row { display: flex; gap: .5rem; align-items: flex-start; }
.footer__contact-row svg { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.footer a:hover { color: #fff; }
.footer__hours { display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; }
.footer__hours-group { margin-bottom: .5rem; }
.footer__hours-group strong { display: block; color: #fff; font-size: .875rem; margin-bottom: .25rem; }
.footer__nav { display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; }
.footer__nav a { transition: color var(--transition); }
.footer__nav a:hover { color: #fff; }
.footer__socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer__social {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(248,243,233,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  transition: background var(--transition), color var(--transition);
}
.footer__social:hover { background: var(--cream); color: var(--brown); }

.footer__bottom {
  border-top: 1px solid rgba(248,243,233,.15);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(248,243,233,.6);
}
.footer__bottom a:hover { color: #fff; }

.footer__amreh {
  display: flex;
  align-items: center;
  gap: .5rem;
  opacity: .6;
  transition: opacity var(--transition);
}
.footer__amreh:hover { opacity: 1; }
.footer__amreh span { font-size: .8rem; color: rgba(248,243,233,.6); }
.footer__amreh img { height: 20px; width: auto; }

/* =========================================================
   RESPONZIVNÍ DOLADĚNÍ (mobil / tablet)
   ========================================================= */

/* Dotyková zařízení: zruší „zaseknutý" nadzvednutý hover po ťuknutí */
@media (hover: none) {
  .btn:hover,
  .product-card:hover,
  .shop-card:hover,
  .amenity:hover,
  .bestseller-card:hover { transform: none; }
}
@media (hover: none) and (min-width: 860px) {
  /* zachová podstavec u 1. místa i na dotykovém tabletu */
  .bestseller-card--featured:hover { transform: translateY(-1.75rem) scale(1.04); }
}

/* Telefon na šířku (nízká výška): hero nemá být zbytečně vysoké */
@media (orientation: landscape) and (max-height: 600px) {
  .hero { min-height: 460px; }
  .hero__dots { bottom: 3.5rem; }
}

/* Velmi úzké telefony: menší vnitřní odsazení karet a formuláře */
@media (max-width: 360px) {
  .container { padding: 0 1rem; }
  .contact-form { padding: 1.5rem; }
  .shop-card__body { padding: 1.5rem; }
  .insta-cta { padding: 1.5rem; }
}
