@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500&display=swap');

body{
  margin:0;
  min-height:100vh;
  position:relative;
  isolation:isolate; /* aby fungoval mix-blend-mode správně */
  background: linear-gradient(180deg,#2f0f0f 0%, #000000 50%);
  color:#fefae0;
  font-family:'Bebas Neue', sans-serif;
}

/* textura NAD vším */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:url("../images/coal-texture.webp") repeat;
  background-size:450px;
  opacity:0.18;          /* začni 0.35 */
  mix-blend-mode:overlay; /* zvýrazní světlé části */
  pointer-events:none;
  z-index:1;          /* <- jistota, že je nahoře */
}

header {
  margin-top: 80px;   /* odpovídá výšce navigace */
  text-align: center;
  padding: 40px 20px;
}

header img {
  width: 100%;
  max-width: 720px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

header h1 {
  margin-top: 25px;
  font-size: 3.5em;
  letter-spacing: 2px;
  font-weight: normal;
  color: #fefae0;
}

header p {
  font-size: 1.2em;
  max-width: 600px;
  margin: 10px auto 0;
  color: #fefae0;
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
/* Navigace */
.navbar{
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #2f0f0f;
  box-sizing: border-box;
  overflow: visible;
}

.nav-left{
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 3;
}

.logo img {
  height: 210px;
  width: auto;
  transform: translateY(45px); 
  
}



.nav-links{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: max-content;
  z-index: 1;
}

.nav-links a {
  color: #fefae0;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  transition: color 0.3s;
  letter-spacing: 1.5px;
}

.nav-links li:has(a[href="#merch"]){
display:none;
}

.nav-links li:has(a[href="#kontakt"]){
display:none;
}

.nav-links a:hover {
  color: #f4a261;
}

.nav-icons{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-right: 0;
  position: relative;
  z-index: 4;
}

.nav-links a.active {
  color: #f4a261;
  border-bottom: 2px solid #f4a261;
}

.cart-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  transition: filter 0.4s ease-in-out, opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  filter: brightness(0) saturate(100%) invert(94%) sepia(9%) saturate(292%) hue-rotate(342deg) brightness(102%) contrast(90%);
}

.cart-icon img:hover {
  filter: brightness(0) saturate(100%) invert(80%) sepia(35%) saturate(800%) hue-rotate(330deg) brightness(101%) contrast(100%);
  transform: scale(1.1);
}

.hamburger {
  display: none;
  font-size: 1.8em;
  color: #fefae0;
  cursor: pointer;
  background: none;            /* NEW: aby byl čistý button styl */
  border: none;
}

.hero {
  position: relative;
  margin-top: 80px; /* výška navbaru */
  height: 52vh;
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;

}

  
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/ribs_hero_image.webp');
  background-size: cover;
  background-position: 50% 62%;      /* tvoje nová pozice – vidět víc spodku */
  background-repeat: no-repeat;

  /* fade jen na pozadí, ne na text */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%);
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: auto;
  display: cover;
}

.hero-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fefae0;
  text-align: center;
  padding: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5em;
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

.hero-text p {
  font-size: 1.2em;
  color: #fefae0;
  font-family: Arial, sans-serif;
  line-height: 1.4;
}

.products {
  padding: 50px 20px;
  text-align: center;
  margin-bottom: 80px;
}

.products h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  margin-top: 30px;
  margin: 0 auto 30px;
  color: #fefae0;
  letter-spacing: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* místo auto-fit */
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.product-card {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 300px; 
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.55);
}

.product-card img {
  width: 100%;
  height: 200px;            /* pevná výška – jednotná pro všechny */
  object-fit: contain;        /* ořízne přebytek, ale zachová poměr */
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 1em;
  color: #c5c2b8; /* FIX: lepší kontrast než #848178 na tmavém */
  font-family: Arial, sans-serif;
  line-height: 1.4;
  transition: transform .35s ease, filter .35s ease;
}

/* HOVER jen na hlavní fotku produktu */
.product-card .product-photo{
  transition: transform .35s ease, filter .35s ease;
  transform-origin: center;
}

.product-card:hover .product-photo{
  transform: translateY(-6px) scale(1.04);
  filter: drop-shadow(0 20px 25px rgba(0,0,0,0.45));
}

/* pouze fotka produktu (dóza) */
.product-card img.product-photo{
  width: 100%;
  height: 260px;           /* <- zvětší dózy (zkus 240–300) */
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 15px;

  transition: transform .35s ease, filter .35s ease;
  transform-origin: center;
  will-change: transform;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.45));
}

/* hover jen na fotku */
.product-card:hover img.product-photo{
  transform: translateY(-8px) scale(1.12);  /* <- výraznější než 1.04 */
  filter: drop-shadow(0 22px 30px rgba(0,0,0,0.55))
          drop-shadow(0 0 10px rgba(224,193,108,0.15));
}

.product-card h3 {
  font-size: 1.5em;
  margin: 10px 0;
  color: #fefae0;
  letter-spacing: 1px;
  margin-bottom:1px;
}

.product-card p {
  font-size: 1em;
  color: #848178;
  font-family: Arial, sans-serif;
  line-height: 1.4;
  min-height: 70px;
  
}

.product-card .product-card-link {
  display: flex;            /* nahradí tvé display:block */
  flex-direction: column;
  flex: 1 1 auto;
}

/* ===== PRODUCT ICONS (pack icon + animals) ===== */

.product-icons{
  margin: 12px 0 6px;
  display:flex;
  justify-content:center;
  margin-top:2px;
}

/* řádek uprostřed karty */
.product-icons-row{
  width:100%;
  max-width:230px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:18px;
}

/* vlevo ikona balení */
.product-size{
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

/* přebije globální .product-card img { height: 200px } */
.product-size img{
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0;
  border-radius: 0;
  opacity: .95;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
}

/* vpravo zvířata */
.product-animals{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:6px;   /* jemný odstup od jar ikon */
}

/* přebije globální img pravidlo */
.product-animals img{
  width: 26px;
  height: 26px;
  object-fit: contain;
  margin: 0;
  border-radius: 0;

  filter: brightness(0) saturate(100%) invert(94%) sepia(9%) saturate(292%) hue-rotate(342deg) brightness(102%) contrast(90%);
  opacity: .9;

  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.012);

  transition: transform .16s ease, opacity .16s ease, background .16s ease, border-color .16s ease;
}

/* jemný hover */
.product-card:hover .product-animals img{
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(244,162,97,0.05);
  border-color: rgba(244,162,97,0.22);
}
/* 2) Text už neodhazuje tlačítko dolů extra mezerou */
.product-card .product-card-link p {
  margin-bottom: 0;
}

/* 3) Tlačítko vždycky na dně karty */
.product-card .border-button {
  margin-top: auto;
  align-self: center;       /* dej 'stretch', když ho chceš přes celou šířku */
  /* width: 100%;           ← odkomentuj pro full width */
}

.product-detail {
  padding: 80px 40px;
  display: flex;
  justify-content: center;
}

.product-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 980px;
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.product-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.product-left .detail-heat{
  justify-content:center;
  margin-bottom:12px;
}

.product-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 0;
}

.product-image img {
  width: auto;
  max-width: 100%;
  max-height: 400px;
  height: auto;
  display: block;
  border-radius: 8px;
  position: relative;
  left: -9px;
}

.product-info {
  width: 100%;
  max-width: 720px;
  color: #c5c2b8;
  font-family: Arial, sans-serif;
}

.product-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4em;
  margin: 0 0 10px;
  letter-spacing: 2px;
  color: #fefae0;
}



.product-info p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 1.1em;
}

.product-info .price {
  font-weight: bold;
  color: #f4a261;
  margin: 20px 0 10px;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card a {
  text-decoration: none;
  color: inherit;
}

.detail-heat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top:10px;
  margin-bottom:6px;
  position: relative;
  width: max-content;
}

.detail-heat::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 132px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.25),
    rgba(255,255,255,0.05)
  );
}

.detail-heat .lamp {
  width: 40px;
  height: 40px;
  margin: 0 -8px 0 0;
  color: #8a847c;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}

.detail-heat .lamp:last-child {
  margin-right: 0;
}

.detail-heat .lamp svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
  display: block;
}

.detail-heat .lamp.active {
  color: #b32020;
  opacity: 1;
  filter: drop-shadow(0 2px 6px rgba(200,40,40,0.35));
}

.product-sizes {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 16px;
}

.product-sizes img {
  width: 110px;
  height: auto;
  display: block;
}

.size-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: #f7e8c4;
}

.size-options label {
  cursor: pointer;
}

.size-options input[type="radio"] {
  margin-right: 6px;
}

.detail-animals.under-image {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 3px;
}

.detail-animals.under-image img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  filter: brightness(0) saturate(100%) invert(94%) sepia(9%) saturate(292%) hue-rotate(342deg) brightness(102%) contrast(90%);
  opacity: 0.95;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.detail-animals.under-image img:hover {
  transform: scale(1.08);
  border-color: rgba(224,193,108,0.4);
  background: rgba(224,193,108,0.06);
  
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 700px;
  }

  .product-info {
    max-width: 100%;
  }

  .detail-animals.under-image {
    margin-top: -32px;
  }
}

@media (max-width: 600px) {
  .product-detail {
    padding: 80px 16px 40px;
  }

  .product-layout {
    padding: 24px;
  }

  .product-image img {
    max-height: 320px;
  }

  .product-sizes {
    align-items: flex-start;
  }

  .detail-animals.under-image {
    gap: 14px;
    margin-top: -24px;
  }

  .detail-animals.under-image img {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
}

.add-to-cart {
  padding: 12px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1em;
  color: #fefae0;
  background-color: transparent;
  border: 2px solid #e76f51;   /* tmavší oranžovo-červená */
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.add-to-cart:hover {
  background-color: #e76f51;
  color: #1a1a1a;
}

.border-button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  color: #4a2626;
  background-color: #f4a261;
  border: 2px solid #e76f51; /* správně zapsaná barva */
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 1px;
  z-index: 1;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.2s ease; 
}

.border-button:hover {
  background-color: #e76f51;
  color: #4a2626;
  transform: translateY(-1px);
}

.border-button.small {
  padding: 2px 10px;
  font-size: 1em;
  margin: 0 7px;
}

.qty-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-number {
  min-width: 20px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2em;
  color: #fff;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

section[id],
[id="o-nas"],
[id="kontakt"] {
  scroll-margin-top: 50px;
}


.cart-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2em;
  text-align: center;
  color: #f4a261;
  margin-top: 40px;
}

.cart-table {
  max-width: 980px;
  margin: 30px auto;
  background: #2d0e0e;
  color: #f5f5dc;
  border-radius: 12px;
  padding: 24px;
  box-sizing: border-box;
  overflow: hidden;
}

.cart-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #444;
}

.cart-header {
  font-weight: bold;
  background-color: #3d1f1f;
}

.cart-item-img {
  max-width: 80px;
  border-radius: 8px;
}

.cart-summary {
  max-width: 900px;
  margin: 20px auto;
  display: flex;
  justify-content: space-between;
  font-size: 1.3em;
  color: #fff;
  border-top: 2px solid #f4a261;
  padding-top: 20px;
}

.checkout-button {
  display: block;
  margin: 30px auto;
  padding: 12px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2em;
  background: transparent;
  border: 2px solid #f4a261;
  color: #f4a261;
  cursor: pointer;
  transition: background 0.3s;
}

.checkout-button:hover {
  background: #f4a261;
  color: #2d0e0e;
}

.border-button.danger {
  border-color: #e63946;
  color: #e63946;
}

.border-button.danger:hover {
  background-color: #e63946;
  color: #fff;
}

.cart-icon {
  position: relative;
  display: inline-block;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #f4a261;
  color: #2d0e0e;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9em;
  padding: 2px 6px;
  border-radius: 50%;
  border: 2px solid #2d0e0e;
}





#order-form label {
  display: block;
  margin-bottom: 15px;
  margin: 0 0 6px;
  font-size: 1em;
}

#order-form input,
#order-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: sans-serif;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin: 6px 0 18px;
  box-sizing: border-box; 
}

#order-form textarea {
  resize: vertical;
  min-height: 80px;
}

.language-dropdown {
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding-top: 0;
  z-index: 50;
}

.lang-toggle{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: #fefae0;
  background:none;
  border: none;
  cursor: pointer;
  transition: color .25s ease; 
}
.lang-toggle::after{
  content: '▾';                 /* malá šipka dolů */
  font-size: 14px;
  line-height: 1;
  transform: translateY(-1px);
  opacity: 0.9;
  transform: translateY(-1px);
  transition: transform .18s ease, opacity .18s ease;
}
.lang-toggle[aria-expanded="true"]::after{
  transform: rotate(180deg) translateY(1px); /* šipka nahoru při otevření */
}
.lang-toggle:hover{ color:#f4a261; }  /* jemná změna barvy při hoveru */
.language-dropdown.open .lang-toggle,
.language-dropdown:focus-within .lang-toggle,
.language-dropdown:hover .lang-toggle{ color:#f4a261; } /* také když je otevřeno */



.language-menu{
  position:absolute;
  top:100%;
  right:0;                /* drž se u tlačítka, ale nelez na košík */
  left:auto;
  transform: translateY(-4px) scale(.98);

  background: linear-gradient(180deg, rgba(22,22,22,.92), rgba(18,18,18,.92));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.07);  /* vlasová linka */
  border-radius: 6px;                       /* menší radius */
  min-width: 56px;                          /* akorát pro EN/PL */
  padding: 2px 0;
  z-index: 1000;

  /* jemnější stín */
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s;
}

/* malý „špičák“ */
.language-menu::before{
  content:"";
  position:absolute;
  top:-5px; right:12px;
  border:5px solid transparent;
  border-bottom-color: rgba(22,22,22,.92);
  filter: drop-shadow(0 -1px 0 rgba(255,255,255,.05));
}

/* otevření */
.language-dropdown.open .language-menu,
.language-dropdown:hover .language-menu,
.language-dropdown:focus-within .language-menu{
  opacity:1; visibility:visible; pointer-events:auto;
  transform: translateY(0) scale(1);
}

/* položky: čistý text, centrované, jemná separace */
.language-menu button{
  display:block; width:100%;
  background: transparent;        /* žádné bloky */
  border:0;
  color:#fefae0;
  font-family:'Bebas Neue',sans-serif;
  font-size:14px;                 /* menší text */
  line-height: 1;                 /* kompaktní výška */
  padding:6px 8px;                /* menší padding */
  text-align:center;
  cursor:pointer;
  transition: background-color .16s ease, color .16s ease;
}
.language-menu button + button{
  border-top: 1px solid rgba(255,255,255,.06);  /* tenká vlasová separace */
}
.language-menu button:hover,
.language-menu button:focus{
  background: rgba(244,162,97,.10);  /* velmi jemný závoj */
  color:#f4a261;
  outline:none;
}

/* jemné dotažení jazyka ke košíku */
.language-dropdown{ margin-right: 0; margin-left: 0; }

/* Volitelné: když je rozbaleno, šipka se otočí */
.lang-toggle[aria-expanded="true"]::after{
  transform: rotate(180deg) translateY(1px);
  opacity: 1;
}

/* TRUST ICONS – čistší styl bez koleček */
.trust-icons{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:70px;
  flex-wrap:wrap;
  width:min(1100px, 92%);
  margin:40px auto 30px;
  position: relative;
  padding-bottom: 28px;
}

/* sjednocený divider pod TRUST sekcí (stejný styl jako pod nadpisy) */
.trust-icons::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:0;
  width: min(1200px, 70%);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(244,162,97,0.45),
    transparent
  );
  opacity: 0.65;
}

.trust-item{
  text-align:center;
  max-width:260px;
  transition: transform 0.25s ease;
}

.trust-item:hover{
  transform: translateY(-2px);
}

.trust-item img{
  width:72px;
  height:72px;
  display:block;
  margin:0 auto 18px;
  padding:0;
  background:none;
  border:none;
  border-radius:0;
  box-shadow:none;
  object-fit:contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(35%) saturate(800%) hue-rotate(330deg) brightness(101%) contrast(100%);
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
  opacity: 0.98;
}

.trust-item:hover img{
  transform: translateY(-3px) scale(1.04);
  opacity: 1;
}

.trust-item h3{
  margin: 0 0 10px;
  font-size: 1.55em;
  letter-spacing: 1px;
  color:#fefae0;
}

.trust-item p{
  margin:0;
  font-size: 1.05em;
  line-height: 1.35;
  color: rgba(254,250,224,0.85);
  font-family: Arial, sans-serif;
  letter-spacing: 0.2px;
}

/* ===== REVEAL (scroll) ===== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 650ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* jemné zpoždění pro 3 ikony */
.reveal.delay-1 { transition-delay: 120ms; }
.reveal.delay-2 { transition-delay: 240ms; }
.reveal.delay-3 { transition-delay: 360ms; }

/* INGREDIENT CHIPS */

.ingredient-chips{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
margin:20px auto 40px;
max-width:900px;
}

.chip{
padding:9px 16px;
font-family:'Inter', sans-serif;
letter-spacing:1px;
font-size:1.00em;
text-transform: none;

color:#fefae0;

background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.18);
border-radius:20px;

transition:all 0.25s ease;
}

.chip:hover{
background:rgba(244,162,97,0.18);
border-color:#f4a261;
transform:translateY(-2px);
box-shadow:0 6px 18px rgba(0,0,0,0.35);
}

.ingredient-title{
text-align:center;
font-size:2.1em;
margin-top:60px;
margin-bottom:18px;
letter-spacing:1px;
}

#o-nas p{
  font-family: 'Inter', sans-serif;
  font-size: 1.15em;
  line-height: 1.7;
  letter-spacing: 0.3px;
  text-transform: none;
  color: #fefae0;
  max-width: 1100px;
  margin: 0 auto 22px;
  text-align: center;
}



/* respektuj nastavení uživatele */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* mobil – ať to dýchá */
@media (max-width: 768px){
  .trust-icons{ gap:26px; margin-top:20px; }
  .trust-item{ max-width:320px; }
}



.hidden-product {
  display: none;
}
/* --- GRID BREAKPOINTS --- */
@media (max-width: 1000px){
  .product-grid{ grid-template-columns: repeat(2,1fr); gap:24px; }
}
@media (max-width: 1024px){
  .hero{
    min-height: 0;
    height: clamp(380px, 52vh, 500px);
  }

  .hero::before{
    background-position: 50% 60%;
  }

  .hero-text{
    top: 30%;
    width: min(760px, 88%);
    padding: 0 20px;
  }

  .hero-text h1{
    font-size: clamp(40px, 6vw, 58px);
  }

  .hero-text p{
    font-size: clamp(16px, 2.1vw, 20px);
    max-width: 720px;
    margin: 12px auto 0;
  }
}

@media (max-width: 600px){
  .product-grid{ grid-template-columns: 1fr; gap:18px; }
}



/* ===== NAVBAR ALIGNMENT ===== */
@media (min-width: 769px){
  .nav-left{
    flex: 0 0 220px;
  }

  .nav-links{
    padding: 0;
  }

  .nav-icons{
    flex: 0 0 220px;
    gap: 16px;
  }

  .language-dropdown{
    margin: 0;
  }

  .lang-toggle{
    font-size: 18px;
    padding: 0;
    white-space: nowrap;
    gap: 4px;
  }

  .cart-icon{
    margin-left: 0;
  }
}

@media (min-width: 769px) and (max-width: 1100px){
  .nav-left{
    flex: 0 0 190px;
  }

  .nav-icons{
    flex: 0 0 190px;
    gap: 12px;
  }

  .nav-links{
    gap: 24px;
    padding: 0;
  }

  .logo img{
    height: 180px;
  }

  .lang-toggle{
    font-size: 17px;
  }

  .cart-icon img{
    width: 44px;
    height: 44px;
  }
}

/* --- MOBILE (<=768px) --- */
/* očekává se, že hamburger JS přidává/odebírá .show na .nav-links */
@media (max-width: 768px){

  /* Navbar: logo vlevo · CZ uprostřed · [hamburger + košík] vpravo */
  .navbar{
    justify-content: flex-start;
    height: 60px;
    padding: 8px 12px;
    gap: 10px;
  }

  .logo img{
    height: 60px;
    transform: none;
  }

  .nav-left{
    order: 1;
    flex: 0 0 auto;
  }

  .language-dropdown{
    order: 2;
    margin: 0;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
  }

  .nav-icons{
    order: 3;
    margin-left: auto;
    gap: 6px;
    padding-right: 0;
    flex: 0 0 auto;
  }

  .hamburger{
    display: block;
    order: 2;
    font-size: 26px;
    padding: 4px 6px;
  }

  .cart-icon{ order: 3; }

  .cart-icon img{
    width: 32px;
    height: 32px;
  }

  .cart-count{
    top: -6px;
    right: -8px;
    font-size: .8em;
  }

  /* Desktop menu schovat a otevřené menu přepsat úplně od nuly */
  .nav-links{
    display: none !important;
    position: fixed;
    left: auto;
    right: auto;
    top: auto;
    min-width: 0;
    width: auto;
    max-width: none;
    transform: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .nav-links.show{
    display: flex !important;
    position: fixed;
    top: 72px;
    left: 50%;
    right: auto;
    width: calc(100vw - 24px);
    max-width: 340px;
    min-width: 0;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
    padding: 18px 16px;
    list-style: none;
    box-sizing: border-box;
    background: #0f0f0f;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,.5);
    z-index: 1002;
  }

  .nav-links.show li{
    width: 100%;
    text-align: center;
  }

  .nav-links.show a{
    display: block;
    width: 100%;
    padding: 6px 0;
    white-space: normal;
  }

  /* Jazykové menu zarovnat k CZ */
  .language-menu{
    right: 0;
    left: auto;
    min-width: 56px;
    transform: translateY(-4px) scale(.98);
  }

  .language-menu::before{
    right: auto;
  }

  /* Hero: kratší a kompaktnější na mobilu */
  .hero{
    margin-top: 60px;
    max-height: 360px;
    height: clamp(260px, 34vh, 360px);
    padding: 0 16px;
  }

  .hero::before{
    background-position: 52% 66%;
    background-size: 165%;
  }

  .hero-text{
    top: 31%;
    width: min(92%, 520px);
    padding: 0 8px;
  }

  .hero-text h1{
    font-size: clamp(28px, 9vw, 42px);
    letter-spacing: 1px;
    line-height: 0.95;
  }

  .hero-text p{
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.42;
    max-width: 100%;
    margin: 10px auto 0;
  }

  /* Karty produktů – příjemná šířka */
  .product-card{
    max-width: 320px;
    margin: 0 auto;
  }
}

/* --- EXTRA SMALL (<=400px) --- */
@media (max-width: 480px){
  .hero{
    min-height: 50vh;
    height: clamp(340px, 50vh, 440px);
  }

  .hero::before{
    background-size: 185%;
    background-position: 54% 67%;
  }

  .hero-text{
    top: 30%;
    width: 94%;
  }

  .hero-text h1{
    font-size: clamp(26px, 8.8vw, 36px);
  }

  .hero-text p{
    font-size: 14px;
    line-height: 1.38;
  }
}

@media (max-width: 400px){
  .logo img{ height: 38px; }
}




  /* souhrn pod košíkem – kompaktnější */
  .order-summary{ padding: 18px; border-radius: 10px; }
  .order-summary h2{ margin-bottom: 14px; }


/* 3) Desktop drobnosti: ať řádky nejsou přerostlé */
@media (min-width: 769px){
  .cart-row{ padding: 16px 20px; }
  .cart-item-img{ max-width: 90px; }
}
/* Košík – kompaktnější ovládání množství (mobil) */
@media (max-width: 768px){
  /* menší mezery kolem ovládání */
  .qty-controls{ gap: 6px; }

  /* – / + */
  .qty-controls .border-button,
  .cart-row .border-button.small{
    padding: 4px 8px;
    font-size: 16px;
    line-height: 1;
    min-width: 32px;
    border-width: 1px;
    border-radius: 6px;
  }

  /* číslo mezi tlačítky */
  .qty-number{
    min-width: 24px;
    font-size: 16px;
  }

  /* křížek (odstranit položku) */
  .cart-row .border-button.danger{
    padding: 4px 8px;
    font-size: 14px;
    line-height: 1;
    border-width: 1px;
    border-radius: 6px;
  }
}



.product-card .heat-level img.lamp{
  width:18px;
  height:18px;
  min-width:18px;
  max-width:18px;
  object-fit:contain;
  margin:0;
  border-radius:0;
  display:block;
  flex:0 0 18px;
  opacity:0.35;
  filter:grayscale(1);
}

.product-card .heat-level img.lamp.active{
  opacity:1;
  filter:none;
}

.heat-level{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 1px;
  margin:4px 0 8px;
  
}

.heat-level::before{
  content:"";
  position:absolute;
  bottom:4px;
  left:50%;
  transform:translateX(-50%);
  width:80%;
  height:2px;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(200,190,160,0.35),
    transparent
  );
}

.lamp{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  color:#848178;   /* neaktivní šedá */
  opacity:0.65;
  margin: 0 -5px;
}

.lamp svg{
  width:36px;
  height:36px;
  display:block;
  fill:currentColor;
}

.lamp.active{
                             /* rudá */
  opacity:1;
  color:#b32020;
  filter:drop-shadow(0 0 5px rgba(200,40,40,0.45));
  transform:scale(1.05);
}

.detail-heat{
  display:flex;
  gap:2px;
  margin:10px 0 18px;
  position:relative;
  justify-content:flex-start;
}

.detail-heat::before{
  content:"";
  position:absolute;
  bottom:5px;
  left:0;
  width:150px;
  height:2px;

  background:linear-gradient(
    90deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.25),
    rgba(255,255,255,0.05)
  );
}

.detail-heat .lamp{
  width:40px;
  height:40px;
  margin:0 -6px;
  color:#8a847c;
  opacity:0.7;
}

.detail-heat .lamp svg{
  width:40px;
  height:40px;
  fill:currentColor;
}

.detail-heat .lamp.active{
  color:#b32020;
  opacity:1;
  filter:drop-shadow(0 2px 6px rgba(200,40,40,0.35));
}

.detail-animals{
  display:flex;
  gap:20px;
  margin-top:12px;
  justify-content:flex-start;
}

.detail-animals img{
  width:50px;
  height:50px;

  padding:8px;
  border-radius:50%;

  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);

  transition:all .25s ease;
}

.detail-animals img:hover{
  transform:scale(1.08);
  border-color:rgba(224,193,108,0.4);
}


/* ===== FOOTER ===== */
.footer{
  margin-top: 70px;
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.55));
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 46px 0 18px;
}

.footer-inner{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.footer-col h4{
  margin: 0 0 12px;
  font-size: 1.6em;
  letter-spacing: 1px;
  color: #fefae0;
}

.footer-brand .footer-logo img{
  width: 120px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.footer-tagline{
  margin: 12px 0 14px;
  max-width: 360px;
  color: rgba(254,250,224,0.82);
  font-family: Arial, sans-serif;
  line-height: 1.45;
}

.footer-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.footer-badge{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fefae0;
  font-size: 0.95em;
  letter-spacing: 1px;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a{
  color: rgba(254,250,224,0.82);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.98em;
  transition: color .2s ease;
}

.footer-links a:hover{
  color: #f4a261;
}

.footer-contact p{
  margin: 0 0 10px;
  color: rgba(254,250,224,0.82);
  font-family: Arial, sans-serif;
}

.footer-contact a{
  color: rgba(254,250,224,0.92);
  text-decoration: none;
}

.footer-contact a:hover{
  color: #f4a261;
}

.footer-label{
  display: inline-block;
  min-width: 58px;
  color: rgba(254,250,224,0.70);
}

.footer-social{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fefae0;
  text-decoration: none;
  letter-spacing: 1px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.social-link:hover{
  transform: translateY(-2px);
  background: rgba(244,162,97,0.14);
  border-color: rgba(244,162,97,0.55);
}

.footer-bottom{
  width: min(1200px, 92%);
  margin: 26px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copy{
  margin: 0;
  text-align: center;
  color: rgba(254,250,224,0.72);
  font-family: Arial, sans-serif;
  font-size: 0.95em;
}

/* Footer responsive */
@media (max-width: 1000px){
  .footer-inner{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px){
  .footer{
    padding: 34px 0 14px;
  }
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-brand .footer-logo img{
    width: 110px;
  }
}
/* === FIX: spacing mezi jar ikonou a zvířaty (force override) === */
.product-card .product-icons-row{
  justify-content: flex-start !important;
  gap: 22px !important;
  max-width: 260px !important;
}

.product-card .product-animals{
  margin-left: 10px !important;
}

/* =========================
   SECTION TITLE DIVIDER
   čára pod názvy sekcí
   ========================= */

.products h2{
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 40px;
}

.products h2::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;

  width: 400px;        /* delší čára */
  height: 2px;

  background: linear-gradient(
    to right,
    transparent,
    #fefae0,
    transparent
  );

  opacity: 0.7;
}
/* =========================
   CART PAGE FINAL OVERRIDES
   ========================= */
.cart-heading{
  margin-top: 110px;
  margin-bottom: 18px;
  font-size: 2.6em;
  line-height: 1;
}

.cart-table{
  max-width: 1180px;
  margin: 24px auto;
  padding: 18px 20px;
}

.cart-row{
  grid-template-columns: minmax(280px, 2.2fr) minmax(110px, 0.9fr) minmax(210px, 1.15fr) minmax(120px, 0.9fr) 82px;
  gap: 18px;
  align-items: center;
}

.cart-header{
  padding: 14px 18px;
}

.cart-header > div{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  text-align: center;
  font-size: 1.55em;
  letter-spacing: 0.5px;
  line-height: 1;
  color: #f7f1d8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

.cart-header > div:first-child{
  justify-content: flex-start;
}

.cart-item-row{
  padding: 22px 24px;
}

.cart-product-cell{
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.cart-product-text{
  min-width: 0;
}

.cart-product-name{
  display: block;
  margin: 0;
  font-size: 1.2em;
  line-height: 1.15;
  letter-spacing: .4px;
}

.cart-item-img{
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
  flex: 0 0 78px;
}

.cart-price-cell,
.cart-subtotal-cell,
.cart-remove-cell,
.cart-qty-cell{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.qty-controls{
  gap: 10px;
}

.qty-input{
  width: 72px;
  height: 40px;
  padding: 0 8px;
  border: 1px solid rgba(244,162,97,.45);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  color: #fefae0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35em;
  text-align: center;
  box-sizing: border-box;
  appearance: textfield;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}

.qty-input:focus{
  outline: none;
  border-color: #f4a261;
  box-shadow: 0 0 0 2px rgba(244,162,97,.12);
}

.qty-btn{
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  line-height: 1;
}

.remove-btn{
  min-width: 40px;
  height: 38px;
  padding: 0 10px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-empty-row{
  grid-template-columns: 1fr;
}

.cart-empty-message{
  text-align: center;
  padding: 18px 0;
  color: rgba(254,250,224,.86);
  font-family: Arial, sans-serif;
}

.cart-summary{
  max-width: 1180px;
  padding-top: 24px;
}

@media (max-width: 768px){
  .cart-heading{
    margin-top: 86px;
    font-size: 2.1em;
  }

  .cart-table{
    padding: 14px;
    margin: 18px 12px;
  }

  .cart-header{
    display: none;
  }

  .cart-row,
  .cart-item-row{
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 12px;
  }

  .cart-product-cell{
    justify-content: flex-start;
  }

  .cart-price-cell,
  .cart-subtotal-cell,
  .cart-remove-cell,
  .cart-qty-cell{
    justify-content: flex-start;
    text-align: left;
  }

  .qty-controls{
    justify-content: flex-start;
  }

  .qty-input{
    width: 64px;
    height: 36px;
    font-size: 1.2em;
  }

  .qty-btn,
  

  .cart-summary{
    margin: 20px 12px;
    font-size: 1.15em;
  }
}


/* FOOTER SOCIAL */
.footer{
margin-top:80px;
padding:40px 20px;
text-align:center;
border-top:1px solid rgba(255,255,255,0.08);
}

.footer-social{
display:flex;
justify-content:center;
gap:25px;
margin-bottom:20px;
margin-top:40px;
}

.footer-social svg{
width:24px;
height:24px;
color:#fefae0;
transition:all .25s ease;
cursor:pointer;
}

.footer-social a:hover svg{
color:#f4a261;
transform:scale(1.15);
}

.footer-copy{
font-family:Arial, sans-serif;
font-size:0.9em;
color:#9c948a;
}




/* ========================================
   CHECKOUT FORM – MODERN OVERRIDES
   ======================================== */
.order-summary{
  max-width: 1180px;
  margin: 28px auto 40px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(63,12,12,.96), rgba(40,8,8,.94));
  box-shadow: 0 14px 38px rgba(0,0,0,.28);
}

.order-summary h2{
  margin: 0 0 18px;
  text-align: center;
  font-size: 2.1em;
  letter-spacing: 1px;
}

#order-details{
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
}

.checkout-form{
  display: grid;
  gap: 18px;
}

.checkout-group{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin: 0;
  padding: 22px 18px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
}

.checkout-group legend{
  padding: 0 10px;
  font-size: 1.35em;
  color: #fefae0;
  letter-spacing: .8px;
}

.checkout-group label,
.checkout-form > label{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.checkout-group label span,
.checkout-form > label span{
  font-size: 1em;
  line-height: 1;
  color: #fefae0;
  letter-spacing: .6px;
}

#order-form input,
#order-form select,
#order-form textarea{
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  margin: 0;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid rgba(244,162,97,.30);
  background: rgba(18,18,18,.55);
  color: #fefae0;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

#order-form input::placeholder,
#order-form textarea::placeholder{
  color: rgba(254,250,224,.58);
}

#order-form input:focus,
#order-form select:focus,
#order-form textarea:focus{
  outline: none;
  border-color: #f4a261;
  box-shadow: 0 0 0 3px rgba(244,162,97,.14);
  background: rgba(20,20,20,.75);
}

#order-form select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #f4a261 50%),
    linear-gradient(135deg, #f4a261 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

#order-form textarea{
  min-height: 110px;
  resize: vertical;
}

.checkout-group:last-of-type label:first-of-type{
  grid-column: 1 / -1;
}

.note-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-row{
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
}

.terms-row input[type="checkbox"]{
  width: 22px !important;
  min-width: 22px;
  height: 22px;
  min-height: 22px !important;
  margin: 1px 0 0;
  padding: 0;
  border-radius: 6px;
  accent-color: #f4a261;
  cursor: pointer;
}

.terms-row span{
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5 !important;
  color: rgba(254,250,224,.94);
  letter-spacing: 0;
}

.checkout-button{
  min-width: 260px;
  padding: 14px 28px;
  margin: 8px auto 0;
  border: 1px solid #e76f51;
  border-radius: 12px;
  background: linear-gradient(180deg, #f4a261, #e88a4b);
  color: #3a1b12;
  font-size: 1.28em;
  letter-spacing: 1px;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}

.checkout-button:hover{
  background: linear-gradient(180deg, #f7ad72, #eb955a);
  color: #2d120d;
  transform: translateY(-1px);
}

@media (max-width: 900px){
  .order-summary{
    margin: 22px 12px 32px;
    padding: 20px 16px;
    border-radius: 16px;
  }

  .checkout-group{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 14px 14px;
  }

  .checkout-group:last-of-type label:first-of-type{
    grid-column: auto;
  }

  .checkout-button{
    width: 100%;
    min-width: 0;
  }
}


/* =========================
   CHECKOUT PREMIUM UPGRADE
   ========================= */
.order-summary{
  max-width: 1120px;
  background: linear-gradient(180deg, rgba(45,14,14,0.97), rgba(20,10,10,0.96));
  border: 1px solid rgba(244,162,97,0.14);
  box-shadow: 0 20px 42px rgba(0,0,0,0.28);
}

.checkout-form{
  display: grid;
  gap: 22px;
}

.checkout-group{
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255,255,255,0.025);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.checkout-group legend{
  padding: 0 10px;
  color: #f4a261;
  font-size: 1.45em;
  letter-spacing: 1px;
}

.checkout-field,
.note-field{
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  margin: 0 !important;
}

.checkout-field span,
.note-field span{
  color: #fefae0;
  font-size: 1.02em;
  letter-spacing: .6px;
}

.full-span,
.full-width,
.checkout-choice-group{
  grid-column: 1 / -1;
}

.checkout-choice-group{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.checkout-choice-group .choice-section{
  padding: 6px 8px 8px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  min-height: 100%;
}

.checkout-choice-group .choice-section:first-child{
  box-shadow: inset -1px 0 0 rgba(224,193,108,0.18);
}

.checkout-choice-group .choice-title-row{
  margin-bottom: 1px;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.checkout-choice-group .choice-title{
  font-size: 1.25em;
}

.checkout-choice-group .choice-hint{
  color: rgba(254,250,224,0.68);
}

#order-form select,
#order-form input,
#order-form textarea{
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fefae0;
  font-size: 14px;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease, transform .18s ease;
}

#order-form textarea{
  min-height: 96px;
}

#order-form select:focus,
#order-form input:focus,
#order-form textarea:focus{
  outline: none;
  border-color: rgba(244,162,97,0.9);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(244,162,97,0.10);
}

#order-form input::placeholder,
#order-form textarea::placeholder{
  color: rgba(254,250,224,0.48);
}

.choice-native-select{
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.choice-section{
  display: grid;
  gap: 14px;
}

.choice-title-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.choice-title{
  color: #fefae0;
  font-size: 1.14em;
  letter-spacing: .8px;
}

.choice-hint{
  color: rgba(254,250,224,0.6);
  font-family: Arial, sans-serif;
  font-size: .92em;
}

.choice-cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice-card{
  appearance: none;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  color: #fefae0;
  min-height: 132px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.choice-card:hover{
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(244,162,97,0.34);
  box-shadow: 0 12px 22px rgba(0,0,0,0.18);
}

.choice-card.is-active{
  border-color: #e0c16c;
  background: linear-gradient(180deg, rgba(224,193,108,0.16), rgba(244,162,97,0.08));
  box-shadow: 0 0 0 2px rgba(224,193,108,0.14), 0 16px 28px rgba(0,0,0,0.20);
}

.choice-card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.choice-card-icon{
  font-size: 1.45rem;
}

.choice-card-badge{
  padding: 5px 9px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 11px;
  background: rgba(224,193,108,0.18);
  color: #f7ddb0;
}

.choice-card-title{
  font-size: 1.25em;
  letter-spacing: .6px;
}

.choice-card-text{
  font-family: Arial, sans-serif;
  font-size: .96em;
  line-height: 1.35;
  color: rgba(254,250,224,0.76);
}

.terms-card{
  display: grid !important;
  grid-template-columns: 34px 1fr;
  column-gap: 28px;
  align-items: center;
  padding: 18px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.035);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .18s ease;
  position: relative;
}

.terms-card:hover{
  border-color: rgba(244,162,97,0.30);
  background: rgba(255,255,255,0.05);
}

.terms-card input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.terms-card-box{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  position: relative;
  margin-left: 0;
}

.terms-card input:checked + .terms-card-box{
  border-color: #e0c16c;
  background: rgba(224,193,108,0.16);
}

.terms-card input:checked + .terms-card-box::after{
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7ddb0;
  font-size: 18px;
  font-weight: bold;
}

.terms-card-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 14px;
}

.terms-card-text strong{
  color: #fefae0;
  font-size: 1.05em;
  font-weight: 400;
}

.terms-card-text small{
  color: rgba(254,250,224,0.7);
  font-family: Arial, sans-serif;
  font-size: .92em;
  line-height: 1.35;
}

.checkout-trust-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  color: rgba(254,250,224,0.82);
  font-family: Arial, sans-serif;
  font-size: .96em;
}

.checkout-button-strong{
  width: 100%;
  max-width: none;
  margin: 4px 0 0;
  min-height: 60px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #e0c16c 0%, #f4a261 48%, #d97745 100%);
  color: #2d0e0e;
  font-size: 1.55em;
  letter-spacing: 1.1px;
  font-weight: 400;
  box-shadow: 0 18px 34px rgba(0,0,0,0.24);
}

.checkout-button-strong:hover{
  background: linear-gradient(135deg, #ead18d 0%, #f7b173 48%, #dd8452 100%);
  color: #2d0e0e;
  transform: translateY(-1px);
}

@media (max-width: 860px){
  .checkout-group{
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .choice-title-row{
    flex-direction: column;
    align-items: flex-start;
  }

  .choice-cards{
    grid-template-columns: 1fr;
  }

  .terms-card{
    grid-template-columns: 28px 1fr;
    column-gap: 22px;
    padding: 16px 18px;
  }
}

@media (max-width: 900px){
  .checkout-choice-group{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .checkout-choice-group .choice-section:first-child{
    box-shadow: none;
  }
}





.input-error {
  border: 2px solid #ff4d4d !important;
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.12);
}

.error-message {
  margin-top: 6px;
  font-size: 0.85rem;
  line-height: 1.35;
  color: #ff6b6b;
}

/* ===== MOBILE MENU OVERLAY ===== */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 900;
}

.menu-overlay.active{
  opacity: 1;
  pointer-events: all;
}

/* na PC overlay vůbec nepoužívej */
@media (min-width: 769px){
  .menu-overlay{
    display: none;
  }
}

/* ===== KOSIK RESET + CLEAN LAYOUT ===== */

/* sjednocení šířky hlavních boxů */
.cart-heading,
.cart-table,
.cart-summary,
.order-summary{
  width: min(980px, calc(100% - 32px));
  box-sizing: border-box;
}

.cart-heading{
  margin: 92px auto 18px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  color: #f4a261;
}

.cart-table{
  margin: 0 auto 22px;
  padding: 0 30px 10px;
  background: rgba(45, 14, 14, 0.9);
  border-radius: 18px;
  overflow: hidden;
}

.cart-row{
  display: grid;
  grid-template-columns: minmax(280px, 2.2fr) 120px 190px 120px 70px;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.cart-header{
  padding: 18px 0;
  background: transparent;
  color: #fefae0;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.cart-product-cell{
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.cart-product-text{
  min-width: 0;
}

.cart-product-name{
  display: block;
  font-size: 1.15rem;
  line-height: 1.05;
  color: #fefae0;
  word-break: break-word;
}

.cart-item-img{
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 8px;
  flex: 0 0 76px;
  margin: 0;
}

.cart-price-cell,
.cart-subtotal-cell,
.cart-remove-cell{
  justify-self: start;
  font-size: 1rem;
  color: #fefae0;
}

.cart-price-cell,
.cart-subtotal-cell{
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .5px;
}

.cart-qty-cell{
  justify-self: start;
}

.qty-controls{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.qty-input{
  width: 58px;
  height: 46px;
  padding: 0;
  margin: 0;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #fefae0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(244,162,97,0.28);
  border-radius: 10px;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}

.border-button.small,
.qty-btn,
.remove-btn{
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  border-radius: 10px;
}

.remove-btn{
  min-width: 42px;
  height: 42px;
  font-size: 1.1rem;
}

.cart-summary{
  margin: 0 auto 26px;
  padding: 18px 0 0;
  border-top: 2px solid #f4a261;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: #fff;
}

.order-summary{
  margin: 0 auto 36px;
}

.order-summary h2{
  font-size: clamp(2rem, 3vw, 2.8rem);
  text-align: center;
  margin-bottom: 24px;
}

.cart-empty-row{
  grid-template-columns: 1fr;
}

.cart-empty-message{
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: rgba(254,250,224,0.92);
  padding: 20px 0;
}

/* ===== KOSIK – DOLADENI VELIKOSTI ===== */

.cart-item-img{
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.cart-product-name{
  font-size: 1rem;
}

.qty-input{
  width: 44px;
  height: 34px;
  font-size: 1.15rem;
  border-radius: 8px;
}

.border-button.small,
.qty-btn{
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  font-size: 0.95rem;
  border-radius: 8px;
}

.remove-btn{
  min-width: 32px;
  height: 32px;
  padding: 0 6px;
  font-size: 0.9rem;
  border-radius: 8px;
}

.qty-controls{
  gap: 8px;
}

.cart-row{
  grid-template-columns: minmax(260px, 2.2fr) 90px 150px 90px 44px;
}

.cart-price-cell,
.cart-subtotal-cell{
  font-size: 0.95rem;
}

@media (max-width: 768px){
  .cart-item-img{
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .cart-product-name{
    font-size: 0.92rem;
  }

  .cart-price-cell,
  .cart-subtotal-cell{
    font-size: 0.92rem;
  }

  .cart-price-cell{
    margin-left: 58px;
  }

  .cart-qty-cell{
    margin-left: 58px;
  }

  .cart-subtotal-cell{
    margin-left: 58px;
  }

  .qty-input{
    width: 40px;
    height: 32px;
    font-size: 1rem;
  }

  .border-button.small,
  .qty-btn{
    min-width: 16px;
    height: 16px;
    font-size: 0.9rem;
    border-radius: 7px;
  }

  .remove-btn{
    min-width: 50px;
    height: 50px;
    font-size: 0.85rem;
    border-radius: 7px;
  }

  

  .cart-item-row{
    padding-right: 42px;
  }
}

/* ===== FINAL MOBILE CART FIX ===== */
@media (max-width: 768px){
  .cart-header{
    display: none !important;
  }

  .cart-heading{
    margin-top: 86px;
    font-size: 2.05em;
    line-height: 1;
  }

  .cart-table{
    margin: 18px 12px;
    padding: 14px;
    overflow: hidden;
  }

  .cart-row,
  .cart-item-row{
    grid-template-columns: 1fr !important;
    gap: 10px;
    padding: 14px 10px;
  }

  .cart-product-cell{
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    justify-content: flex-start;
  }

  .cart-item-img{
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    margin: 0;
  }

  .cart-product-name{
    font-size: 1em;
    line-height: 1.05;
    word-break: break-word;
  }

  .cart-price-cell,
  .cart-subtotal-cell,
  .cart-qty-cell{
    justify-content: flex-start;
    text-align: left;
    margin-left: 60px;
  }

  .cart-price-cell,
  .cart-subtotal-cell{
    font-size: 1em;
  }

  .qty-controls{
    justify-content: flex-start;
    gap: 6px;
  }

  .qty-input{
    width: 46px;
    height: 32px;
    font-size: 1rem;
  }

  .qty-btn{
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    font-size: 0.9rem;
  }

  .cart-remove-cell{
    position: absolute;
    top: 14px;
    right: -5px;
    margin: 0;
    justify-content: flex-end;
  }

  .cart-item-row{
    position: relative;
    padding-right: 46px;
  }

 

  .cart-summary{
    margin: 20px 12px;
    font-size: 1.05em;
  }
}

@media (max-width: 768px){
  .cart-price-cell{
    display: none !important;
  }
}

/* ===== COMPACT MOBILE CART ===== */
@media (max-width: 768px){

  .cart-item-row{
    padding: 12px 6px !important;
    gap: 6px !important;
  }

  .cart-product-cell{
    gap: 10px;
  }

  .cart-item-img{
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .cart-product-name{
    font-size: 0.95rem;
  }

  /* cena + qty blíž k sobě */
  .cart-subtotal-cell{
    margin-left: 52px;
    margin-top: -4px;
    font-size: 0.95rem;
  }

  .cart-qty-cell{
    margin-left: 230px;
    margin-top: -2px;
  }

  .qty-controls{
    gap: 6px;
  }

  .qty-input{
    width: 38px;
    height: 30px;
    font-size: 0.95rem;
  }

  .qty-btn{
    min-width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

 

  /* menší mezera mezi produkty */
  .cart-item-row + .cart-item-row{
    margin-top: 4px;
  }

  /* oddělovací čára jemnější */
  .cart-row{
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

}



@media (max-width: 768px){
  .cart-item-img{
    width: 90px !important;
    height: 90px !important;
    flex: 0 0 90px !important;
  }

  .cart-product-name{
    font-size: 1.05rem;
  }

  .cart-subtotal-cell{
    margin-left: 20px;
  }
}

/* =========================
   CHECKOUT SUMMARY – FINAL DESKTOP + MOBILE FIX
   ========================= */

#order-details{
  margin-bottom: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
}

#order-details p{
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  gap: 18px;
  margin: 0 0 10px;
  font-family: Arial, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
  color: rgba(254,250,224,0.9) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

#order-details p span{
  font-family: Arial, sans-serif !important;
  color: rgba(254,250,224,0.9) !important;
  text-transform: none !important;
}

#order-details p strong{
  font-family: Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fefae0 !important;
  white-space: nowrap;
  text-align: right;
  text-transform: none !important;
}

#order-details .summary-total{
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  margin-top: 6px;
}

#order-details .summary-total span,
#order-details .summary-total strong{
  font-family: Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #f4a261 !important;
  text-transform: none !important;
}

#order-details hr{
  border: 0;
  height: 1px;
  margin: 12px 0 14px;
  background: rgba(255,255,255,0.12);
}

@media (max-width: 768px){
  #order-details p{
    font-size: 14px !important;
    gap: 12px;
  }

  #order-details p strong{
    font-size: 14px !important;
  }

  #order-details .summary-total span,
  #order-details .summary-total strong{
    font-size: 16px !important;
  }
}

/* ===== ABOUT SECTION FIX ===== */

#o-nas{
  padding: 60px 20px;
  padding-top: 0px;
}



/* ===== ABOUT – NADPIS UPROSTŘED ===== */

.about-heading{
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  color: #fefae0;
  margin-bottom: 40px;
  padding-top: 80px;
}

.about-gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-gallery img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* text pod fotkami */
.about-text{
  text-align: center;
  max-width: 800px;
  margin: 30px auto 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.1em;
  line-height: 1.7;
  color: #fefae0;
}

.product-icons.single-icon{
  justify-content: center;
}

.product-icons.single-icon .product-size img{
  width: 72px;
  height: 72px;
}


#chilli-oleje .product-photo{
  height: 140px;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
}

#bbq-omacky .product-photo{
  width: 85%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
 
}

.product-photo{
  margin: 0 auto;
  display: block;
}

.product-card-link{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart-bump {
  transform: scale(1.2);
  transition: transform 0.2s ease;
}

/* mobil */
@media (max-width: 900px){
  .about-gallery{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px){
  .about-gallery{
    grid-template-columns: 1fr;
  }

}


.coming-soon-hidden {
  display: none;
}

.coming-soon-message {
  text-align: center;
  padding: 80px 20px;
  color: white;
}

.coming-soon-message h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  margin-bottom: 10px;
}

.coming-soon-message p {
  font-size: 16px;
  opacity: 0.8;
}


