@font-face {
    font-family: 'Neue Frutiger';
    src:url('../fonts/NeueFrutigerWorld-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
  }

  *, *::before, *::after {
    box-sizing: border-box;
  }

html {
  font-size: 16px;
  overflow-y:auto;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  padding: 0;
  margin: 0;
  font-weight: 400;
  color: #222;
  font-family: 'Neue Frutiger', Outfit, Inter, 'Ambit-Regular', Gotham-Medium, 'Poppins', Garnett-Regular, arial;
  //background: linear-gradient(136deg, rgb(252, 250, 247) 5%, rgb(255, 255, 255) 29%, rgb(253, 252, 247) 73%);
  background: #fcfaf7;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.head-theme {
  background-image: var(--header-bg);
  background-position: center;
  background-repeat: no-repeat;
}

.body-bgimage {
  background-image: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input:focus, button:focus, textarea:focus, select:focus {
    outline:none;
}


svg {
  max-width: 100vw;
  height: auto;
}


header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0px;
  height: 80px;
  border-bottom: 1px solid #eee;
  background: white;
}

h1, h2, h3, h4 {
  font-family: Outfit, Inter, 'Neue Frutiger', 'Ambit-Bold', Gotham-Medium, Garnett-Medium, 'Poppins';
}

a, a:hover, button, button:hover {
  transition: all 0.5s;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.top-box {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  box-sizing: border-box;
}

/* HAMBURGER A X */
.hamburger {
  cursor: pointer;
  z-index: 3000;
  padding-right: 10px;
  box-sizing: border-box;
}

.hamburger svg {
  width: 28px;
  height: 28px;
  stroke: #222;
  transition: stroke 0.2s ease;
  vertical-align: middle;
}
.hamburger:hover svg {
  stroke: blue;
}

/* HLAVNÉ MENU */
.main-menu,
.products-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 80px);
  padding: 0 20px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  font-size: 18px;
  z-index: 10000;
  background: white;
}


.main-menu.open, .products-menu.open {
  display: block;
}

.all-group-menu {
  margin: 0%;
}

.group-menu span {
  font-size: 12px;
}

.group-menu a, .main-menu a {
  transition: all 0.5s;
  font-family: 'Neue Frutiger', Outfit, Inter,  'Ambit-Regular', poppins;
}

.group-menu a {
  font-size: 1.05rem;
}

.product-name a {
  transition: all 0.5s;
  font-size: 1.1rem;
}

.group-menu a:hover, .main-menu a:hover, .product-name a:hover {
  color: #b9a98d;
  transition: all 0.5s;
}

.icons-right {
  justify-content: right;
  box-sizing: border-box;
  width: 80%;
  box-sizing: border-box;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li { margin: 20px 0; }

a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

.search-offset {
  margin-left: 5px;
}

.top-box img {
  width: 90px;
  z-index: 5000;
  position: relative;
  vertical-align: middle;
  padding: 0 0 0 10px;
}

.searchtext {
  padding: 3px;
}

/* SPÄŤ TLAČIDLO */
.back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  margin: 20px 0px;
  cursor: pointer;
  user-select: none;
}

.arrow {
  transition: transform 0.3s ease;
  transform-origin: center;
}

.arrow.rotate {
  transform: rotate(180deg);
}

/* IKONY VPRAVO */
.icons-right {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3000;
}

.icons-right svg {
  width: 24px;
  height: 24px;
  stroke: #222;
  cursor: pointer;
  transition: stroke 0.2s ease;
}

/* OVERLAY SEARCH */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: white;
  border-bottom: 1px solid #eee;
  display: none;
  align-items: center;
  z-index: 20000;
  padding: 0 15px;
  box-sizing: border-box;
}

.search-overlay.active {
  display: flex;
}

.search-overlay svg {
  width: 26px;
  height: 26px;
  stroke: black;
  cursor: pointer;
}

.search-overlay input {
  border: none;
  outline: none;
  font-size: 18px;
  width: 100%;
  margin-left: 10px;
  background: transparent;
  font-family: 'Neue Frutiger', Outfit, Inter,  'Poppins', sans-serif;
}

/* AUTOSUGGEST STYLING */
.search-results {
  position: absolute;
  top: 80px; /* pod header */
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #eee;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  z-index: 9999;
  max-height: 100vh;
  overflow-y: auto;
  transition: all 0.2s ease;
}

.search-results.visible {
  display: flex;
  margin: 0 0%;
  width: 100%;
  box-sizing: border-box;
  position:fixed;
}

.search-results div {
  padding: 14px 22px;
  cursor: pointer;
  border-bottom: 1px solid #f3f3f3;
  font-size: 17px;
}

.search-results div:hover {
  background: #fafafa;
  color: #b9a98d;
}


.suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  cursor: pointer;
  border-bottom: 1px solid #f3f3f3;
}

.suggestion-item:hover {
  background: #fafafa;
  color: #b9a98d;
}

.suggestion-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.icons-right a {
  line-height: 0;
  vertical-align: middle;
}


.cart-icon {
  position: relative;
  display: flex;
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #e74c3c;
  color: white;
  font-size: 12px;
  border-radius: 50%;
  line-height: 1;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}

.no-pc-logo {
  display: flex;
}

.one-item-product {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.category-icon {
  width: 60px !important;
  height: 60px !important;
  padding: 2px !important;
  background: #f2eee9;
  filter: grayscale(100%);
}


/*  produkty prehlad */

.product {
  position: relative;
  width: 100%;
  padding: .3rem;
  border-radius: 7px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  justify-self: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product h3 {
  min-height: 60px;
}

.product:hover {
  //background: #eee;
  //box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: .5rem;
}

.product-name {
  padding: 3% 0;
  text-align: center;
}

.qty-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .9rem;
  margin: .5rem 0;
  flex-wrap: wrap;
  margin-top: auto;
}

.qty-controls div {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.qty-btn {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  padding: .4rem .7rem;
  cursor: pointer;
  transition: background .2s;
}

.qty-btn:hover {
  background: #f3f4ff;
  color: #9b7853;
}

.qty {
  min-width: 20px;
  text-align: center;
}

.add-to-cart {
  background: #292933;
  color: #fff;
  padding: .55rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: background .3s;
  font-family: 'Neue Frutiger', Outfit, Inter,  poppins;
  font-size: 1rem;
  border: 1px #292933 solid;
  display: flex;
  align-items: center;
}

.add-to-cart:hover {
  background: transparent;
  color: #9b7853;
  border: 1px #9b7853 solid;
}

.add-to-cart svg {
  vertical-align: middle;
}

.hidden { display: none; }


.products-inbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 stĺpce na mobil */
  gap: 10px; /* medzery medzi položkami */
  margin: 0%;
  box-sizing: border-box;
  padding: 0%;
}

.box-button-next {
  margin: 0%;
  box-sizing: border-box;
  padding: 4% 0;
}

.headline-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999999;
  min-height: auto;
}

.flying-circles {
/*  background: url('https://zakusky-eshop.sk/images/circle.svg') center/cover no-repeat; */
/*  background: url('https://zakusky-eshop.sk/images/sweets.svg') center/cover no-repeat; */
}

.headline-box {
  margin: 0%;
  padding: 0% 0% 0% 0%;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.headline-box span {
  font-size: 1.1rem;
}

.headline-page {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0%;
}

.h1-headline {
  box-sizing: border-box;
  font-size: 1.5rem;
  padding: 0;
  line-height: 1;
}

.h1-headline strong {
  font-size: 2.05rem;
}

.hd-ln {
  background: rgba(255,255,255,0.95);
  padding: 5% 1%;
  box-sizing: border-box;
  min-height: auto;
}

.minht {
  min-height: 100px !important;
}

.wave-bg {
    position: absolute;
    right: 0;
    max-width: 100%;
    overflow: hidden;
}

.wave-bg svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.control-products, .control-cart {
  margin: 0% 1%;
  padding: 1% 0;
  border-top: 1px #f0e7de solid;
}

.control-box, .control-box-cart {
  display: flex;
  box-sizing: border-box;
  margin: 0% 1%;
  justify-content: space-between;
  align-items: center;
}

.control-box, .control-box-cart div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.control-box-cart div {
  width: 100%;
}

/*
.control-box-cart div:last-child {
  display: flex;
  justify-content: right;
}
*/

.control-box span, control-box-cart span {
  font-size: 1.1rem;
}

.control-box div {
  display: flex;
  align-items: center;
}


.products-container {
  //background: linear-gradient(136deg, rgb(255, 255, 255) 5%, rgb(242, 238, 233) 29%, rgb(255, 255, 255) 73%);
}

.sr-only {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.select-wrap {
  position: relative;
  display: inline-block;
}

.select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 10px 20px 10px 4px;
  font-size: 1.1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
  border-radius: 6px;
  transition: background 0.2s;
  font-family: 'Neue Frutiger', Outfit, Inter,  Ambit-Regular, Poppins;
}

.select-wrap select:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.select-wrap select:focus {
  box-shadow: 0 0 0 3px rgba(100, 150, 255, 0.2);
}

.select-wrap .chev {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #555;
  pointer-events: none;
}

div.pading {
  padding: 0 0 0 0;
}

.stroke {
  text-decoration: line-through;
  color: #aaa;
  padding: 0;
  vertical-align: middle;
}

.percent {
  border-radius: 7px;
  vertical-align: middle;
  padding: 6%;
  white-space: nowrap;
}

.percent svg {
  vertical-align: middle;
}

.sale {
  color: #09b509;
  font-weight: bold;
  padding: 0;
  margin: 2% 0;
}

.price {
  font-weight: 500;
  font-size: 1.1rem;
}

.stroke {
  padding: 0%;
  border-radius: 50px;
  border: none;
  display: inline-block;
}

.nostroke {
  padding: 0%;
  display: inline-block;
  margin: 0% 0 0% 0;
}

.avaiable, .unavaiable, .temp-unavailable, .made-to-order {
  padding: 2% 0%;
  margin: 0 0 5% 0;
  box-sizing: border-box;
  border-radius: 6px;
  text-align: center;
}


.sale-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  border-radius: 50px;
  margin: 0 0.5% 10% 0.5%;
  font-size: 1.15rem;
  flex-wrap: nowrap;
}

.avaiable, .product-avaiable {
  color:green;
}

.unavaiable, .product-unavaiable {
  color:red;
}

.temp-unavailable, .product-temp-unavailable {
    color: orange;
}

.made-to-order, .product-made-to-order {
  color: orange;
}


#load-more {
  display: block;
  margin: 30px auto;
  padding: 10px 20px;
  background: #2b8a3e;
  color: white;
  font-family: 'Neue Frutiger', Outfit, Inter,  'Poppins', Garnett-Regular;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#load-more:hover {
  background: #247a34;
}

#loader {
  text-align: center;
  font-style: italic;
  color: #555;
}

#load-more svg {
  vertical-align: middle;
}

.label-news {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  padding: 2px;
  margin: 0px 0 0 0px;
  background: green;
  border-radius: 6px;
}

.bg-white {
  background: white;
}

.box-minus-plus {
  border: 1px #f3f4ff solid;
  border-radius: 8px;
  box-sizing: border-box;
}

.minus {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-right: 1px #f3f4ff solid;
}

.plus {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-left: 1px #f3f4ff solid;
}








/* kosik */

.cart-container, .builder-container {
  margin: 40px 1%;
  background: white;
  padding: 10px;
  border-radius: 16px;
}

.cart-container h2 {
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th, .cart-table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.cart-table th {
  background: transparent;
  font-weight: bold;
  border-bottom: 2px black solid;
  color: #333;
}

.cart-col-product small {
  font-size: 0.8rem;
  color:black;
}

.cart-col-product strong {
  font-size: 0.85rem;
  color: #06c87f;
}

.cart-col-product a {
  color: #000;
}

.cart-col-product a:hover {
  color: #b9a98d;
}

.cart-table td input[type="number"],
.cart-table td input[type="text"],
.cart-table td select {
  width: 90%;
  padding: 5px;
  border-radius: 8px;
  font-family: 'Neue Frutiger', Outfit, Inter,  poppins;
}

.cart-table td input[type="number"] {
  border: 0px solid #ccc;
}

.cart-table td select option {
  padding: 4px;
}

.cart-remove {
  border: none;
  color: red;
  background: transparent;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 1.7rem;
}

.cart-remove:hover {
  background: #fffafa;
}

#cart-total {
  margin-top: 25px;
  text-align: right;
  font-weight: bold;
  font-size: 1.3em;
  color: #333;
}




/* */

/* prefix cart- aby sa neprekrývalo so štýlmi z projektu */

.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th, .cart-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: middle;
}
.cart-table th {
  background: #f6f7ff;
  font-weight:600;
  color:#333;
  border-bottom: 2px black solid;
  padding: 3% 0;
}

#cart-items td {
  padding: 2% 0;
}

.cart-col-product { width: 25%; }
.cart-col-color, .cart-col-filling, .cart-col-text { width: 15%; }
.cart-col-qty { width: 10%; text-align:center; }
.cart-col-price { width: 7%; text-align:right; padding-right:16px; }
.cart-col-remove { width: 5%; text-align:center; }

.cart-qty-wrap {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border: 1px #eae7e3 solid;
  border-radius: 8px;
  max-width: 120px;
}

.cart-btn {
  background:transparent;
  border:0px solid #e0dcd5;
  padding:6px 10px;
  cursor:pointer;
  font-size:16px;
  line-height:1;
}

.cart-btn:hover { background:#e9e9e9; }

.cart-minus {
    border-right:1px solid #e0dcd5;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.cart-plus {
    border-left:1px solid #e0dcd5;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.cart-quantity {
  width:64px;
  padding:6px;
  border-radius:8px;
  border:0px solid #ddd;
  text-align:center;
  font-size:14px;
}

.cart-color, .cart-filling {
  width:100%;
  padding:6px;
  border-radius:8px;
  border:1px solid #ddd;
  background:white;
}

.cart-filling {
  text-transform: uppercase;
}

.cart-text {
  width:100%;
  padding:6px;
  border-radius:8px;
  border:1px solid #ddd;
  text-transform: uppercase;
}

.cart-remove {
  cursor:pointer;
}

.cart-remove:hover { opacity:0.95; }

.cart-price, .cart-total-price { font-weight:600; color:#222; white-space: nowrap; }

.cart-box {
  margin: 0 0 5% 0;
}

.cart-summary-block {
  margin: 5% 0 0 0;
}


.cart-progress-container {
  width: 100%;
  background-color: #e5e5e5;
  border-radius: 25px;
  height: 17px;
  margin: 0% 0 2% 0;
}

.cart-progress-bar {
  height: 100%;
  background-color: #6469aa;
  border-radius: 25px;
  transition: width 0.5s ease;
  text-align: center;
  color: white;
  font-size: 14px;
  line-height: 17px;
}

.info {
  font-family: 'Neue Frutiger', Outfit, Inter,  Arial, sans-serif;
  margin-top: 10px;
}

.cart-bottom {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  box-sizing: border-box;
  background: #f5f5f5;
  border-radius: 15px;
}

.infocart {
  width: 100%;
  box-sizing: border-box;
  display: block;
}

.cart-coupon label {
  padding: 0 10px;
}

.cart-coupon {
  margin: 4% 0;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 0 2%;
}

.cart-coupon-btn {
  border: none;
  padding: 7px 15px;
  font-family: 'Neue Frutiger', Outfit, Inter,  poppins;
  font-size: 1rem;
  background: #545780;
  color: #f3f4ff;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.cart-coupon-btn:hover {
  background: #f3f4ff;
  color: #545780 !important;
  transition: 0.2s
}

.cart-coupon-del-btn {
  border: none;
  padding: 7px 15px;
  border-radius: 8px;
  font-family: 'Neue Frutiger', Outfit, Inter,  poppins;
  font-size: 1rem;
  background: #ec0d0d;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}

.cart-coupon-del-btn:hover {
  background: #dc0d0d;
  transition: 0.2s;
}


.cart-text-coupon {
  padding: 10px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border: 0px;
  width: 100%;
  font-family: 'Neue Frutiger', Outfit, Inter,  poppins;
  font-size: 1rem;
  margin: 0 0 0 2px;
  text-transform: uppercase;
}

.cart-progress-box {
  margin: 0 0 3% 0;
  width: 100%;
  padding: 0 2%;
  box-sizing: border-box;
}

.cart-free-shipping {
  padding: 3% 2%;
  background: #c6f9c6;
  border-radius: 8px;
  text-align: center;
  color: green;
}

.sub-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2%;
  box-sizing: border-box;
}

.cart-summary-block {
  margin: 0 0 0 0;
  width: 100%;
  padding: 2%;
  box-sizing: border-box;
  background: #f5f5f5;
  border-radius: 15px;
}


.cart-checkout-btn {
  background: #545780;
  color: #f3f4ff;
  border:1px #545780 solid !important;
  border: 0;
  color: #f3f4ff;
  padding: 3% 5%;
  font-family: 'Neue Frutiger', Outfit, Inter,  poppins;
  font-size: 1rem;
  border-radius: 7px;
  transition: 0.2s;
  width: 100%;
  text-align: center;
}

.cart-checkout-btn:hover {
  background: transparent;
  color: #6469aa;
  cursor:pointer;
  transition: 0.2s;
}

.cart-coupon-input {
  border: 1px #e0dcd5 solid;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
}

.aligncenter {
  text-align: center;
}


#coupon-message {
  padding: 1% 0;
  color: red;
  box-sizing: border-box;
  font-size: 0.9rem;
}

.box-paginate {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin: 3% auto;
  width: 100%;
  white-space: nowrap;
}

.paginate div {
  padding: 3%;
  border-radius: 8px;
  background: #f7f7f7;
  transition: all 0.5s;
}

.paginate div:hover {
  background: #fbf4ec;
  transition: all 0.5s;
}

.paginate a {
  transition: all 0.5s;
}

.paginate a:hover {
  color: #b9a98d;
  transition: all 0.5s;
}

.act-pg {
  border: 0 !important;
  background: none !important;
}

.paginate {
  box-sizing: border-box;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  width: 100%;
}

.bord-bott {
  border-bottom: 1px #f0e7de solid;
}

.textcenter {
  text-align: center;
}



/* -------------------------- */
/*     WAVY DIVIDER           */
/* -------------------------- */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}


/* -------------------------- */
/*          FOOTER            */
/* -------------------------- */
.footer {
    background: #000;
    color: #ddd;
    padding: 70px 20px 30px;
    font-family: "Georgia", serif;
}

.footer-grid li {
  margin: 3px 0;
}

.footer-grid {
    grid-template-columns: 1fr;
}

.footer-grid svg {
  vertical-align: middle;
  padding: 0 2% 0 0;
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
}

.footer p {
    line-height: 1.6;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0 0 8px 0;
}

.footer a {
    color: #ddd;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.socials a {
    display: inline-block;
    margin-right: 12px;
    border: 1px solid transparent;
    padding: 6px 6px;
    border-radius: 6px;
    font-size: 14px;
}

.socials a:hover {
    background: #fff;
    color: #000;
}

.copy {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    margin-top: 20px;
}

.icon {
    width: 24px;
    height: 24px;
    stroke: white;     /* tu meníš farbu */
    fill: none;        /* ikonky sú „outline“ */
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.bottom-image {
  box-sizing: border-box;
  margin: 1% 0;
  width: 100%;
}

.bottom-image img {
  width: 100%;
}

.hidden-control {
  display: none !important;
}


    cursor:pointer;
    .button-add-order {
    padding:1.5%;
    margin:0.5% auto;
    display: block;
    text-align: center;
    vertical-align: middle;
    background:#d9c9ad;
    color: #fff;
    font-family: Garnett-Regular, Poppins, Brown, Yaldevi, 'dm sans bold', 'modestic-sans-bold', 'Open-Sans', arial;
    font-size:1.15rem;
    font-weight: 500;
    box-sizing: border-box;
    border-radius: 35px;
    transition: all 0.5s;
    border: 2px #d9c9ad solid;
}


.button-add-order:hover {
  background:#fff;
  color: #d9c9ad;
}


#reviewForm textarea {
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 2% 0;
  resize: none;
}

#reviewForm button {
  background: black;
  border: 0;
  padding: 1% 3%;
  color: white;
  border-radius: 7px;
  border: 1px black solid;
  font-size: 1rem !important;
}

#reviewForm button:hover {
  background: white;
  color: black;
  cursor: pointer;
}

.review {
  padding: 0%;
  border-bottom: 1px #eaeaea solid;
}

.review:last-child {
  border-bottom: 0px;
}

span.stars, div.stars {
  display: block;
  color: #ffce0c;
}

.product-rating {
  text-align: center;
}

.graytext {
  color: #b3b3b3;
}

.thumb {
    aspect-ratio: 1 / 0.666;
    overflow: hidden;
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.allergen-filter h3 {
  margin-top: 0px;
  font-size: 18px;
}

.allergen-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.alergen {
  border: 0px;
  background: none;
  padding: 8px 14px;
  border-radius: 0px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  border-bottom: 1px #eee solid;
  box-sizing: border-box;
}

.alergen:last-child {
  border-bottom: 0px;
}

.alergen:hover {
  background: #ececec;
}

.alergen small {
  color: silver;
}

.alergen img {
  width: 24px;
}

.alergen.active img {
filter: brightness(0) invert(1);
}

.alergen.active {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: scale(1.05);
}

.alergen:active {
  transform: scale(0.95);
}

.alergen.active:last-child {
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}

.control-alergens {
  border: 0px;
  border-radius: 35px;
  box-sizing: border-box;
  margin: 0% 1% 5% 1%;
  background: white;
  display: block;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.empty-products {
  box-sizing: border-box;
  text-align: center;
}


.mobile-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 30px;
    border: 0px solid #ddd;
    background: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    width:100%;
  }

.mobile-filter-btn:hover {
    color: #9b7853;
}

.mobile-filter-btn svg {
  transition: transform 0.3s ease;
}

.mobile-filter-btn.active svg {
  transform: rotate(180deg);
}


.allergen-filter {
    display: none;
    padding: 0px 10px 10px 10px;
    background: none;
    border-radius: 16px;
}

.allergen-filter.show {
    display: block;
    max-height: 500px;
}

#product-count {
  font-size: 1.1rem;
}

.note-delivery {
  box-sizing: border-box;
  padding: 1%;
  background: #b7f8b7;
  color: #036403;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}



/* FILTER */

.filters label {
    margin-right: 10px;
    cursor: pointer;
}

.filters img {
    width: 22px;
    vertical-align: middle;
}




.filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 3px;
    padding-bottom: 10px;
    flex-wrap: wrap;
    background: #f3f3f3;
    border-radius: 9px;
    box-sizing: border-box;
    justify-content: center;
}


.filter-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: none;
}

.filters div:first-child {
  width: 100%;
  text-align: center;
  border-bottom: 1px #e6e6e6 solid;
  background: none;
  box-shadow: none;
  box-sizing: border-box;
}

.filter-btn img {
    width: 20px;
    opacity: 0.6;
    transition: 0.2s;
}

/* hover */
.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* ACTIVE */
.filter-btn.active {
    background: #000;
}

.filter-btn.active img {
    opacity: 1;
    filter: brightness(0) invert(1);
}

/* GRID */
.alergen-grid {
    display: grid;
    /*gap: 8px;*/
}

.header, .row {
    display: grid;
    grid-template-columns: 28% repeat(auto-fit, 12%);
    align-items: stretch;
}

.cell {
    padding: 6px;
    text-align: center;
    border-right: 1px #d0d0d0 solid;

}

.cell:nth-child(7) {
    border-right: 0px !important;
}

.produkt, .produkts {
    text-align: left;
}

.produkts {

}

.circle-allerg {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.circle-allerg div {
  display: inline;
}

/* HEADER */
.header {
  background: #e6e1d8;
  font-weight: bold;
  border-bottom: 5px #b9b7b4 solid;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}

/* ROW */
.row {
    transition: 0.2s;
    border-bottom: 1px #e0e0e0 solid;
    background: white;
}

.row:hover {
    background: #f1f3f8;
}

/* ICONS */
.cell img {
    width: 25px;
    transition: 0.2s;
}

.cell img.active {
    opacity: 1;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

.view-allergen {
  display: none;
}

.circle-allerg div {
  border-radius: 50%;
  background: black;
  height: 30px;
  width: 30px;
  box-sizing: border-box;
}

.h1-headline small {
  letter-spacing: 5px;
  font-size: 1rem;
  color: #666;
}

.h1-headline h1, .text-outline {
    color: black;

    /* fallback */
    text-shadow:
        -2px -2px 0 white,
         2px -2px 0 white,
        -2px  2px 0 white,
         2px  2px 0 white;
}



/* DESKTOP MENU */
/* DESKTOP MENU */
/* DESKTOP MENU */
@media (max-width: 1410px) {


}

@media (min-width: 769px) {

  .filters {
    justify-content: left;
    padding: 10px;
  }

  .filter-btn {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.2s;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }

  .filters div:first-child {
    width: auto;
    background: none;
    box-shadow: none;
    border-bottom: 0px;
    justify-content: left;
  }



.view-allergen {
    display: block;
}


.control-alergens {
    margin: 0 10%;
    margin-bottom: 2%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.allergen-filter {
    padding: 15px;
    display: block;
}

.alergen {
  padding: 3px 9px;
  font-size: 1rem;
  border: 1px solid #ececec;
  background: #f8f8f8;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  width: auto;
}

.alergen:last-child {
  border: 1px #ececec solid;
}

.alergen.active:last-child {
  border-radius: 25px;
  border: 1px #000 solid;
}

.mobile-filter-btn {
/*  display: none; */
  width: auto;
}

span.stars {
    display: inline;
    color: #ffce0c;
}

.product-rating {
  text-align: left;
}

 .hd-ln {
    background: none;
    padding: 0;
    min-height: auto;
  }

  .headline-container {
    min-height: 160px;
  }

  .body-bgimage {
    background-image: url('../images/cukraren.webp');
    background-size: cover;
    background-position: center;
  }


header, .search-overlay {
    height:100px;
}

h1, h2, h3, h4 {
  font-family: Outfit, Inter, 'Neue Frutiger', 'Ambit-Bold', Gotham-Medium, Garnett-Semibold, 'Poppins';
}

.paginate div {
  padding: 0.7%;
}


.cart-remove {
   font-size: 1.5rem;
}

.cart-container, .builder-container {
  margin: 40px 10%;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.cart-progress-box {
  width: 50%;
  margin: 0;
}


.cart-coupon {
  width: 50%;
  margin: 0;
}

.cart-bottom {
  flex-wrap: nowrap;
}

.infocart {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 2%;
  box-sizing: border-box;
  border-radius: 8px;
}

.cart-summary-block {
  width: 30%;
}

.cart-thumb {
  width: 80px;
  height: 80px;
  vertical-align: middle;
  border-radius: 7px;
  margin: 0 2% 0 0;
  object-fit: cover;
  box-sizing: border-box;
}

.products-menu {
    top:100px !important;
}

div.pading {
  padding: 0 3% 0 0;
}

h1 {
    font-size: 40px;
}

.no-pc-logo {
    width: 150px !important;
}

.top-box {
    margin: 0;
    padding: 0;
    width: 80%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }

.top-box img {
//    display: none;
  }

  .top-box img {
//    width: 90px;
    padding: 0px;
}



.hamburger, .back-btn { display: none !important; }

  header {
    justify-content: center;
    gap: 40px;
  }

  .main-menu {
    position: static;
    display: block;
    height: auto;
    padding: 0;
    overflow: visible;
    border: none;
  }

  .main-menu ul {
    display: flex;
    justify-content: start;
    gap: 30px;
    padding: 0;
    margin: 0;
  }

  .products-menu {
    display: none;
    position: absolute;
    height: auto;
    background: #fff;
    top: 80px;
    border-bottom: 1px solid #eee;
    margin: 0%;
    width: 100%;
    padding: 0px 0px;
  }

  .products-menu ul {
    flex-direction: column;
    padding: 0px;
  }

.all-group-menu {
    margin: 4% 20%;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.group-menu a {10.95rem;
}

.products-menu.open { display: block; }

/* OVERLAY SEARCH */
.search-overlay {
  padding: 0 15px 0 20%;
}

.search-results {
  top:100px;
}

.search-results.visible {
  margin: 0 20%;
  width: 60%;
}

.headline-box {
  margin: 0% 0% 0% 0%;
  padding: 0% 0px 0% 10%;
  height: 100%;
  width:50%;
}

.headline-box h1 {
  font-size: 3rem;
  font-weight: 600;
  margin: 0;
}

.headline-box h2 {
  font-size: 2.3rem;
  font-weight: 600;
  margin: 0;
}

.products-inbox {
  grid-template-columns: repeat(4, 1fr); /* 3 stĺpce na PC */
  margin: 0% 10%;
  gap: 35px; /* medzery medzi položkami */
  background: white;
  padding: 2%;
  box-sizing: border-box;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.box-button-next {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0% 10%;
  box-sizing: border-box;
  padding: 1% 0;
}

.control-products, .control-cart {
  margin: 0% 0 0 0;
}

.control-box {
  margin: 0% 10%;
}

.qty-controls {
  flex-wrap: no-wrap;
  justify-content: left;
}


.label-news {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  margin: 0;
}

.sale-box {
  justify-content: left;
  margin: 0%;
}

.nostroke {
  padding: 2% 0;
}

.product {
    padding: 0;
}

.product-name {
  padding: 0% 0;
  text-align: left;
}

.avaiable, .unavaiable, .temp-unavailable, .made-to-order {
  text-align: left;
}


.control-box-cart {
  margin: 0 10%;
}

.control-box-cart div {
  width: 100%;
}

.footer {
    padding: 70px 10% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}


}
