/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 12.5px;
  color: #8a8a8a;
}
.breadcrumb a {
  text-decoration: none;
  color: #8a8a8a;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding: 0 6px;
}
.breadcrumb-item.active {
  color: #111;
  font-weight: 500;
}

/* ===== IMAGE ===== */
.pdp-main-img {
  background: #f6f6f6;
  border-radius: 18px;
  height: 540px;
  overflow: hidden;
}
.pdp-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s;
}
.pdp-main-img:hover img {
  transform: scale(1.04);
}

/* ===== THUMB ===== */
.thumbnail {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  opacity: 0.7;
  cursor: pointer;
  border: 2px solid transparent;
}
.thumbnail.active {
  border-color: #111;
  opacity: 1;
}

/* ===== TITLE ===== */
.pdp-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== ICON ===== */
.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== PRICE ===== */
.pdp-price {
  font-size: 16px;
  font-weight: 700;
}
.pdp-price span {
  font-size: 12px;
  color: #777;
}

/* ===== COLOR ===== */
.color-label,
.color-row {
  font-size: 15px;
}
.color-label span,
.color-row span {
  color: #777;
}

/* ===== VARIANT SLIDER ===== */
.variant-slider {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.variant-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 2px;
}
.variant-track::-webkit-scrollbar {
  display: none;
}

.variant-box {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 6px;
}

.variant-card {
  min-width: 78px;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
}
.variant-card img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 2px solid transparent;
  background: #f4f4f4;
}
.variant-card.active img {
  border-color: #111;
}
.variant-card.active .variant-box {
  border: 2px solid #111;
}

.variant-card .new {
  display: block;
  font-size: 10px;
  color: #2a7de1;
}

.variant-label {
  font-size: 12px;
  margin-top: 6px;
}

/* ===== ARROWS ===== */
.arrow {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.arrow.left {
  left: -12px;
}
.arrow.right {
  right: -12px;
}

/* ===== SIZE ===== */
.size-title {
  font-weight: 500;
}
.size-row {
  display: flex;
  gap: 10px;
}
.size-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
}
.size-btn.active {
  background: #111;
  color: #fff;
}

/* ===== SIZE CHART ===== */
.size-chart-btn {
  font-size: 12px;
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 8px;
}

/* ===== SIZE HELP ===== */
.size-help {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555;
}
.size-help span {
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 8px;
  margin-left: 6px;
}

.size-chip {
  border: 1px solid #ddd;
  padding: 4px 10px;
  border-radius: 8px;
  background: #fff;
}

/* ===== QTY ===== */
.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  height: 48px;
  padding: 0 6px;
}
.qty-box button {
  width: 70px;
  border: none;
  background: none;
  font-size: 18px;
  padding-left: 10px;
  padding-right: 10px;
}

/* ===== CTA ===== */
.add-to-bag {
  height: 46px;
  border-radius: 10px;
  font-weight: 500;
  background: linear-gradient(90deg, #3c3c3c, #161616);
  color: #fff;
  border: none;
}

/* ===== NON RETURN ===== */
.non-return {
  font-size: 13px;
  color: #555;
}
.non-return span {
  color: #2a7de1;
}

/* ===== DELIVERY ===== */
.delivery {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 16px;
}

.delivery-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.delivery-row {
  display: flex;
}
.delivery-row input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 10px 0 0 10px;
  padding: 10px;
}
.delivery-row button {
  border: none;
  background: linear-gradient(90deg, #3c3c3c, #161616);
  color: #fff;
  border-radius: 0 10px 10px 0;
  padding: 0 20px;
}

.delivery-info {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.delivery-info div {
  flex: 1;
  border: 1px solid #eee;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  font-size: 12px;
}

.product-description {
  padding: 60px 0;
  background: #fff;
}

/* HEADINGS */
.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* LIST */
.desc-list {
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 30px;
}

/* IDEAL */
.ideal-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.ideal-label {
  font-size: 16px;
  font-weight: 500;
}

.ideal-pills {
  display: flex;
  gap: 16px;
}

.ideal-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
}

.pill-icon {
  width: 26px;
  height: 26px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* WASH BOX */
.wash-box {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 30px;
}

.wash-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.wash-item {
  text-align: center;
  font-size: 13px;
  color: #333;
  width: 120px;
}

.wash-item i {
  font-size: 26px;
  margin-bottom: 10px;
}

/* MANUFACTURE */
.manufacture-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.manufacture-text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.origin {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.origin-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e5e5;
  padding: 6px 12px;
  border-radius: 999px;
}

.origin-pill img {
  width: 40px;
  height: 12px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
  .wash-grid {
    justify-content: center;
  }
  .ideal-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
