/* ========================================
   GAMPL FOOD - DARK GRAFFITI THEME
   Custom CSS Diff pro upload do systému
   Styl: černá, červená, raw graffiti
   ======================================== */

/* --- FONTY --- */
/* VÝCHOZÍ FALLBACK - BEZ font-weight */
@font-face {
  font-family: Primary;
  src: url(/user-data/factories/707/Custom_Font_Regular.ttf);
}
/* Light */
@font-face {
  font-family: Primary;
  src: url(/user-data/factories/707/Custom_Font_Light.ttf);
  font-weight: 300;
}
/* Regular */
@font-face {
  font-family: Primary;
  src: url(/user-data/factories/707/Custom_Font_Regular.ttf);
  font-weight: 400;
}
/* Bold */
@font-face {
  font-family: Primary;
  src: url(/user-data/factories/707/Custom_Font_Bold.ttf);
  font-weight: 700;
}

/* --- CSS PROMĚNNÉ - DARK GRAFFITI THEME --- */
:root {
  /* Základní barvy */
  --color-white: #FFFFFF;
  --color-gray-100: #1A1A1A;
  --color-gray-200: #222222;
  --color-gray-300: #2A2A2A;
  --color-gray-400: #666666;
  --color-gray-500: #888888;
  --color-gray-600: #AAAAAA;
  --color-gray-700: #CCCCCC;
  --color-gray-800: #E0E0E0;
  --color-gray-900: #F0F0F0;

  /* Primary = Agresivní červená Gampl */
  --color-primary-500: #FF2D2D;
  --color-primary-600: #CC1A1A;

  /* Dark varianty */
  --color-dark-600: #1A1A1A;
  --color-dark-700: #111111;
  --color-dark-800: #0A0A0A;
  --color-dark-900: #050505;
  --color-black: #000000;

  /* Stavy */
  --color-error-500: #FF2D2D;
  --color-info-500: #FF2D2D;
  --color-success-500: #5B8C3E;

  /* Stickers */
  --color-sticker-green-bg: rgba(91, 140, 62, 0.85);
  --color-sticker-green-text: #FFFFFF;
  --color-sticker-red-bg: rgba(255, 45, 45, 0.85);
  --color-sticker-red-text: #FFFFFF;
  --color-sticker-blue-bg: rgba(90, 130, 150, 0.85);
  --color-sticker-blue-text: #FFFFFF;
  --color-sticker-yellow-bg: rgba(255, 200, 50, 0.85);
  --color-sticker-yellow-text: #000000;
}

/* --- HLAVIČKA --- */
.toppanel,
.toppanel.mini-menu,
.toppanel::before {
  background-color: #000000 !important;
}

/* --- PATIČKA --- */
footer {
  background-color: #000000 !important;
}

/* --- BODY POZADÍ + GLOBÁLNÍ BÍLÝ TEXT (DARK THEME) --- */
body {
  background-color: #0D0D0D !important;
  color: #FFFFFF !important;
}

/* Globální bílý text - všechny běžné elementy */
h1, h2, h3, h5, h6,
p, label, li, td, th, dt, dd {
  color: #FFFFFF !important;
}

/* Linky bílé (ne v tlačítkách - ty mají vlastní barvu) */
a {
  color: #FFFFFF !important;
}

/* Span bílý (ne stickery - ty mají vlastní barvy) */
span:not(.sticker):not(.sticker-text) {
  color: #FFFFFF !important;
}

/* h4 bílé - ALE cena na kartě se přepíše níže červenou */
h4 {
  color: #FFFFFF !important;
}

/* Specifické kontejnery - košík, modály, formuláře */
.cart-col-name, .cart-col-value,
.modal-title, .modal-body,
.form-group label,
.order-step label,
.order-step p,
.order-step span {
  color: #FFFFFF !important;
}

/* === ČERVENÉ AKCENTY - vyšší specificita přebíjí globální bílou === */
/* Cena na kartách */
.items .item .item-info-panel .item-info-btn:nth-child(2) > h4 {
  color: #FF2D2D !important;
}

/* Hover stavy s červenou */
.gradient-btn:hover,
a.gradient-btn:hover,
.cart-back-btn a:hover,
.cart-pay-btn a:hover {
  color: #FF2D2D !important;
}

/* Ingredience hover */
.extended-menu-taste .ingredient-type-button:hover {
  color: #FF2D2D !important;
}

/* --- PRODUKTOVÉ KARTY - ZÁKLADNÍ STYLY --- */
.items .item {
  position: relative;
  padding: 1rem;
  padding-bottom: 3.5rem;
  background-color: #1A1A1A;
  color: #FFFFFF !important;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  outline: 1px solid #2A2A2A;
}

.items .item h3,
.items .item p,
.items .item .item-name,
.items .item .item-description {
  color: #FFFFFF !important;
}

.items .item:hover {
  outline-color: #FF2D2D;
}

/* --- OBRÁZEK KONTEJNER --- */
.items .item .item-photo-content {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 !important;
  isolation: isolate;
}

/* --- OBRÁZEK (pseudo-element) + Apple Safari 26.2 FIX --- */
.items .item .item-photo-content::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* iOS Safari: inherit nefunguje na ::before, var(--item-bg) z JS jako override */
@supports (-webkit-touch-callout: none) {
  .items .item .item-photo-content::before {
    background-image: var(--item-bg);
  }
}

/* --- CENA - VĚTŠÍ, TUČNĚJŠÍ, ZAROVNANÁ DOLEVA DOLŮ --- */
.items .item .item-info-panel .item-info-btn:nth-child(2) {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.items .item .item-info-panel .item-info-btn:nth-child(2) > h4 {
  font-weight: 500;
  font-size: 1.3rem;
  -webkit-text-stroke: 0.4px currentColor;
  color: #FF2D2D !important;
}

/* --- TLAČÍTKO "+" - ČERVENÝ RAW STYL --- */
.items .item .item-buy-now {
  width: 3rem;
  height: 3rem;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  background: #FF2D2D;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
}

.items .item .item-buy-now:hover {
  background: #FFFFFF;
  color: #FF2D2D;
}

.items .item .item-buy-now .item-buy-now-icon::before {
  content: '+';
  font-size: 1.5rem;
  font-weight: 600;
  color: inherit;
}

/* --- FIX: TLAČÍTKO VŽDY HRANATÉ (přepisuje media query) --- */
@media (min-width: 470px) {
  .items .item .item-buy-now {
    width: 3rem !important;
    height: 3rem !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }
  .items .item .item-buy-now::after {
    content: none !important;
  }
}

/* --- NOTIFICATION BOX - ČERVENÁ --- */
.notification-box,
#notifications {
  background-color: #FF2D2D !important;
  color: #FFFFFF !important;
}

.notification-box .notf-inform,
.notification-box .notf-info,
#notifications .notf-inform,
#notifications .notf-info,
#notifications p,
#notifications span,
#notifications div {
  color: #FFFFFF !important;
}

/* --- SKRYJE COOKIES PRO APPLE --- */
@supports (-webkit-touch-callout: none) {
  #cc-main {
    display: none;
  }
}

/* --- VŠECHNA TLAČÍTKA - ČERVENÝ RAW STYL --- */
.gradient-btn,
a.gradient-btn,
input[type='submit'].gradient-btn,
input[type='button'],
input[type='submit'],
.btn-href.gradient-btn,
.bonus-points-href-btn.gradient-btn,
.set-coupon-btn,
.js-go-next,
.js-btn-finish-order-step {
  background: #FF2D2D !important;
  background-image: none !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 0 !important;
}

.gradient-btn:hover,
a.gradient-btn:hover,
input[type='submit'].gradient-btn:hover,
input[type='button']:hover,
input[type='submit']:hover,
.btn-href.gradient-btn:hover,
.bonus-points-href-btn:hover,
.set-coupon-btn:hover,
.js-go-next:hover,
.js-btn-finish-order-step:hover {
  background: #FFFFFF !important;
  background-image: none !important;
  color: #FF2D2D !important;
  box-shadow: 0 4px 15px rgba(255, 45, 45, 0.5);
}

/* --- FIX: IKONY V KOŠÍKU - ČERVENÉ POZADÍ + BÍLÉ IKONY --- */
.cart-items .item .product-delete-btn {
  background-color: #FF2D2D !important;
  background-image: var(--icon-delete-white) !important;
  border-radius: 0 !important;
}

.cart-items .item-change-btn .change-btn.plus-icon {
  background-color: #0D0D0D !important;
  background-image: var(--icon-plus-white) !important;
}

.cart-items .item-change-btn .change-btn.minus-icon {
  background-color: #0D0D0D !important;
  background-image: var(--icon-minus-white) !important;
}

/* Bonus points tlačítka */
#cartOverlay-2 .bonus-points-btn.plus-icon {
  background-image: var(--icon-plus-white) !important;
}

#cartOverlay-2 .bonus-points-btn.minus-icon {
  background-image: var(--icon-minus-white) !important;
}

/* --- FIX: "Zvýhodněná doprava" - SPRÁVNÝ SELEKTOR --- */
.actions-container .cart-col-name {
  color: #FFFFFF !important;
}

/* --- FIX: TLAČÍTKA S IKONAMI --- */
/* Tlačítko filtrování - žádné efekty, původní styl */
button.filter-products-btn.gradient-btn,
button.filter-products-btn.gradient-btn:hover {
  background: #000000 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") !important;
  background-size: 1.2rem !important;
  background-position: center left 0.8rem !important;
  background-repeat: no-repeat !important;
  color: #FFFFFF !important;
  padding-left: 2.4rem !important;
  box-shadow: none !important;
}

/* Tlačítka navigace a volání */
.call-button.gradient-btn {
  background: #FF2D2D !important;
  display: flex !important;
  align-items: center !important;
}

/* Ikony v call-button - vlastní SVG ikony */
.call-button.gradient-btn .call-button-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: auto !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  filter: brightness(0) invert(1) !important;
}

.call-button.gradient-btn .call-button-icon.pointer-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") !important;
  filter: none !important;
}

.call-button.gradient-btn .call-button-icon.mobile-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") !important;
  filter: none !important;
}

/* --- FIX: TLAČÍTKO ZPĚT - IKONA ŠIPKY --- */
.back-btn.gradient-btn .btn-icon.arrow-left-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='19' y1='12' x2='5' y2='12'/%3E%3Cpolyline points='12 19 5 12 12 5'/%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  display: inline-block !important;
}

.back-btn.gradient-btn:hover .btn-icon.arrow-left-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF2D2D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='19' y1='12' x2='5' y2='12'/%3E%3Cpolyline points='12 19 5 12 12 5'/%3E%3C/svg%3E") !important;
}

/* --- FIX: TLAČÍTKO ZPĚT - FLEXBOX LAYOUT --- */
.back-btn.gradient-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
}

.back-btn.gradient-btn .cleaner {
  display: none !important;
}

/* --- FIX: ENHANCEMENT MODAL - KŘÍŽEK ZAVÍRACÍ TLAČÍTKO --- */
.delete-btn.js-enhancement-close {
  font-size: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") !important;
  background-size: 50% !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.delete-btn.js-enhancement-close:hover {
  font-size: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF2D2D' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") !important;
  background-size: 50% !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* --- FIX: DOPORUČENÉ PRODUKTY - TLAČÍTKO "+" --- */
.recomend-product-hover.gradient-btn {
  background: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: absolute !important;
  bottom: 0.5rem !important;
  right: 0.5rem !important;
  top: auto !important;
  left: auto !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  min-width: unset !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2 !important;
}

.recomend-product-hover.gradient-btn .recomend-product-icon.plus-icon {
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 50% !important;
  background-color: #FF2D2D !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") !important;
  background-size: 50% !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.recomend-product {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 0 !important;
}

/* --- FIX: CENA V KOŠÍKU - TMAVÝ TEXT --- */
.cart-price-column.cart-bonus .cart-col-name,
.cart-price-column.cart-bonus .cart-col-value {
  color: #FFFFFF !important;
}

/* --- FIX: ZÁLOŽKY PŘÍDAVKŮ - ČITELNÝ TEXT --- */
.extended-menu-taste .ingredient-type-button {
  color: #FFFFFF !important;
}

.extended-menu-taste .ingredient-type-button:hover {
  background-color: rgba(255, 45, 45, 0.15) !important;
  color: #FF2D2D !important;
  border-radius: 0 !important;
}

.extended-menu-taste .ingredient-type-button.active {
  color: #FFFFFF !important;
  background-color: #FF2D2D !important;
  border-radius: 0 !important;
}

/* --- FIX: TLAČÍTKA V KOŠÍKU / INGREDIENCE - ČITELNÝ TEXT --- */
.cart-back-btn a {
  color: #FFFFFF !important;
  background-color: transparent !important;
  border: 1px solid #FFFFFF !important;
  border-radius: 0 !important;
}

.cart-back-btn a:hover {
  background-color: #FFFFFF !important;
  color: #FF2D2D !important;
}

.cart-pay-btn a {
  border-radius: 0 !important;
}

.cart-pay-btn a:hover {
  background: #FFFFFF !important;
  background-image: none !important;
  color: #FF2D2D !important;
  box-shadow: 0 4px 15px rgba(255, 45, 45, 0.5) !important;
}

/* --- FIX: COUPON TLAČÍTKO - PILL TVAR --- */
.set-coupon-btn,
.js-add-coupon-btn {
  border-radius: 0 !important;
}

/* --- FIX: IKONY +/- U PŘÍDAVKŮ - BÍLÉ (tmavé pozadí) --- */
.extend-qantity-btn.arrow-down-icon {
  background-image: var(--icon-minus-white) !important;
}

.extend-qantity-btn.arrow-up-icon {
  background-image: var(--icon-plus-white) !important;
}

/* =========================================
   MICRO ANIMACE - DESKTOP (min-width: 769px)
   ========================================= */

@media screen and (min-width: 769px) {
  /* Ostatní tlačítka - plynulý hover */
  .set-coupon-btn,
  .js-add-coupon-btn,
  .specify-address-button,
  .js-specify-address-button,
  .bonus-points-center-class {
    transition: background 0.3s ease, box-shadow 0.3s ease !important;
  }

  .set-coupon-btn:hover,
  .js-add-coupon-btn:hover,
  .specify-address-button:hover,
  .js-specify-address-button:hover,
  .bonus-points-center-class:hover {
    box-shadow: 0 4px 12px rgba(255, 45, 45, 0.35) !important;
    cursor: pointer;
  }

  /* Doporučené produkty v košíku — tlačítko vlevo nahoře (desktop) */
  .cart-recomend-box .recomend-product-hover.gradient-btn {
    top: 0.5rem !important;
    left: 0.5rem !important;
    bottom: auto !important;
    right: auto !important;
  }
}

/* =========================================
   POJISTKY - NEZASAHOVAT DO MODÁLŮ A KŘÍŽKŮ
   ========================================= */
.close,
.fancybox-close,
.modal-close,
button.close {
  animation: none !important;
  box-shadow: none !important;
  transform: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}

@media screen and (min-width: 769px) {
  .modal-footer input,
  .btn-secondary,
  .quantity-input button {
    animation: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

/* =========================================
   MOBILE - VYPNUTÍ HOVER EFEKTŮ
   ========================================= */
@media screen and (max-width: 768px) {
  .items .item {
    transition: none !important;
  }

  .items .item:hover {
    box-shadow: none !important;
  }

  .items .item .item-buy-now {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    padding: 0 !important;
    border-radius: 0% !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .items .item:hover .item-buy-now,
  .items .item:hover input[type="submit"] {
    transform: none !important;
    animation: none !important;
  }

}

/* =========================================
   SCROLLBAR
   ========================================= */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
  background: #FF2D2D;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #CC1A1A;
}

/* --- FIX: MAP INFO BOX + ENHANCEMENT MODAL - TMAVÉ POZADÍ --- */
.map-info-box,
.map-info-box #mapInfoContent {
  background-color: #0D0D0D !important;
  color: #FFFFFF !important;
}

.map-info-box h4,
.map-info-box p,
.map-info-box .open-hours-D,
.map-info-box .open-hours-H,
.map-info-box .call-button-content h3,
.map-info-box .message-responce-time-comment {
  color: #FFFFFF !important;
}

.map-info-box input[type="email"],
.map-info-box textarea,
.map-info-box select {
  background-color: #2A2A2A !important;
  color: #FFFFFF !important;
  border: 1px solid #444444 !important;
}

.map-content-image .map-content-title h4 {
  color: #FFFFFF !important;
}

.overlay-enhancement-content {
  background-color: #0D0D0D !important;
  color: #FFFFFF !important;
}

.overlay-enhancement-content .enhancement-header {
  color: #FFFFFF !important;
}

.overlay-enhancement-content .extended-title,
.overlay-enhancement-content .extended-price,
.overlay-enhancement-content .extended-quantity {
  color: #FFFFFF !important;
}

.overlay-enhancement-content .select-content,
.overlay-enhancement-content .extended-content-taste {
  border-bottom: 1px solid #2A2A2A !important;
}

.overlay-enhancement-content .extended-content-box {
  background-color: #0D0D0D !important;
}

/* --- FIX: KOŠÍK PRAVÝ PANEL - TMAVÉ POZADÍ --- */
.cart-right-box {
  background-color: #0D0D0D !important;
  color: #FFFFFF !important;
}

.cart-right-box .cart-sum {
  background-color: #0D0D0D !important;
}

.cart-right-box .cart-col-name,
.cart-right-box .cart-col-value {
  color: #FFFFFF !important;
}

.cart-right-box .cart-recomend-box {
  background-color: #0D0D0D !important;
}

.cart-right-box .cart-recomend-box h4,
.cart-right-box .recomend-product-desc h4,
.cart-right-box .recomend-product-desc span {
  color: #FFFFFF !important;
}

/* Kupón input */
.coupon-box,
.coupon-box .coupon-content {
  background-color: #0D0D0D !important;
}

.coupon-box input[type="text"] {
  background-color: #2A2A2A !important;
  color: #FFFFFF !important;
  border: 1px solid #444444 !important;
}

/* --- FIX: OBJEDNÁVKOVÝ FORMULÁŘ - TMAVÉ POZADÍ --- */
.cart-form-box {
  background-color: #0D0D0D !important;
  color: #FFFFFF !important;
}

.cart-form-box .field input,
.cart-form-box .field textarea,
.cart-form-box .field select {
  background-color: #2A2A2A !important;
  color: #FFFFFF !important;
  border: 1px solid #444444 !important;
}

.cart-form-box .field label {
  color: #AAAAAA !important;
}

.cart-form-box .save-data-box {
  background-color: #0D0D0D !important;
}

.cart-form-box .save-data-desc,
.cart-form-box .save-data-desc a {
  color: #FFFFFF !important;
}

/* Objednávka na čas */
.timed-order-wrapper {
  background-color: #0D0D0D !important;
  color: #FFFFFF !important;
}

.timed-order-wrapper .btn.day {
  background-color: #2A2A2A !important;
}

.timed-order-wrapper .time-select-container {
  color: #FFFFFF !important;
}

.timed-order-wrapper .eco-message {
  color: #AAAAAA !important;
}

/* --- FIX: ADRESA DORUČENÍ - TMAVÉ POZADÍ --- */
.js-address-container {
  background-color: transparent !important;
}

.js-address-container .field input,
.address-field .field input {
  background-color: #2A2A2A !important;
  color: #FFFFFF !important;
  border: 1px solid #444444 !important;
}

.js-address-container .field label,
.address-field .field label {
  color: #AAAAAA !important;
}

.js-address-container .address-error-box {
  background-color: #2A2A2A !important;
  color: #FF2D2D !important;
}

.set-user-location-button {
  color: #FFFFFF !important;
}

/* --- FIX: MNOŽSTVÍ V KOŠÍKU - STYL JAKO INGREDIENCE --- */
.item-change-btn,
.cart-items .item-change-btn {
  display: flex !important;
  align-items: center !important;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.item-change-btn .change-btn,
.cart-items .item-change-btn .change-btn {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.item-change-btn .change-btn.plus-icon,
.cart-items .item-change-btn .change-btn.plus-icon {
  background-color: transparent !important;
  background-image: var(--icon-plus-white) !important;
}

.item-change-btn .change-btn.minus-icon,
.cart-items .item-change-btn .change-btn.minus-icon {
  background-color: transparent !important;
  background-image: var(--icon-minus-white) !important;
}

.item-change-btn .js-quantity-label,
.cart-items .item-change-btn .js-quantity-label {
  color: #FFFFFF !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
}

/* --- FIX: VYHLEDÁVACÍ POLE --- */
.search-filter-input,
#filter-name-input {
  background-color: #2A2A2A !important;
  color: #FFFFFF !important;
  border: 1px solid #444444 !important;
}

/* --- FIX: KATEGORIE MENU + INGREDIENCE - BÍLÉ IKONY --- */
.food-types .food-type-button img,
.ingredient-types .ingredient-type-button::before {
  filter: invert(1) !important;
}

.food-types {
  background-color: transparent !important;
}

.food-types .food-type-button {
  color: #FFFFFF !important;
}

.food-types .food-type-button.active {
  background-color: #FF2D2D !important;
  color: #FFFFFF !important;
}

/* --- FIX: NOVINKY - DARK THEME --- */
.news-box {
  background-color: transparent !important;
}

.news-column {
  background-color: transparent !important;
}

.news-column .news-content {
  background-color: #1A1A1A !important;
  border: 1px solid #2A2A2A !important;
  border-radius: 0.5rem !important;
}

.news-column .news-content,
.news-column .news-title,
.news-column .news-date,
.news-column .news-content p {
  color: #FFFFFF !important;
}

/* --- FIX: AUTOFILL ADRES - BÍLÝ TEXT NA TMAVÉM POZADÍ --- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: #FFFFFF !important;
  transition: background-color 5000s ease-in-out 0s !important;
  box-shadow: inset 0 0 20px 20px #2A2A2A !important;
}

/* =========================================
   SMOOTH SCROLLING
   ========================================= */
html {
  scroll-behavior: smooth;
}
