/* Maasai Mini Cart CSS */
.slide-cart {
  position: fixed;
  top: 0;
  right: -100%;
  width: 33%;
  max-width: 500px;
  height: 100vh;
  background: #fff;
  border-left: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  transition: right 0.1s ease;
  z-index: 1050;
  box-sizing: border-box;
}

.slide-cart.active {
  right: 0;
}

/* Header, info i footer sekcije ostaju fiksne */
.slide-cart-header {
  padding: 1rem 2.2rem 0;
  background-color: hsla(24, 28%, 70%, 0.2);
  color: #fff;
  flex-shrink: 0;
}

.slide-cart-info {
  background-color: hsla(24, 28%, 70%, 0.2);
  padding: 0px 15px 30px 15px;
  flex-shrink: 0;
  font-weight: 200;
  text-decoration: underline 3px solid #4b2307;
}

/* Ovaj deo sada skroluje kad ima puno proizvoda */
.slide-cart-content {
  padding: 15px 40px;
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 10px;
  max-height: calc(100vh - 220px); /* header + info + footer visina */

  /* Scrollbar stil */
  scrollbar-width: thin;
  scrollbar-color: #4b2307 #c9af9e;
}

/* Chrome/Edge Scrollbar stil */
.slide-cart-content::-webkit-scrollbar {
  width: 6px;
}

.slide-cart-content::-webkit-scrollbar-track {
  background: #c9af9e;
}

.slide-cart-content::-webkit-scrollbar-thumb {
  background-color: #4b2307;
  border-radius: 10px;
}

.slide-cart-footer {
  padding: 15px 40px;
  background: #f4efeb;
  flex-shrink: 0;
}

.cart-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.cart-item img {
  width: 100px;
  height: 130px !important;
  object-fit: cover;
  border-radius: 0px !important;
}

.cart-item .btn {
  margin-left: auto;
  font-size: 14px;
  line-height: 1;
}

.mini-cart-title {
  font-size: 14px;
}

/* MOBILNI PRIKAZ */
@media (max-width: 768px) {
  .slide-cart {
    width: 100%;
    height: 100vh;
  }

  .slide-cart-header {
    padding: 1rem 1.5rem 0;
  }

  .slide-cart-content {
    padding: 15px 10px;
    max-height: calc(100vh - 220px); /* ostavi prostor za header i footer */
    overflow-y: auto;
  }

  .slide-cart-footer {
    padding: 15px 20px;
  }

  .slide-cart-footer .btn {
    font-size: 18px;
    padding: 12px;
  }

  .cart-item img {
    width: 100px;
  }

  .mini-cart-title {
    font-size: 13px;
    line-height: 18px;
  }
}

/* Spreci scroll pozadine kada je korpa aktivna */
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Mobile Cart Page Styles */
.mobile-cart-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1060;
  overflow-y: auto;
  display: none;
}

.mobile-cart-page.active {
  display: block;
}

.mobile-cart-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-cart-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-cart-content {
  flex: 1;
  overflow-y: auto;
}

.added-product {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 15px;
}

.added-product img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.added-product-info {
  flex: 1;
}

.added-product-info .success-icon {
  color: #28a745;
  margin-right: 5px;
}

.product-card {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.product-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.product-card-body {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 14px;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  font-weight: bold;
  margin-bottom: 10px;
}

.product-card-footer {
  margin-top: auto;
}

.product-card .btn {
  width: 100%;
  font-size: 12px;
  padding: 5px;
}

/* Hide mobile cart page on desktop */
@media (min-width: 769px) {
  .mobile-cart-page {
    display: none !important;
  }
}
