/* ================================
   Luen – kompaktna lista proizvoda
   ================================ */

.menu-products-wrapper {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* 🔹 LEVA STRANA – lista proizvoda */
.menu-products-list {
  flex: 0 0 40%;
  /* max-height: 280px; */
  overflow-y: auto;
  padding-right: 20px;
}

.menu-products-list ul.products {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Svaka stavka jedan red */
.menu-products-list li.product {
  display: flex;
  align-items: center;
  justify-content: space-between; /* ✅ razmak između leve info sekcije i dugmeta */
  gap: 10px;
  padding: 6px 10px;
  border-bottom: 1px solid #eee;
  background: #fff;
  transition: background 0.2s ease;
  cursor: pointer;
  flex-direction: row;
  margin: 0 !important;
}

/* 🛒 Dugme Add to Cart – desno poravnato */
.menu-products-list li.product .button {
  margin-left: auto !important; /* ✅ gura dugme skroz desno */
  background: #f4f0f5;
  color: #391b26;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  padding: 4px 10px;
  text-transform: none;
  transition: all 0.25s ease;
}
.menu-products-list li.product .button:hover {
  background: #a32b91;
  color: #fff;
}





.menu-products-list li.product:hover {
  background: #f9f5fb;
}

/* 🖼️ Mala slika sa bedževima unutra */
.menu-products-list .product-image-wrapper {
  position: relative;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}
.menu-products-list li.product img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  max-width: 100px !important;
  margin: 0 !important;
}

/* 🏷️ Sale badge unutar slike – gore levo */
.menu-products-list .onsale {
  position: absolute;
  top: -4px !important;
  left: -4px !important;
  background: #a79e20;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  top: .5em !important;
  left: .5em !important;
}



/* ❤️ Wishlist ikonica unutar slike – gore desno */
.menu-products-list .tinvwl_add_to_wishlist_button {
  position: absolute;
  top: 5px;
  left: 90px !important;
  font-size: 10px;
  color: #a32b91;
  background: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  transition: color 0.2s ease;
}
.menu-products-list .tinvwl_add_to_wishlist_button:hover {
  color: #391b26;
}
.menu-products-list .tinvwl_add_to_wishlist-text,
.menu-products-list .tinvwl-tooltip {
  display: none !important;
}

/* 📄 Naziv i cena levo od slike */
.menu-products-list .price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-products-list .woocommerce-loop-product__link {
    display: inline-flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 10px !important;
}    

.menu-products-list .price {
  display: flex;
  align-items: center !important;
  gap: 10px;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 10px;
  margin-bottom: 0 !important;
}

.menu-products-list .woocommerce-loop-product__title {
  display: flex !important;
  align-items: center !important;
  font-size: 12px !important;
  font-weight: 600;
  color: #222;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
  margin-left: 10px !important;
}

.menu-products-list .price {
  font-size: 12px;
  font-weight: 600;
  color: #a32b91;
  flex-shrink: 0;
}
.menu-products-list .price del {
  color: #999;
  margin-right: 4px;
  font-weight: 400;
  font-size: 11px;
}

.menu-products-list .woocommerce ul.products li.product .button {
   display: inline-flex;
   justify-content: flex-end;
   margin-left: 20px;
}


/* 🔸 Separator */
.menu-divider {
  width: 1px;
  background: #e0e0e0;
  margin: 0 10px;
  flex-shrink: 0;
}

.menu-products-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* ✅ ključna linija koja omogućava da divider dobije punu visinu */
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}



/* 🔹 DESNA STRANA – preview */
.menu-product-preview {
  flex: 0 0 60%;
  padding: 20px;
  background: #fafafa;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.menu-product-preview .preview-title,
.menu-product-preview .preview-price,
.menu-product-preview .preview-desc {
  text-align: center;
}


.menu-product-preview .preview-img {
  width: 70%;              /* ⬅️ smanjeno sa 90% na 70% */
  max-width: 420px;        /* ⬅️ maksimalna širina slike */
  border-radius: 8px;
  margin-bottom: 12px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;      /* centrira sliku horizontalno */
}

.menu-product-preview .preview-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 2px;
}
.menu-product-preview .preview-sku {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 6px;
}
.menu-product-preview .preview-price {
  font-size: 15px;
  font-weight: 700;
  color: #a32b91;
  display: block;
  margin-bottom: 12px;
}
.menu-product-preview .preview-desc {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 400px;
}
.menu-product-preview .preview-btn {
  display: inline-block;
  background: #a32b91;
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease;
}
.menu-product-preview .preview-btn:hover {
  background: #391b26;
}

/* Efekat pri hoveru */
.menu-products-list li.product.active {
  background: #f3eaf8;
  border-left: 3px solid #a32b91;
}
/* 🔝 Gornji bar unutar Mega Menu prozora */
.menu-topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid #e8e3ec;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Dugme “Pogledaj sve” */
.menu-top-link {
  display: inline-block;
  background: #a32b91;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.menu-top-link:hover {
  background: #391b26;
  text-decoration: none;
}
