/* ══════════════════════════════════════════════════════════════
   Jabeenz — Single Product Page Styles
   BEM naming with .jbz- prefix
   ══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────
   Layout — Two-Column (55/45)
   ────────────────────────────────────── */
.jbz-single-product {
  padding-bottom: 0;
  overflow-x: hidden;
}

.jbz-single-product__layout {
  position: relative;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--jbz-space-12);
  align-items: start;
  padding-top: var(--jbz-space-3);
}

/* ──────────────────────────────────────
   Gallery — Left Column
   ────────────────────────────────────── */
.jbz-single-product__gallery {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: row-reverse;
}

.jbz-single-product__gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--jbz-radius-lg);
  background: var(--jbz-grey-100);
  aspect-ratio: 4 / 5;
  max-height: 78vh;
  cursor: zoom-in;
  flex: 1;
  min-width: 0;
  animation: jbz-gallery-entrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes jbz-gallery-entrance {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jbz-single-product__gallery-main--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.jbz-single-product__gallery-main--placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jbz-single-product__gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.jbz-single-product__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--jbz-transition-slow), opacity 0.15s ease;
}

.jbz-single-product__main-img.jbz-fade-out {
  opacity: 0;
}

.jbz-single-product__gallery-main:hover .jbz-single-product__main-img {
  transform: scale(1.05);
}

.jbz-single-product__gallery-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--jbz-radius-lg);
  box-shadow: inset 0 0 0 0 rgba(201, 168, 76, 0);
  transition: box-shadow 0.4s ease;
  pointer-events: none;
}

.jbz-single-product__gallery-main:hover::after {
  box-shadow: inset 0 0 0 3px rgba(201, 168, 76, 0.35);
}

/* Thumbnails */
.jbz-single-product__gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--jbz-grey-300) transparent;
  padding-right: 2px;
  max-height: 78vh;
  width: 80px;
  flex-shrink: 0;
}

.jbz-single-product__gallery-thumbs::-webkit-scrollbar {
  width: 3px;
}

.jbz-single-product__gallery-thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.jbz-single-product__gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--jbz-grey-300);
  border-radius: var(--jbz-radius-full);
}

.jbz-single-product__thumb {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--jbz-radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  scroll-snap-align: start;
  transition:
    border-color 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
  background: var(--jbz-grey-100);
  padding: 0;
}

.jbz-single-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jbz-single-product__thumb:hover {
  border-color: #C9A84C;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.15);
}

.jbz-single-product__thumb--active {
  border-color: #C9A84C;
  box-shadow: 0 2px 6px rgba(201, 168, 76, 0.2);
}

.jbz-single-product__thumb--active:hover {
  border-color: #C9A84C;
}

/* Video thumbnail */
.jbz-single-product__thumb--video {
  position: relative;
  overflow: hidden;
}

.jbz-single-product__thumb--video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jbz-single-product__thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--jbz-white);
  transition: all 0.2s ease;
}

.jbz-single-product__thumb-play::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease;
}

.jbz-single-product__thumb--video:hover .jbz-single-product__thumb-play::before {
  background: rgba(201, 168, 76, 0.85);
  border-color: var(--jbz-white);
  transform: scale(1.1);
}

.jbz-single-product__thumb-play svg {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin-left: 2px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.jbz-single-product__thumb--video.jbz-single-product__thumb--active {
  border-color: var(--jbz-gold);
}

/* Video embed in main gallery area */
.jbz-single-product__video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--jbz-radius-lg);
  z-index: 2;
  background: #000;
}

/* ── Gallery Arrow Navigation ── */
.jbz-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #1A1A2E;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.2s ease, background 0.2s ease;
  padding: 0;
}

.jbz-single-product__gallery-main:hover .jbz-gallery-arrow {
  opacity: 1;
}

.jbz-gallery-arrow--prev { left: 12px; }
.jbz-gallery-arrow--next { right: 12px; }

.jbz-gallery-arrow:hover {
  background: #1A1A2E;
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.jbz-gallery-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.jbz-gallery-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(26, 26, 46, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.jbz-single-product__gallery-main:hover .jbz-gallery-counter {
  opacity: 1;
}

/* ── Zoom / Magnifier ── */
.jbz-zoom-lens {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 2px solid var(--jbz-secondary);
  background: rgba(245, 166, 35, 0.08);
  pointer-events: none;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.15s ease;
}

.jbz-single-product__gallery-main.is-zooming .jbz-zoom-lens {
  opacity: 1;
}

.jbz-zoom-result {
  display: none;
  position: absolute;
  top: 0;
  left: calc(55% + var(--jbz-space-4));
  width: 45%;
  height: 0;
  padding-bottom: 56.25%;
  min-height: 500px;
  max-height: 78vh;
  background-repeat: no-repeat;
  background-color: var(--jbz-white);
  border: 1px solid var(--jbz-grey-200);
  border-radius: var(--jbz-radius-lg);
  box-shadow: var(--jbz-shadow-xl);
  z-index: 50;
  pointer-events: none;
  overflow: hidden;
}

.jbz-zoom-result.is-active {
  display: block;
}

@media (max-width: 1024px) {
  .jbz-zoom-lens,
  .jbz-zoom-result {
    display: none !important;
  }
}

/* ── Lightbox Modal ── */
.jbz-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jbz-lightbox[hidden] {
  display: none;
}

.jbz-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.jbz-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.jbz-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.jbz-lightbox__layout {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 24px;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
}

.jbz-lightbox__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 0;
}

.jbz-lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
  animation: jbz-lb-fade 0.25s ease;
}

@keyframes jbz-lb-fade {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.jbz-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.jbz-lightbox__arrow:hover {
  background: rgba(201, 168, 76, 0.6);
  transform: translateY(-50%) scale(1.08);
}

.jbz-lightbox__arrow--prev { left: 16px; }
.jbz-lightbox__arrow--next { right: 16px; }

.jbz-lightbox__thumbs {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: 85vh;
  padding: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, 0.4) transparent;
}

.jbz-lightbox__thumbs::-webkit-scrollbar { width: 4px; }
.jbz-lightbox__thumbs::-webkit-scrollbar-track { background: transparent; }
.jbz-lightbox__thumbs::-webkit-scrollbar-thumb { background: rgba(201, 168, 76, 0.4); border-radius: 4px; }

.jbz-lightbox__thumb {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
}

.jbz-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jbz-lightbox__thumb:hover {
  border-color: rgba(201, 168, 76, 0.5);
}

.jbz-lightbox__thumb--active {
  border-color: #C9A84C;
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.3);
}

/* Badges overlay on gallery */
.jbz-badges--single {
  position: absolute;
  top: var(--jbz-space-4);
  left: var(--jbz-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--jbz-space-2);
  z-index: var(--jbz-z-dropdown);
}

/* ──────────────────────────────────────
   Details — Right Column
   ────────────────────────────────────── */
.jbz-single-product__details {
  display: flex;
  flex-direction: column;
  gap: var(--jbz-space-6);
  position: sticky;
  top: 100px;
  align-self: start;
}

/* Title */
.jbz-single-product__title {
  font-family: var(--jbz-font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: var(--jbz-line-height-heading);
  color: var(--jbz-dark);
  margin: 0;
}

/* ──────────────────────────────────────
   Price — Mode-Aware
   ────────────────────────────────────── */
.jbz-single-product__price {
  margin: 0;
}

.jbz-single-product__price--enquire {
  font-family: var(--jbz-font-heading);
  font-style: italic;
  font-size: var(--jbz-font-size-xl);
  color: var(--jbz-grey-700);
}

.jbz-single-product__price--buy,
.jbz-single-product__price--both {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--jbz-space-2);
}

.jbz-single-product__price-from {
  font-size: var(--jbz-font-size-sm);
  color: var(--jbz-grey-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.jbz-single-product__price-amount {
  font-family: var(--jbz-font-heading);
  font-size: var(--jbz-font-size-3xl);
  font-weight: 700;
  color: var(--jbz-dark);
}

.jbz-single-product__price-amount del {
  color: var(--jbz-grey-500);
  font-weight: 400;
  font-size: var(--jbz-font-size-xl);
  text-decoration: line-through;
}

.jbz-single-product__price-amount ins {
  color: var(--jbz-primary);
  text-decoration: none;
}

.jbz-single-product__price-badge {
  margin-left: var(--jbz-space-2);
}

.jbz-single-product__price-note {
  width: 100%;
  font-size: var(--jbz-font-size-xs);
  color: var(--jbz-grey-500);
  margin-top: var(--jbz-space-1);
}

/* ──────────────────────────────────────
   Taxonomies — Category & Occasion
   ────────────────────────────────────── */
.jbz-single-product__taxonomies {
  display: flex;
  flex-wrap: wrap;
  gap: var(--jbz-space-3);
  font-size: var(--jbz-font-size-sm);
}

.jbz-single-product__taxonomies a {
  color: var(--jbz-secondary);
  text-decoration: none;
  transition: color var(--jbz-transition-fast);
}

.jbz-single-product__taxonomies a:hover {
  color: var(--jbz-secondary-hover);
  text-decoration: underline;
}

.jbz-single-product__category,
.jbz-single-product__occasion {
  color: var(--jbz-grey-700);
}

/* ──────────────────────────────────────
   Specs — Fabric, Embroidery, Weight
   ────────────────────────────────────── */
.jbz-single-product__specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--jbz-space-4);
  padding: var(--jbz-space-5);
  background: var(--jbz-grey-100);
  border-radius: var(--jbz-radius-md);
}

.jbz-single-product__spec {
  display: flex;
  flex-direction: column;
  gap: var(--jbz-space-1);
}

.jbz-single-product__spec-label {
  font-size: var(--jbz-font-size-xs);
  color: var(--jbz-grey-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.jbz-single-product__spec-value {
  font-size: var(--jbz-font-size-sm);
  color: var(--jbz-dark);
  font-weight: 500;
}

/* ──────────────────────────────────────
   Short Description / Excerpt
   ────────────────────────────────────── */
.jbz-single-product__excerpt {
  font-size: var(--jbz-font-size-base);
  line-height: var(--jbz-line-height-body);
  color: var(--jbz-grey-700);
}

.jbz-single-product__excerpt p:last-child {
  margin-bottom: 0;
}

/* ──────────────────────────────────────
   Customisation Note
   ────────────────────────────────────── */
.jbz-single-product__customisation {
  display: flex;
  gap: var(--jbz-space-3);
  padding: var(--jbz-space-4);
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border-radius: var(--jbz-radius-md);
  border-left: 3px solid var(--jbz-secondary);
}

.jbz-single-product__customisation-icon {
  flex-shrink: 0;
  color: var(--jbz-secondary-hover);
  margin-top: 2px;
}

.jbz-single-product__customisation p {
  margin: 0;
  font-size: var(--jbz-font-size-sm);
  color: #78350F;
  line-height: var(--jbz-line-height-body);
}

/* ──────────────────────────────────────
   Dupatta Info
   ────────────────────────────────────── */
.jbz-single-product__dupatta {
  padding: var(--jbz-space-3) var(--jbz-space-4);
  background: var(--jbz-light);
  border-radius: var(--jbz-radius-md);
  border: 1px solid rgba(229, 45, 39, 0.1);
}

.jbz-single-product__dupatta-label {
  display: inline-flex;
  align-items: center;
  gap: var(--jbz-space-2);
  font-weight: 600;
  font-size: var(--jbz-font-size-sm);
  color: var(--jbz-primary);
}

.jbz-single-product__dupatta-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--jbz-primary);
  border-radius: var(--jbz-radius-full);
}

.jbz-single-product__dupatta-desc {
  margin: var(--jbz-space-2) 0 0;
  font-size: var(--jbz-font-size-sm);
  color: var(--jbz-grey-700);
  line-height: var(--jbz-line-height-body);
}

/* ──────────────────────────────────────
   CTA — Dual Mode Buttons
   ────────────────────────────────────── */
.jbz-single-product__cta {
  display: flex;
  flex-direction: column;
  gap: var(--jbz-space-4);
}

.jbz-single-product__cta .jbz-btn--lg {
  width: 100%;
  justify-content: center;
  padding: var(--jbz-space-5) var(--jbz-space-8);
  font-size: var(--jbz-font-size-lg);
}

.jbz-single-product__cta--buy,
.jbz-single-product__cta--both {
  gap: var(--jbz-space-4);
}

/* Enquire alt CTA */
.jbz-single-product__enquire-alt {
  text-align: center;
  font-size: var(--jbz-font-size-sm);
  color: var(--jbz-grey-500);
  margin: 0;
}

.jbz-single-product__enquire-alt a {
  color: var(--jbz-whatsapp);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--jbz-transition-fast);
}

.jbz-single-product__enquire-alt a:hover {
  color: var(--jbz-whatsapp-hover);
  text-decoration: underline;
}

/* Lead Time */
.jbz-single-product__lead-time {
  display: flex;
  align-items: center;
  gap: var(--jbz-space-2);
  font-size: var(--jbz-font-size-sm);
  color: var(--jbz-grey-500);
  margin: 0;
}

.jbz-single-product__lead-time svg {
  flex-shrink: 0;
  color: var(--jbz-secondary);
}

/* ──────────────────────────────────────
   Quantity Input
   ────────────────────────────────────── */
.jbz-quantity {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--jbz-grey-200);
  border-radius: var(--jbz-radius-md);
  overflow: hidden;
  transition: border-color var(--jbz-transition-fast);
}

.jbz-quantity:focus-within {
  border-color: var(--jbz-primary);
}

.jbz-quantity__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--jbz-grey-100);
  border: none;
  cursor: pointer;
  color: var(--jbz-dark);
  transition:
    background var(--jbz-transition-fast),
    color var(--jbz-transition-fast);
  padding: 0;
}

.jbz-quantity__btn:hover:not(:disabled) {
  background: var(--jbz-grey-200);
}

.jbz-quantity__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.jbz-quantity__input {
  width: 52px;
  height: 44px;
  border: none;
  text-align: center;
  font-family: var(--jbz-font-body);
  font-size: var(--jbz-font-size-base);
  font-weight: 600;
  color: var(--jbz-dark);
  background: var(--jbz-white);
  -moz-appearance: textfield;
}

.jbz-quantity__input::-webkit-outer-spin-button,
.jbz-quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.jbz-quantity__input:focus {
  border-color: var(--jbz-primary);
  box-shadow: 0 0 0 2px rgba(229, 45, 39, 0.15);
}

.jbz-quantity__input:focus:not(:focus-visible) {
  outline: none;
}

.jbz-quantity--fixed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--jbz-space-2) var(--jbz-space-4);
  font-weight: 600;
  color: var(--jbz-grey-700);
}

/* ──────────────────────────────────────
   Trust Badges
   ────────────────────────────────────── */
.jbz-trust-badges,
.jbz-single-product__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #FDFBF7 0%, #FDF8F0 100%);
  border-radius: 10px;
  border: 1px solid #f0ebe0;
}

.jbz-trust-badges__item,
.jbz-single-product__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jbz-trust-badges__item:hover,
.jbz-single-product__trust-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.12);
}

.jbz-trust-badges__item svg,
.jbz-single-product__trust-item svg {
  flex-shrink: 0;
  color: #C9A84C;
  width: 18px;
  height: 18px;
}

.jbz-trust-badges__item--link {
  text-decoration: none;
  color: #374151;
  cursor: pointer;
  border-color: rgba(201, 168, 76, 0.3);
}

.jbz-trust-badges__item--link:hover {
  border-color: #C9A84C;
  color: #C9A84C;
}

/* ──────────────────────────────────────
   Social Sharing
   ────────────────────────────────────── */
.jbz-single-product__share {
  display: flex;
  align-items: center;
  gap: var(--jbz-space-4);
  padding-top: var(--jbz-space-4);
  border-top: 1px solid var(--jbz-grey-200);
}

.jbz-single-product__share-label {
  font-size: var(--jbz-font-size-sm);
  color: var(--jbz-grey-500);
  font-weight: 500;
}

.jbz-single-product__share-buttons {
  display: flex;
  gap: var(--jbz-space-2);
}

.jbz-single-product__share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--jbz-radius-full);
  border: 1px solid var(--jbz-grey-200);
  background: var(--jbz-white);
  color: var(--jbz-grey-700);
  cursor: pointer;
  transition:
    background var(--jbz-transition-fast),
    color var(--jbz-transition-fast),
    border-color var(--jbz-transition-fast),
    transform var(--jbz-transition-fast);
  text-decoration: none;
  padding: 0;
}

.jbz-single-product__share-btn:hover {
  transform: translateY(-2px);
}

.jbz-single-product__share-btn--whatsapp:hover {
  background: var(--jbz-whatsapp);
  color: var(--jbz-white);
  border-color: var(--jbz-whatsapp);
}

.jbz-single-product__share-btn--pinterest:hover {
  background: #E60023;
  color: var(--jbz-white);
  border-color: #E60023;
}

.jbz-single-product__share-btn--facebook:hover {
  background: #1877F2;
  color: var(--jbz-white);
  border-color: #1877F2;
}

.jbz-single-product__share-btn--copy:hover {
  background: var(--jbz-dark);
  color: var(--jbz-white);
  border-color: var(--jbz-dark);
}

.jbz-single-product__share-btn--copied {
  background: var(--jbz-whatsapp) !important;
  color: var(--jbz-white) !important;
  border-color: var(--jbz-whatsapp) !important;
}

/* ──────────────────────────────────────
   Meta
   ────────────────────────────────────── */
.jbz-single-product__meta {
  display: flex;
  flex-direction: column;
  gap: var(--jbz-space-2);
  font-size: var(--jbz-font-size-sm);
  padding-top: var(--jbz-space-4);
  border-top: 1px solid var(--jbz-grey-200);
}

.jbz-single-product__meta-row {
  display: flex;
  gap: var(--jbz-space-2);
  line-height: 1.6;
}

.jbz-single-product__meta-label {
  color: var(--jbz-grey-500);
  flex-shrink: 0;
  font-weight: 500;
}

.jbz-single-product__meta-value {
  color: var(--jbz-grey-700);
}

.jbz-single-product__meta-value a {
  color: var(--jbz-secondary);
  text-decoration: none;
  transition: color var(--jbz-transition-fast);
}

.jbz-single-product__meta-value a:hover {
  color: var(--jbz-secondary-hover);
  text-decoration: underline;
}

/* Occasion dots */
.jbz-single-product__occasion-link {
  display: inline-flex;
  align-items: center;
  gap: var(--jbz-space-1);
}

.jbz-single-product__occasion-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: var(--jbz-radius-full);
  flex-shrink: 0;
}

/* ──────────────────────────────────────
   Product Tabs (Desktop) / Accordion (Mobile)
   ────────────────────────────────────── */
.jbz-tabs {
  margin-top: 48px;
}

/* Desktop tab navigation */
.jbz-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--jbz-grey-200);
  margin-bottom: 36px;
}

.jbz-tabs__tab {
  padding: 16px 28px;
  font-family: var(--jbz-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--jbz-grey-500);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
}

.jbz-tabs__tab:hover {
  color: #1A1A2E;
}

.jbz-tabs__tab--active {
  color: #C9A84C;
  border-bottom-color: #C9A84C;
}

/* Mobile accordion triggers — hidden on desktop */
.jbz-tabs__accordion-trigger {
  display: none;
}

/* Tab panels */
.jbz-tabs__panel {
  display: none;
}

.jbz-tabs__panel--active {
  display: block;
}

.jbz-tabs__panel[hidden] {
  display: none;
}

.jbz-tabs__panel-inner {
  font-size: 15px;
  line-height: 1.9;
  color: #4b5563;
  padding: 44px 48px;
  background: #FDFBF7;
  border-radius: 14px;
  border: 1px solid #f0ebe0;
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.04);
  animation: jbz-panel-fade 0.35s ease;
}

@keyframes jbz-panel-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.jbz-tabs__panel-inner h2 {
  font-family: var(--jbz-font-heading, 'Playfair Display', serif);
  font-size: 26px;
  font-weight: 700;
  color: #1A1A2E;
  margin: 0 0 28px 0;
  padding-bottom: 18px;
  border-bottom: 2px solid #C9A84C;
  line-height: 1.3;
}

.jbz-tabs__panel-inner h3 {
  font-family: var(--jbz-font-heading, 'Playfair Display', serif);
  font-size: 19px;
  font-weight: 700;
  color: #1A1A2E;
  margin: 44px 0 14px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.jbz-tabs__panel-inner h2 + h3,
.jbz-tabs__panel-inner h2 + p + h3 {
  border-top: none;
  margin-top: 36px;
  padding-top: 0;
}

.jbz-tabs__panel-inner h3::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: #C9A84C;
  margin-right: 10px;
  vertical-align: middle;
}

.jbz-tabs__panel-inner p {
  margin: 0 0 18px 0;
}

.jbz-tabs__panel-inner p:last-child {
  margin-bottom: 0;
}

.jbz-tabs__panel-inner h2 + p {
  margin-top: 4px;
}

.jbz-tabs__panel-inner h3 + p {
  margin-top: 4px;
}

.jbz-tabs__panel-inner h4 {
  font-family: var(--jbz-font-heading, 'Playfair Display', serif);
  font-size: 18px;
  font-weight: 700;
  color: #1A1A2E;
  margin: 28px 0 12px 0;
}

.jbz-tabs__panel-inner ul,
.jbz-tabs__panel-inner ol {
  display: block !important;
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 0 24px 0;
}

.jbz-tabs__panel-inner li {
  display: block !important;
  position: relative;
  padding-left: 28px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 0;
  list-style: none !important;
  list-style-type: none !important;
}

.jbz-tabs__panel-inner li p {
  margin: 0;
  padding: 0;
}

.jbz-tabs__panel-inner li::before {
  content: '' !important;
  position: absolute;
  left: 4px;
  top: 12px;
  width: 7px;
  height: 7px;
  background: #C9A84C;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.jbz-tabs__panel-inner li::marker {
  content: none !important;
  font-size: 0 !important;
}

.jbz-tabs__panel-inner p > em:only-child,
.jbz-tabs__panel-inner > em {
  display: block;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.025);
  border-left: 3px solid #C9A84C;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
}

.jbz-tabs__panel-inner strong {
  color: #1A1A2E;
  font-weight: 600;
}

.jbz-tabs__panel-inner a {
  color: var(--jbz-whatsapp);
  font-weight: 600;
  text-decoration: none;
}

.jbz-tabs__panel-inner a:hover {
  text-decoration: underline;
}

/* Fabric tab specific */
.jbz-tab-fabric__row {
  display: flex;
  justify-content: space-between;
  padding: var(--jbz-space-3) 0;
  border-bottom: 1px solid var(--jbz-grey-200);
}

.jbz-tab-fabric__row:last-of-type {
  border-bottom: none;
}

.jbz-tab-fabric__label {
  color: var(--jbz-grey-500);
  font-weight: 500;
}

.jbz-tab-fabric__value {
  color: var(--jbz-dark);
  font-weight: 600;
}

.jbz-tab-fabric__care {
  margin-top: var(--jbz-space-6);
  padding-top: var(--jbz-space-4);
  border-top: 1px solid var(--jbz-grey-200);
}

/* Delivery tab specific */
.jbz-tab-delivery__row--highlight {
  display: flex;
  gap: var(--jbz-space-3);
  padding: var(--jbz-space-4);
  background: var(--jbz-light);
  border-radius: var(--jbz-radius-md);
  border-left: 3px solid var(--jbz-secondary);
  margin-bottom: var(--jbz-space-6);
}

.jbz-tab-delivery__row--highlight svg {
  flex-shrink: 0;
  color: var(--jbz-secondary);
  margin-top: 2px;
}

.jbz-tab-delivery__row--highlight strong {
  color: var(--jbz-dark);
}

.jbz-tab-delivery__row--highlight p {
  margin: var(--jbz-space-1) 0 0;
}

.jbz-tab-delivery__policy-link {
  margin-top: var(--jbz-space-4);
}

.jbz-tab-delivery__policy-link a {
  color: var(--jbz-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--jbz-transition-fast);
}

.jbz-tab-delivery__policy-link a:hover {
  color: var(--jbz-dark);
}

.jbz-tab-delivery__custom-note {
  margin-top: var(--jbz-space-4);
  padding: var(--jbz-space-3) var(--jbz-space-4);
  background: #FEF3C7;
  border-radius: var(--jbz-radius-md);
  font-size: var(--jbz-font-size-sm);
}

.jbz-tab-delivery__custom-note p {
  margin: 0;
  color: #92400E;
}

/* Styling tab */
.jbz-tab-styling__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--jbz-space-4);
}

.jbz-tab-styling__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--jbz-radius-md);
  overflow: hidden;
  border: 1px solid var(--jbz-grey-200);
  transition: box-shadow var(--jbz-transition-fast), transform var(--jbz-transition-fast);
}

.jbz-tab-styling__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.jbz-tab-styling__card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.jbz-tab-styling__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--jbz-transition-slow);
}

.jbz-tab-styling__card:hover .jbz-tab-styling__card-img img {
  transform: scale(1.05);
}

.jbz-tab-styling__card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--jbz-grey-100) 0%, var(--jbz-grey-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jbz-tab-styling__card-body {
  padding: var(--jbz-space-3) var(--jbz-space-4);
}

.jbz-tab-styling__card-body h4 {
  font-family: var(--jbz-font-heading);
  font-size: var(--jbz-font-size-base);
  font-weight: 600;
  margin: 0 0 var(--jbz-space-1);
  color: var(--jbz-dark);
  line-height: 1.3;
}

.jbz-tab-styling__card-body p {
  font-size: var(--jbz-font-size-sm);
  color: var(--jbz-grey-500);
  margin: 0;
  line-height: 1.5;
}

.jbz-tab-styling__see-all {
  margin-top: var(--jbz-space-4);
  text-align: right;
}

.jbz-tab-styling__see-all a {
  color: var(--jbz-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--jbz-transition-fast);
}

.jbz-tab-styling__see-all a:hover {
  color: var(--jbz-dark);
}

.jbz-tab-styling__cta {
  margin-top: var(--jbz-space-4);
  padding: var(--jbz-space-3) var(--jbz-space-4);
  background: var(--jbz-grey-100);
  border-radius: var(--jbz-radius-md);
  text-align: center;
  font-size: var(--jbz-font-size-sm);
}

.jbz-tab-styling__cta a {
  color: var(--jbz-secondary);
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .jbz-tab-styling__grid {
    grid-template-columns: 1fr;
    gap: var(--jbz-space-3);
  }

  .jbz-tab-styling__card {
    flex-direction: row;
  }

  .jbz-tab-styling__card-img {
    width: 100px;
    min-height: 80px;
    aspect-ratio: auto;
    flex-shrink: 0;
  }

  .jbz-tab-styling__card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ──────────────────────────────────────
   Product FAQ Tab
   ────────────────────────────────────── */
.jbz-tab-faq__list {
  margin: 0;
}

.jbz-tab-faq__item {
  border-bottom: 1px solid var(--jbz-grey-200);
  padding: var(--jbz-space-4) 0;
}

.jbz-tab-faq__item:last-child {
  border-bottom: none;
}

.jbz-tab-faq__question {
  font-family: var(--jbz-font-heading);
  font-size: var(--jbz-font-size-base);
  font-weight: 600;
  color: var(--jbz-dark);
  margin: 0 0 var(--jbz-space-2);
}

.jbz-tab-faq__answer {
  font-size: var(--jbz-font-size-sm);
  color: var(--jbz-grey-600);
  line-height: 1.6;
  margin: 0;
}

.jbz-tab-faq__answer a {
  color: var(--jbz-secondary);
  text-decoration: none;
  font-weight: 500;
}

.jbz-tab-faq__answer a:hover {
  color: var(--jbz-dark);
}

/* ──────────────────────────────────────
   Size Guide — Trigger + Modal
   ────────────────────────────────────── */
.jbz-size-guide-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--jbz-secondary);
  text-decoration: none;
  font-size: var(--jbz-font-size-sm);
  font-weight: 500;
  padding: 6px 0;
  transition: color var(--jbz-transition-fast);
  cursor: pointer;
}

.jbz-size-guide-trigger:hover {
  color: var(--jbz-dark);
}

.jbz-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--jbz-space-4);
}

.jbz-modal[hidden] {
  display: none;
}

.jbz-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.jbz-modal__content {
  position: relative;
  background: var(--jbz-white);
  border-radius: var(--jbz-radius-lg);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--jbz-space-8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: jbz-modal-enter 0.25s ease-out;
}

@keyframes jbz-modal-enter {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.jbz-modal__close {
  position: absolute;
  top: var(--jbz-space-3);
  right: var(--jbz-space-3);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--jbz-grey-100);
  border: none;
  border-radius: var(--jbz-radius-full);
  font-size: 22px;
  line-height: 1;
  color: var(--jbz-grey-600);
  cursor: pointer;
  transition: background var(--jbz-transition-fast), color var(--jbz-transition-fast);
}

.jbz-modal__close:hover {
  background: var(--jbz-grey-200);
  color: var(--jbz-dark);
}

.jbz-modal__title {
  font-family: var(--jbz-font-heading);
  font-size: var(--jbz-font-size-2xl);
  font-weight: 700;
  color: var(--jbz-dark);
  margin: 0 0 var(--jbz-space-6);
}

.jbz-size-guide__body {
  display: flex;
  gap: var(--jbz-space-6);
  align-items: flex-start;
  margin-bottom: var(--jbz-space-6);
}

.jbz-size-guide__diagram {
  flex-shrink: 0;
  width: 120px;
  max-height: 260px;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.jbz-size-guide__diagram svg {
  width: 100%;
  height: auto;
  max-height: 260px;
  opacity: 0.6;
}

.jbz-size-guide__table-wrap {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  border-radius: var(--jbz-radius-md);
  border: 1px solid var(--jbz-grey-200);
}

.jbz-size-guide__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--jbz-font-size-sm);
  text-align: center;
}

.jbz-size-guide__table th {
  background: var(--jbz-grey-100);
  font-weight: 600;
  color: var(--jbz-dark);
  padding: 10px 12px;
  border-bottom: 2px solid var(--jbz-grey-200);
  white-space: nowrap;
}

.jbz-size-guide__table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--jbz-grey-100);
  color: var(--jbz-grey-600);
}

.jbz-size-guide__table tbody tr:hover {
  background: rgba(201, 168, 76, 0.05);
}

.jbz-size-guide__table td strong {
  color: var(--jbz-dark);
}

.jbz-size-guide__help {
  text-align: center;
  font-size: var(--jbz-font-size-sm);
  color: var(--jbz-grey-500);
  margin: 0;
  padding: var(--jbz-space-4);
  background: var(--jbz-grey-100);
  border-radius: var(--jbz-radius-md);
}

.jbz-size-guide__wa-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #25D366;
  text-decoration: none;
  font-weight: 500;
  margin-left: 4px;
}

.jbz-size-guide__wa-link:hover {
  text-decoration: underline;
}

.jbz-size-guide__wa-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .jbz-modal__content {
    padding: var(--jbz-space-5);
    max-height: 90vh;
  }

  .jbz-modal__title {
    font-size: var(--jbz-font-size-xl);
  }

  .jbz-size-guide__body {
    flex-direction: column;
    align-items: center;
  }

  .jbz-size-guide__diagram {
    width: 100px;
  }

  .jbz-size-guide__table {
    font-size: 12px;
  }

  .jbz-size-guide__table th,
  .jbz-size-guide__table td {
    padding: 8px 6px;
  }
}

/* ──────────────────────────────────────
   Sections — Complete Look & Related
   ────────────────────────────────────── */
.jbz-section {
  padding-top: var(--jbz-space-16);
  padding-bottom: var(--jbz-space-16);
}

.jbz-single-product__tabs.jbz-section {
  padding-top: var(--jbz-space-8);
}

.jbz-section__heading {
  font-family: var(--jbz-font-heading);
  font-size: var(--jbz-font-size-3xl);
  font-weight: 700;
  color: var(--jbz-dark);
  text-align: center;
  margin-bottom: var(--jbz-space-10);
}

.jbz-single-product__related {
  background: var(--jbz-grey-100);
  overflow: hidden;
}

.jbz-single-product__complete-look {
  border-top: 1px solid var(--jbz-grey-200);
}

.jbz-single-product__recently-viewed {
  border-top: 1px solid var(--jbz-grey-200);
}

/* Product Grid */
.jbz-product-grid {
  display: grid;
  gap: var(--jbz-space-6);
}

.jbz-product-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ──────────────────────────────────────
   Breadcrumb (hidden globally — kept in DOM for SEO/schema)
   ────────────────────────────────────── */
.jbz-breadcrumb {
  display: none;
}

.jbz-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--jbz-space-1);
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--jbz-font-size-sm);
}

.jbz-breadcrumb__item {
  white-space: nowrap;
  flex-shrink: 0;
}

.jbz-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--jbz-space-1);
  color: var(--jbz-grey-500);
}

.jbz-breadcrumb__item a {
  color: var(--jbz-grey-500);
  text-decoration: none;
  transition: color var(--jbz-transition-fast);
}

.jbz-breadcrumb__item a:hover {
  color: var(--jbz-secondary);
}

.jbz-breadcrumb__item--current {
  color: var(--jbz-dark);
  font-weight: 500;
}

.jbz-breadcrumb__item a {
  padding: 8px 4px;
  display: inline-flex;
  align-items: center;
}

.jbz-breadcrumb__separator {
  display: flex;
  align-items: center;
  color: var(--jbz-grey-300);
  margin-left: var(--jbz-space-1);
}

/* ──────────────────────────────────────
   Sticky Bar (fixed bottom)
   ────────────────────────────────────── */
.jbz-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--jbz-z-sticky);
  background: var(--jbz-white);
  border-top: 1px solid var(--jbz-grey-200);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform var(--jbz-transition-base),
    opacity var(--jbz-transition-base);
  pointer-events: none;
}

.jbz-sticky-bar--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.jbz-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--jbz-space-3);
  max-width: var(--jbz-container-max, 1320px);
  margin: 0 auto;
  padding: var(--jbz-space-3) var(--jbz-container-padding, 1.5rem);
}

.jbz-sticky-bar__product {
  display: flex;
  align-items: center;
  gap: var(--jbz-space-3);
  min-width: 0;
}

.jbz-sticky-bar__thumb {
  width: 48px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--jbz-radius-sm);
  flex-shrink: 0;
}

.jbz-sticky-bar__name {
  font-family: var(--jbz-font-heading);
  font-size: var(--jbz-font-size-sm);
  font-weight: 600;
  color: var(--jbz-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jbz-sticky-bar__price {
  font-size: var(--jbz-font-size-sm);
  font-weight: 600;
  color: var(--jbz-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.jbz-sticky-bar__actions {
  display: flex;
  align-items: center;
  gap: var(--jbz-space-2);
  flex-shrink: 0;
}

.jbz-sticky-bar__actions .jbz-btn {
  padding: var(--jbz-space-2) var(--jbz-space-5);
  font-size: var(--jbz-font-size-sm);
  white-space: nowrap;
}

.jbz-sticky-bar__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  border-radius: var(--jbz-radius-full);
}

.jbz-sticky-bar__wa-icon {
  width: 20px;
  height: 20px;
}

/* ──────────────────────────────────────
   WooCommerce form.cart overrides
   ────────────────────────────────────── */
.jbz-single-product .cart {
  margin: 0;
  padding: 0;
}

.jbz-single-product .cart .quantity {
  margin: 0;
}

/* ──────────────────────────────────────
   Responsive — Tablet (< 1024px)
   ────────────────────────────────────── */
@media (max-width: 1024px) {
  .jbz-single-product__layout {
    grid-template-columns: 50fr 50fr;
    gap: var(--jbz-space-8);
  }

  .jbz-single-product__title {
    font-size: var(--jbz-font-size-3xl);
  }

  .jbz-product-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ──────────────────────────────────────
   Responsive — Mobile (< 768px)
   ────────────────────────────────────── */
@media (max-width: 768px) {

  .jbz-single-product__layout {
    grid-template-columns: 1fr;
    gap: var(--jbz-space-6);
    padding-top: var(--jbz-space-4);
  }

  .jbz-single-product__gallery {
    position: static;
    flex-direction: column;
    min-width: 0;
    max-width: 100%;
  }

  .jbz-single-product__gallery-thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    width: 100%;
    padding-right: 0;
    padding-bottom: var(--jbz-space-2);
    scroll-snap-type: x mandatory;
  }

  .jbz-single-product__thumb {
    width: 64px;
    aspect-ratio: 3 / 4;
  }

  .jbz-single-product__title {
    font-size: var(--jbz-font-size-2xl);
  }

  .jbz-single-product__price-amount {
    font-size: var(--jbz-font-size-2xl);
  }

  .jbz-single-product__specs {
    grid-template-columns: 1fr 1fr;
  }

  .jbz-trust-badges,
  .jbz-single-product__trust {
    grid-template-columns: 1fr;
  }

  /* Details column — not sticky on mobile, prevent overflow */
  .jbz-single-product__details {
    position: static;
    overflow-wrap: break-word;
    word-wrap: break-word;
    min-width: 0;
    max-width: 100%;
  }

  /* Mobile CTA buttons — full width, centered */
  .jbz-single-product__cta {
    align-items: center;
  }
  .jbz-single-product__cta .jbz-btn--lg {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 16px;
    font-size: 15px;
    box-sizing: border-box;
  }
  .jbz-single-product__enquire-alt {
    text-align: center;
    width: 100%;
  }
  .jbz-single-product__lead-time {
    justify-content: center;
    width: 100%;
  }

  /* Trust badges stack on mobile */
  .jbz-trust-badges,
  .jbz-single-product__trust {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .jbz-trust-badges__item,
  .jbz-single-product__trust-item {
    justify-content: center;
  }

  /* Gallery on mobile — taller ratio, no max-height */
  .jbz-single-product__gallery-main {
    aspect-ratio: 3 / 4;
    max-height: none;
  }

  /* Gallery arrows always visible on mobile (no hover) */
  .jbz-gallery-arrow {
    opacity: 1;
    width: 38px;
    height: 38px;
  }
  .jbz-gallery-counter { opacity: 1; }

  /* Lightbox mobile layout */
  .jbz-lightbox__layout {
    flex-direction: column;
    max-width: 100vw;
    max-height: 100vh;
    gap: 12px;
    padding: 12px;
  }
  .jbz-lightbox__thumbs {
    flex: 0 0 auto;
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    gap: 8px;
  }
  .jbz-lightbox__thumb {
    width: 64px;
    flex: 0 0 64px;
    aspect-ratio: 3/4;
  }
  .jbz-lightbox__arrow {
    width: 42px;
    height: 42px;
  }
  .jbz-lightbox__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  /* ── Tabs → Accordion on mobile ── */
  .jbz-tabs__nav {
    display: none;
  }

  .jbz-tabs__accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--jbz-space-4);
    font-family: var(--jbz-font-body);
    font-size: var(--jbz-font-size-base);
    font-weight: 600;
    color: var(--jbz-dark);
    background: none;
    border: none;
    border-bottom: 1px solid var(--jbz-grey-200);
    cursor: pointer;
    transition: color var(--jbz-transition-fast);
    text-align: left;
  }

  .jbz-tabs__accordion-trigger:hover {
    color: var(--jbz-primary);
  }

  .jbz-tabs__accordion-icon {
    transition: transform var(--jbz-transition-fast);
    flex-shrink: 0;
    color: var(--jbz-grey-500);
  }

  .jbz-tabs__accordion-trigger--active .jbz-tabs__accordion-icon {
    transform: rotate(180deg);
    color: var(--jbz-primary);
  }

  .jbz-tabs__panel {
    display: none;
  }

  .jbz-tabs__panel--active {
    display: block;
    padding: var(--jbz-space-4);
    border-bottom: 1px solid var(--jbz-grey-200);
    animation: jbz-accordion-open 0.3s ease;
  }

  .jbz-tabs__panel-inner {
    padding: 28px 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  .jbz-tabs__panel-inner h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .jbz-tabs__panel-inner h3 {
    font-size: 16px;
    margin-top: 28px;
  }

  .jbz-tabs__panel-inner h4 {
    font-size: 15px;
    margin-top: 20px;
  }

  @keyframes jbz-accordion-open {
    from {
      opacity: 0;
      max-height: 0;
    }
    to {
      opacity: 1;
      max-height: 2000px;
    }
  }

  /* Product grid — 2 columns on mobile */
  .jbz-product-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--jbz-space-4);
    overflow: hidden;
  }

  .jbz-product-grid .jbz-product-card__actions {
    flex-wrap: wrap;
  }

  .jbz-product-grid .jbz-product-card__actions .jbz-btn {
    font-size: 11px;
    padding: 8px 10px;
  }

  /* Sections spacing */
  .jbz-section {
    padding-top: var(--jbz-space-10);
    padding-bottom: var(--jbz-space-10);
  }

  .jbz-section__heading {
    font-size: var(--jbz-font-size-2xl);
    margin-bottom: var(--jbz-space-6);
  }

  /* Sticky bar on mobile above bottom tabs */
  .jbz-sticky-bar {
    bottom: 56px;
  }

  /* Breadcrumb — horizontal scroll on mobile */
  .jbz-breadcrumb {
    padding: var(--jbz-space-2) 16px;
  }

  .jbz-breadcrumb__list {
    font-size: 12px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .jbz-breadcrumb__list::-webkit-scrollbar {
    display: none;
  }

  .jbz-breadcrumb__item--current {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
  }
}

/* ──────────────────────────────────────
   Responsive — Tablet breadcrumb fix (< 1024px)
   ────────────────────────────────────── */
@media (max-width: 1024px) {
  .jbz-breadcrumb__list {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .jbz-breadcrumb__item {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ──────────────────────────────────────
   Responsive — Small Mobile (< 480px)
   ────────────────────────────────────── */
@media (max-width: 480px) {
  .jbz-single-product__share {
    flex-direction: column;
    align-items: flex-start;
  }

  .jbz-single-product__specs {
    grid-template-columns: 1fr;
  }

  .jbz-single-product__title {
    font-size: var(--jbz-font-size-xl);
  }
}

/* ──────────────────────────────────────
   Desktop sticky bar hidden (> 768px)
   ────────────────────────────────────── */
@media (min-width: 769px) {
  .jbz-sticky-bar__product {
    display: flex;
  }
}

/* ──────────────────────────────────────
   Print
   ────────────────────────────────────── */
@media print {
  .jbz-sticky-bar,
  .jbz-single-product__share,
  .jbz-single-product__cta .jbz-btn--whatsapp {
    display: none !important;
  }

  .jbz-single-product__layout {
    grid-template-columns: 1fr 1fr;
  }

  .jbz-single-product__gallery {
    position: static;
  }
}
