/** Shopify CDN: Minification failed

Line 464:0 Unexpected "}"

**/

html body a.button,
html body a.button-secondary {
  font-size: 15px !important;
  font-weight: 700 !important;
}

/* ==========================================================================
   VLASTNÍ SWIPER LIGHTBOX (OVERRIDE)
   ========================================================================== */

/* 1. Totální skrytí nativního Savor zoomu a tlačítek */
.product-media-container__zoom-button,
zoom-dialog,
drag-zoom-wrapper {
  display: none !important;
}

/* 2. Stylování našeho nového nezávislého overlay okna */
#MyCustomLightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 999999; /* Musí být nad vším */
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#MyCustomLightbox.active {
  opacity: 1;
  pointer-events: auto;
}

/* 3. Stylování Swiperu uvnitř našeho okna */
#MyCustomLightbox .swiper {
  width: 100%;
  height: 100%;
}

#MyCustomLightbox .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px; /* Prostor kolem fotky */
}

#MyCustomLightbox .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* 4. Tlačítko pro zavření */
.custom-lb-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.custom-lb-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.custom-lb-close svg {
  width: 24px; height: 24px;
}

/* 5. Naše šipky */
#MyCustomLightbox .swiper-button-next,
#MyCustomLightbox .swiper-button-prev {
  color: #fff;
  background: rgba(255,255,255,0.1);
  width: 48px; height: 48px;
  border-radius: 50%;
  transition: background 0.2s;
}
#MyCustomLightbox .swiper-button-next:hover,
#MyCustomLightbox .swiper-button-prev:hover {
  background: rgba(255,255,255,0.3);
}
#MyCustomLightbox .swiper-button-next:after,
#MyCustomLightbox .swiper-button-prev:after {
  font-size: 20px;
}

/* Zákaz highlightu ve Swiper lightboxu */
#MyCustomLightbox, 
#MyCustomLightbox img, 
#MyCustomLightbox button,
#MyCustomLightbox .swiper-button-next, 
#MyCustomLightbox .swiper-button-prev {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-tap-highlight-color: transparent !important; /* Skryje problikávání na mobilech */
}


/* --- 1. MNOŽSTVÍ (+ a -) PRO PRODUKT I KOŠÍK --- */
quantity-selector-component, 
.quantity-selector,
quantity-input.quantity,
.quantity {
  background: transparent !important;
  border: 1px solid #e0e0e0 !important;
  display: inline-flex !important;
  align-items: center !important;
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 !important;
  min-width: 120px !important;
}

quantity-selector-component input,
.quantity-selector input,
.quantity__input {
  background: transparent !important;
  border: none !important;
  width: 40px !important;
  height: 40px !important;
  text-align: center !important;
  pointer-events: auto !important;
  cursor: text !important;
  margin: 0 !important;
  color: #000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

button.quantity-minus, 
button.quantity-plus,
button.quantity__button {
  background: transparent !important;
  color: #000 !important;
  border: none !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

button.quantity-minus:hover, 
button.quantity-plus:hover,
button.quantity__button:hover {
  background-color: #ebebeb !important;
}

button.quantity-minus svg, 
button.quantity-plus svg,
button.quantity__button svg {
  width: 14px !important;
  height: 14px !important;
  color: #000 !important;
}

/* --- 2. KOŠÍK: KŘÍŽEK A MAZÁNÍ (Popelnice) --- */
.cart-drawer__close-button, 
.cart-item__remove, 
.cart-items__remove, 
button.close-button {
  background: transparent !important; 
  border: none !important;
  color: #000 !important;
  padding: 0 !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important; 
  visibility: visible !important;
  cursor: pointer !important;
}

.cart-drawer__close-button svg, 
.cart-item__remove svg, 
.cart-items__remove svg, 
button.close-button svg {
  color: #000 !important;
  width: 20px !important;
  height: 20px !important;
}

/* --- 3. HLAVNÍ TLAČÍTKA (Velká a tučná) --- */
.button:not(.quantity__button):not(.quantity-minus):not(.quantity-plus):not(.close-button):not(.cart-items__remove):not(.cart-drawer__close-button):not(.quick-add__button):not(.quick-add__submit):not(.add-to-cart-button) {
  padding: 17px 32px !important;
  font-size: 17px !important;
  font-weight: bold !important;
}


/* --- 4. PILULKA NA PRODUKTECH (Tlačítko VYBRAT a oprava ošklivé ikony) --- */
#product-information .add-to-cart-button,
#quick-add-modal-content .add-to-cart-button {
  color: var(--color-primary-button-hover-text) !important;
  background-color: var(--color-primary-button-hover-background) !important;
  border-color: var(--color-primary-button-hover-border) !important;
  border-radius:0 !important;
  font-weight: bold;
}

.product-form-buttons {
    align-items: center;
}

#product-information .add-to-cart-button:hover,
#quick-add-modal-content .add-to-cart-button:hover  {
  color: var(--color-primary-button-text) !important;
  background-color: var(--color-primary-button-background) !important;
  border-color: var(--color-primary-button-border) !important;
}

#product-information .add-to-cart-button:hover svg,
#quick-add-modal-content .add-to-cart-button:hover svg  {
  color: var(--color-primary-button-text) !important;
}

.quick-add__button, 
.quick-add__submit, 
.add-to-cart-button {
  color: #000 !important;
  background-color: #fff !important;
  border-radius: 40px !important;
  min-height: 40px !important;
  padding: 8px 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}


/* Zde je oprava - nesmíme SVG vylít černou (fill: #000), jinak je to černý flek! */
.quick-add__button svg, 
.quick-add__submit svg, 
.add-to-cart-button svg {
  color: #000 !important;
  fill: none !important;
}



/* --- 5. FILTRY --- */
.facets--horizontal { 
  background-color: #c3ae67 !important; 
  padding-block: 12px !important; 
}



/* --- 6. PAYPAL ELIMINACE --- */
.additional-checkout-buttons, 
.shopify-payment-button { 
  display: none !important; 
}


/* --- 1. KOŠÍK: FIX MNOŽSTVÍ (Plus, Mínus, Input) --- */
/* Používáme flex: 0 0 40px, což znamená: "nechci se smrštit, chci mít 40px" */

.cart-drawer .quantity, 
.cart-drawer .quantity-selector {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  width: auto !important;
  border: 1px solid #e0e0e0 !important;
}

.cart-drawer .quantity__button {
  flex: 0 0 40px !important; /* Tlačítka se nikdy nezmenší */
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
}

.cart-drawer .quantity__input {
  flex: 1 1 40px !important; /* Input se přizpůsobí, ale nebude se mačkat */
  height: 40px !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
  color: #000 !important;
}

/* --- 2. KOŠÍK: POPELNICE (Aby se netloukla s +/-) --- */
.cart-item__remove {
  flex: 0 0 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

/* --- 3. FIX PROKLIKU (Card Wrapper) --- */
/* Toto zajistí, že odkaz je přes celou fotku, ale neovlivňuje to košík */
.card-wrapper { cursor: pointer !important; position: relative !important; }
.card-wrapper .full-unstyled-link { 
  position: absolute !important; top: 0; left: 0; width: 100%; height: 100%; 
  z-index: 10 !important; cursor: pointer !important;
}
.card-wrapper .media img { pointer-events: none !important; }
.card:hover .media img { transform: none !important; transition: none !important; }






/* 1. ZÁKAZ VŠECH JS INTERAKCÍ NA KARTÁCH (Kromě odkazu) */
.card-wrapper .media,
.card-wrapper .card__media,
.card-wrapper .quick-add {
  pointer-events: none !important;
}

/* 2. ZAJIŠTĚNÍ, ŽE ODKAZ JE JEDINÝ AKTIVNÍ PRVEK */
.card-wrapper .full-unstyled-link {
  pointer-events: auto !important;
  z-index: 100 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}
 
/* Přidat do košíku */

h2 {
  font-size: 42px;
}

@media screen and (max-width: 749px) {
  /* Zacílení přes ID sekce, aby to nepřebilo jiné group-bloky na webu */
  #Hero-template--28736326893895__hero_RkimKJ .group-block {
    --padding-inline-start: 18px !important;
    --padding-inline-end: 15px !important;
    --padding-block-start: 18px !important;
  }

  /* Natvrdo přepisujeme proměnné pro obří nadpis */
  .text-block--AOUlqSWRFNHVJM0VhO__text_KxeJ6r {
    --font-size: 32px !important;
    --line-height: 1.1 !important;
  }

  /* Srovnání podnadpisu */
  .text-block--AbmF4M1U3MmI5NnJ0U__text_CTkQgP {
    --font-size: 18px !important;
  }
  #Hero-template--28736326893895__hero_RkimKJ {
    --hero-min-height: 80svh !important;
    min-height: 80svh !important;
  }
  .rte p,
  .rich-text p,
  .text-block p,
  [class*="__text"] p {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  /* 2. Zabití inline CSS proměnných, kdyby se to šablona snažila vnutit přes ně */
  .rte,
  .rich-text,
  .text-block[style],
  [class*="__text"][style] {
    --font-size: 16px !important;
    --font-size-mobile: 16px !important;
  }

  .layout-panel-flex[style*="space-between"] {
    --vertical-alignment-mobile: flex-start !important;
    justify-content: flex-start !important;
  }

  /* 2. Zmenšení mezery nad "Ideální snack" a nad "Biltong Chilli sticks" */
  .text-block--ARVBaUEJsVytyaytHY__text_cR4GGk[style],
  .text-block--AN3Z4N2tCYmlTOW9mQ__text_3qgNU6[style] {
    --padding-block-start: 5px !important; /* Sraženo z 20px */
  }

  /* 3. Zkrocení dlouhého odstavce - zabití 65px mezery dole a 24px mezery nahoře */
  .text-block--AQWJyZnRIYmZSNEk1T__text_hzd3gN[style] {
    --padding-block-start: 10px !important;
    --padding-block-end: 15px !important; /* Přitáhne tlačítko nahoru */
  }

  /* 4. Pojistka pro mezeru mezi prvky, pokud kontejner používá gap */
  .group-block-content[style*="--gap"] {
    --gap: 10px !important;
  }

  /* Zkrocení obří 65px mezery pod odstavcem plošně pro všech 5 bloků */
  rte-formatter.text-block.rte[style] {
    --padding-block-end: 24px !important;
  }

  /* Odsazení pod všemi tlačítky "Chci ochutnat" */
  a.button[style] {
    margin-bottom: 10px !important;
  }

  
  }
  .ai-footer-column-title-av0hkbgxrz3znenjqbaigenblock8cb8203j6dehr {
    font-size: 26px !important;
  }
  .ai-footer-link-av0hkbgxrz3znenjqbaigenblock8cb8203j6dehr {
    font-size: 16px !important;
  }
  .ai-footer-column-av0hkbgxrz3znenjqbaigenblock8cb8203j6dehr span {
    font-size: 16px !important;
  }
  div[class*="ai-footer-social-icon"] svg {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

div[class*="ai-footer-social-icon"] svg rect,
div[class*="ai-footer-social-icon"] svg path,
div[class*="ai-footer-social-icon"] svg line {
  fill: none !important; /* Vyfoukne ten černý čtverec */
  stroke: inherit !important; /* Donutí to nakreslit linky barvou textu */
}

}

 