/* shop-style.css */

/* CONTAINER UNIQUE */
#lookaa-shop-container .shop-carousel {
  width: 100%;
  margin: 6px auto;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: #ff0000;
  padding: 0px;
}

/* HEADER LIVE SHOPPING / SEE ALL */
#lookaa-shop-container .shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-family: Arial, sans-serif;
}

#lookaa-shop-container .shop-header .title {
  font-weight: bold;
  font-size: 14px;
  color: #fff;
}

#lookaa-shop-container .shop-header .see-all {
  font-size: 14px;
  color: #ff4d4d;
  text-decoration: none;
  font-weight: bold;
}

#lookaa-shop-container .shop-header .see-all i {
  margin-left: 4px;
}

/* TRACK */
#lookaa-shop-container .carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}

/* ITEM */
#lookaa-shop-container .shop-item {
  min-width: 140px;
  margin: 4px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  position: relative; /* Pour badge ZOOM */
}

#lookaa-shop-container .shop-item img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

#lookaa-shop-container .shop-item h4 {
  font-size: 13px;
  margin: 5px 0 3px;
  font-weight: 600;
}

#lookaa-shop-container .price-usd {
  color: #ff4d4d;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.1;
}

#lookaa-shop-container .price-zar {
  font-size: 12px;
  opacity: 0.9;
}

/* BADGE ZOOM */
#lookaa-shop-container .zoom-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(229, 9, 20, 0.85);
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 4px;
  pointer-events: none; 
}

/* BOUTONS CAROUSEL */
#lookaa-shop-container .carousel-btn {
  position: absolute;
  top: 38%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

#lookaa-shop-container .prev { left: 2px; }
#lookaa-shop-container .next { right: 2px; }

/* MODAL */
#lookaa-shop-container .modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lookaa-shop-container .modal-content {
  background: #111;
  padding: 14px;
  border-radius: 12px;
  max-width: 300px;
  text-align: center;
  color: #fff;
}

#lookaa-shop-container .modal-content img {
  width: 100%;
  border-radius: 10px;
}

/* PRIX DANS MODAL */
#lookaa-shop-container .modal .price-usd,
#lookaa-shop-container .modal .price-zar {
  display: block;
  margin: 4px 0;
}

/* BOUTON ACHETER - ROUGE */
#lookaa-shop-container .buy-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 9px 16px;
  background: #e50914;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 22px;
}

.quantity-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.quantity-box button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #25d366;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.quantity-box input {
  width: 50px;
  text-align: center;
  border-radius: 6px;
  border: none;
  font-size: 14px;
}

.total-box {
  margin: 10px 0;
  font-weight: bold;
}

#lookaa-shop-container .close-btn {
  margin-top: 10px;
  background: #ff0000;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.country-choice {
  margin: 15px 0;
  text-align: center;
}

.country-choice label {
  cursor: pointer;
  font-size: 14px;
}