.prdct-container { max-width: 1200px; margin: auto; padding: 20px; display: flex; flex-wrap: wrap; gap: 20px; }
.prdct-gallery { flex: 1; min-width: 250px; max-width: 850px; width: 100%; }
.prdct-gallery img { width: 100%; height: auto; border-radius: 8px; }
.prdct-zoom-icon {
  position: relative;
  bottom: 35px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 14px;
  pointer-events: none;
}
.prdct-thumbs-nav { position: relative; display: flex; align-items: center; margin-top: 10px; }
.prdct-thumbs-arrow { width: 30px; height: 60px; background: #eee; border: none; cursor: pointer; font-size: 18px; }
.prdct-thumbs-wrapper { overflow: hidden; flex: 1; }
.prdct-thumbs { display: flex; transition: transform 0.3s ease; gap: 5px; }
.prdct-thumbs img { width: 60px; height: 60px; object-fit: cover; cursor: pointer; border-radius: 5px; border: 2px solid transparent; flex-shrink: 0; }
.prdct-thumbs img.prdct-active { border-color: black; }

.prdct-details { flex: 1; min-width: 250px; max-width: 428px; width: 100%; }
.prdct-product-title { font-size: 20px; font-weight: bold; line-height: 1.3; }
.prdct-stars { color: #ff9900; font-size: 16px; margin: 10px 0; }
.prdct-stars .prdct-reviews { color: #000; font-weight: normal; margin-left: 8px; }
.prdct-price { font-size: 26px; color: #f65402;line-height: 1;}
.prdct-old-price { text-decoration: line-through; color: gray; font-size: 18px; }
.prdct-save-tag { background: #333;
  color: white;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 4px;
  font-weight: bold;
  vertical-align: middle;
  white-space: nowrap;
}
.prdct-save-section{display:inline;}
.prdct-qty { margin: 15px 0; display: flex; align-items: center; gap: 10px; }
.prdct-qty button { width: 30px; height: 30px; font-size: 18px; cursor: pointer; background: #fff; border: 1px solid #333; }
.prdct-add-cart, .prdct-buy-now { width: 100%; padding: 12px; margin: 10px 0; border: none; font-size: 16px; cursor: pointer; }
.prdct-add-cart { background: white; border: 1px solid black; }
.prdct-buy-now { background: black; color: white; font-weight: bold; }

.prdct-fbt {}
.prdct-fbt h3 { font-size: 18px; }
.prdct-fbt-item { display: flex; align-items: center; gap: 10px; margin: 10px 0; padding: 10px 5px; }
.prdct-fbt-item img { width: 50px; height: 50px; object-fit: cover; border-radius: 5px; }
.prdct-desc-toggle { border-top: 1px solid #ccc; }
.prdct-toggle-header { border-bottom: 1px solid #ccc; cursor: pointer; font-weight: bold; display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.prdct-toggle-header span { transition: transform 0.3s ease; display: inline-block; }
.prdct-toggle-header.prdct-open span::before { content: '\25C0'; }
.prdct-toggle-header span::before { content: '\25BC'; }
.prdct-toggle-content { display: none; padding: 10px 0; }

@media(max-width: 768px) {
  .prdct-container { flex-direction: column; }
}
@media (min-width: 429px) and (max-width: 767px) {
  .prdct-details { max-width: 768px; }
}