.jokam-wrap {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  padding: 0 16px;
}

/* ===== GALLERY ===== */
.jokam-gallery {
  display: flex;
  gap: 16px;
}

.jokam-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jokam-thumbs img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid #ddd;
}

.jokam-thumbs img.active {
  border: 2px solid #000;
}

.jokam-main-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.jokam-main-image img {
  width: 100%;
  transition: transform .3s ease;
}

/* ===== ZOOM (WC STYLE) ===== */
.jokam-main-image:hover img {
  transform: scale(1.5);
  cursor: zoom-in;
}

/* ===== INFO ===== */
.product-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.price {
  font-size: 22px;
  color: #e53935;
  margin-bottom: 20px;
}

.variant label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-list button {
  width: 44px;
  height: 44px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.variant-list button.active {
  border: 2px solid #000;
}

/* ===== CTA ===== */
.btn-add-cart {
  width: 100%;
  height: 48px;
  background: #000;
  color: #fff;
  border: none;
  margin: 20px 0;
  font-size: 16px;
  cursor: pointer;
}

.btn-add-cart:hover {
  background: #333;
}

/* ===== DESC ===== */
.desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .jokam-wrap {
    grid-template-columns: 1fr;
  }
  .jokam-gallery {
    flex-direction: column-reverse;
  }
  .jokam-thumbs {
    flex-direction: row;
  }
}
