body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),
              url('../images/bg/batik.jpg') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  color: #222;
}

.header-toko {
  background-color: #00aaff;
  text-align: center;
  padding: 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-toko h1 {
  margin: 0;
  font-size: 25px;
  color: #fff;
  letter-spacing: 2px;
}

.container {
  max-width: 3300px;
  margin: 40px auto;
  padding: 25px 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.kolom-kiri, .kolom-tengah {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  padding: 20px;
}

.kolom-kiri { flex: 1; }
.kolom-tengah { flex: 2; }

.product-image {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #ddd;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-image:hover { transform: scale(1.03); }

.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.thumbnail-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease, transform 0.3s ease;
}

.thumbnail-gallery img:hover {
  border-color: #000;
  transform: scale(1.05);
}

.title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.price {
  font-size: 24px;
  color: #000;
  font-weight: bold;
  margin-bottom: 20px;
}

.deskripsi-produk {
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.deskripsi-produk h3 {
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.deskripsi-isi ul {
  list-style-type: "✔ ";
  padding-left: 20px;
}

.deskripsi-isi li {
  margin-bottom: 8px;
}

/* === STICKY BOX TOKO === */
.popup-box {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  width: 200px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}

.popup-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.btn-kunjungi {
  background-color: #00aaff;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.btn-kunjungi:hover {
  background-color: #0088cc;
}

.marketplace-icons {
  margin-top: 15px;
  display: none;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.marketplace-icons img {
  width: 90px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.marketplace-icons img:hover {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .thumbnail-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
