/* ============================================
   DECK&CO — PRODUCT PAGE (PDP) STYLES
   Depends on homepage.css for design-system tokens,
   header/footer, buttons, reveals, etc.
   ============================================ */

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb__list a {
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

.breadcrumb__list a:hover { color: var(--forest); }
.breadcrumb__sep { font-size: 10px; opacity: 0.5; }
.breadcrumb__current { color: var(--charcoal); font-weight: 500; }

/* ========================================
   PRODUCT HERO — GALLERY + INFO
   ======================================== */

.pdp-hero {
  padding: clamp(40px, 5vw, 72px) 0 var(--section-pad);
}

.pdp-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

/* Gallery */
.pdp-gallery {
  position: sticky;
  top: 100px;
}

.pdp-gallery__main {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  cursor: zoom-in;
  margin-bottom: 12px;
}

.pdp-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 40px;
  transition: transform 0.5s var(--ease-out);
}

.pdp-gallery__main:hover .pdp-gallery__main-img {
  transform: scale(1.06);
}

.pdp-gallery__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--forest);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  z-index: 2;
}

.pdp-gallery__badge--sale {
  background: var(--sand);
  color: var(--forest-dark);
}

.pdp-gallery__zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.pdp-gallery__main:hover .pdp-gallery__zoom-hint { opacity: 1; }

.pdp-gallery__zoom-hint svg { width: 16px; height: 16px; }

.pdp-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.pdp-gallery__thumb {
  aspect-ratio: 1/1;
  background: var(--card-bg);
  border: 2px solid transparent;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s var(--ease);
  padding: 0;
}

.pdp-gallery__thumb.active { border-color: var(--forest); }
.pdp-gallery__thumb:hover { border-color: var(--sand); }

.pdp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

/* Product Info */
.pdp-info { padding-top: 8px; }

.pdp-info__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.pdp-info__brand a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.pdp-info__brand a:hover {
  color: var(--forest);
}

.pdp-info__brand-line {
  width: 24px;
  height: 1px;
  background: var(--sand);
}

.pdp-info__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.pdp-info__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pdp-info__sku {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.pdp-info__collection-link {
  font-size: 12px;
  color: var(--forest);
  font-weight: 500;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 1px;
  transition: opacity 0.3s var(--ease);
}

.pdp-info__collection-link:hover { opacity: 0.7; }

.pdp-info__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--sand);
  letter-spacing: 1px;
}

.pdp-info__rating-count {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

.pdp-info hr.pdp-divider,
hr.pdp-divider {
  border: none !important;
  height: 1px !important;
  background: var(--border) !important;
  margin: 24px 0 !important;
  display: block !important;
  opacity: 1 !important;
}

.pdp-info__price-block {
  margin-bottom: 8px;
}

.pdp-info__price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pdp-info__price-original {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 12px;
}

.pdp-info__affirm {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.pdp-info__affirm strong {
  color: var(--charcoal);
  font-weight: 600;
}

.pdp-info__short-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin-bottom: 24px;
}

/* Highlights strip */
.pdp-highlights {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.pdp-highlight {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal-soft);
  background: var(--card-bg);
  border-right: 1px solid var(--border);
}

.pdp-highlight:last-child { border-right: none; }

.pdp-highlight svg {
  width: 18px;
  height: 18px;
  color: var(--forest);
  flex-shrink: 0;
}

/* Quantity + Buttons */
.pdp-info__actions { margin-bottom: 28px; }

.pdp-info__qty-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 12px;
}

.pdp-qty {
  display: flex !important;
  align-items: center;
  border: 1.5px solid var(--border) !important;
  border-radius: 2px !important;
  overflow: hidden;
  flex-shrink: 0;
}

.pdp-qty__btn,
button.pdp-qty__btn {
  width: 48px !important;
  height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  color: var(--charcoal-soft) !important;
  transition: all 0.2s var(--ease);
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 0 !important;
  min-width: auto !important;
}

.pdp-qty__btn:hover {
  background: var(--sand-pale);
  color: var(--charcoal);
}

.pdp-qty__input {
  width: 52px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--charcoal);
  background: none;
  outline: none;
  -moz-appearance: textfield;
}

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

.pdp-info__add-to-cart,
button.pdp-info__add-to-cart,
.pdp-info .pdp-info__add-to-cart {
  flex: 1;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  background: var(--forest) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0 32px !important;
  height: 52px !important;
  border: none !important;
  border-radius: 2px !important;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  line-height: 1 !important;
}

.pdp-info__add-to-cart:hover,
button.pdp-info__add-to-cart:hover { background: var(--forest-dark) !important; }

.pdp-info__add-to-cart svg {
  width: 18px;
  height: 18px;
}

.pdp-info__buy-now,
a.pdp-info__buy-now,
.pdp-info .pdp-info__buy-now {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  background: transparent !important;
  color: var(--charcoal) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  border: 1.5px solid var(--charcoal) !important;
  border-radius: 2px !important;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none !important;
}

.pdp-info__buy-now:hover,
a.pdp-info__buy-now:hover {
  background: var(--charcoal) !important;
  color: #fff !important;
}

/* WooCommerce variable product form override */
.pdp-info__variations .variations {
  width: 100%;
  margin-bottom: 20px;
}

.pdp-info__variations .variations td {
  display: block;
  padding: 0 0 12px;
}

.pdp-info__variations .variations td.label label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
  display: block;
}

.pdp-info__variations .variations select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--warm-white);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='%237A7A7A' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.pdp-info__variations .single_variation_wrap .woocommerce-variation-price {
  margin-bottom: 16px;
}

.pdp-info__variations .woocommerce-variation-add-to-cart {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.pdp-info__variations .woocommerce-variation-add-to-cart .quantity {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 2px;
}

.pdp-info__variations .woocommerce-variation-add-to-cart .quantity input {
  width: 52px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  color: var(--charcoal);
  background: none;
  outline: none;
  height: 52px;
}

.pdp-info__variations .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 32px;
  height: 52px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.pdp-info__variations .woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
  background: var(--forest-dark);
}

/* Trust row */
.pdp-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pdp-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 8px;
  gap: 8px;
  text-align: center;
  position: relative;
}

.pdp-trust__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--border);
}

.pdp-trust__icon {
  width: 24px;
  height: 24px;
  color: var(--forest);
}

.pdp-trust__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--charcoal-soft);
  line-height: 1.4;
}

/* ========================================
   PRODUCT DETAILS — ACCORDION
   ======================================== */

.pdp-details {
  padding: var(--section-pad-sm) 0 var(--section-pad);
  border-top: 1px solid var(--border);
}

.pdp-details__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.pdp-details__eyebrow {
  margin-bottom: 20px;
}

.pdp-details__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.pdp-details__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--charcoal-soft);
  margin-bottom: 16px;
}

.pdp-details__features {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-details__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--charcoal-soft);
  font-size: 14px;
  font-weight: 400;
}

.pdp-details__features li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--sand);
  flex-shrink: 0;
}

.pdp-accordion {
  border-top: 1px solid var(--border) !important;
}

.pdp-accordion__item {
  border-bottom: 1px solid var(--border) !important;
}

.pdp-accordion__trigger,
button.pdp-accordion__trigger {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: left !important;
  width: 100% !important;
  padding: 22px 0 !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--charcoal) !important;
  background: none !important;
  border: none !important;
  cursor: pointer;
  transition: color 0.3s var(--ease);
  min-width: auto !important;
  line-height: 1.4 !important;
}

.pdp-accordion__trigger:hover,
button.pdp-accordion__trigger:hover { color: var(--forest) !important; }

.pdp-accordion__icon {
  width: 20px !important;
  height: 20px !important;
  color: var(--muted) !important;
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
}

.pdp-accordion__item.open .pdp-accordion__icon {
  transform: rotate(45deg);
}

.pdp-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.pdp-accordion__item.open .pdp-accordion__content {
  max-height: 800px;
}

.pdp-accordion__body {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal-soft);
}

.pdp-accordion__body p { margin-bottom: 12px; }
.pdp-accordion__body p:last-child { margin-bottom: 0; }

/* Specs table */
.pdp-specs {
  width: 100% !important;
  border-collapse: collapse !important;
}

.pdp-specs tr { border-bottom: 1px solid var(--border) !important; }
.pdp-specs tr:last-child { border-bottom: none !important; }

.pdp-specs td {
  padding: 14px 0 !important;
  font-size: 14px !important;
  vertical-align: top !important;
  text-align: left !important;
  border: none !important;
}

.pdp-specs td:first-child {
  font-weight: 600 !important;
  color: var(--charcoal) !important;
  width: 180px !important;
  padding-right: 24px !important;
}

.pdp-specs td:last-child { color: var(--charcoal-soft) !important; }

/* ========================================
   CRAFTSMANSHIP — EDITORIAL SECTION
   ======================================== */

.pdp-craft {
  padding: var(--section-pad) 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.pdp-craft::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.pdp-craft::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
  pointer-events: none;
}

.pdp-craft__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.pdp-craft__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
  background: var(--forest-dark);
}

.pdp-craft__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-craft__image-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.pdp-craft__image::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  pointer-events: none;
}

.pdp-craft__text .eyebrow { margin-bottom: 20px; }

.pdp-craft__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}

.pdp-craft__title em {
  font-style: italic;
  color: var(--sand-light);
}

.pdp-craft__body {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 12px;
}

.pdp-craft__features {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdp-craft__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 400;
}

.pdp-craft__features li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--sand);
  flex-shrink: 0;
}

.pdp-craft__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 8px;
}

.pdp-craft__stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 4px;
}

.pdp-craft__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

/* ========================================
   SET INCLUDES
   ======================================== */

.pdp-set {
  padding: var(--section-pad) 0;
  background: var(--sand-pale);
}

.pdp-set__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.pdp-set__header .eyebrow { margin-bottom: 16px; }

.pdp-set__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 1060px;
  margin: 0 auto;
}

.pdp-set__item {
  text-align: center;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: clamp(24px, 3vw, 40px);
  transition: box-shadow 0.4s var(--ease);
}

.pdp-set__item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.pdp-set__item-img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  margin: 0 auto 24px;
  border-radius: 3px;
  background: var(--card-bg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.pdp-set__item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.pdp-set__item-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--forest);
  opacity: 0.6;
}

.pdp-set__item-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.pdp-set__item-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.pdp-set__item-name a:hover { color: var(--forest); }

.pdp-set__item-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pdp-set__item-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(58,78,57,0.08);
  padding: 5px 18px;
  border-radius: 100px;
}

/* ========================================
   CONSULTATION CTA
   ======================================== */

.pdp-consult {
  padding: var(--section-pad-sm) 0;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pdp-consult__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.pdp-consult__text { flex: 1; }

.pdp-consult__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.pdp-consult__body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.pdp-consult__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.pdp-consult__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.pdp-consult__phone svg {
  width: 18px;
  height: 18px;
  color: var(--forest);
}

/* ========================================
   RELATED / COLLECTION PRODUCTS
   ======================================== */

.pdp-related {
  padding: var(--section-pad) 0;
}

.pdp-related__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.pdp-related__header-left .eyebrow { margin-bottom: 12px; }

.pdp-related__header .section-heading {
  font-size: clamp(28px, 3.5vw, 44px);
}

.pdp-related__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
  flex-shrink: 0;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--forest);
}

.pdp-related__link:hover { gap: 10px; }
.pdp-related__link svg { width: 14px; height: 14px; }

.pdp-related__scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.pdp-related--alt { background: var(--sand-pale); }

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.lightbox.active { opacity: 1; pointer-events: auto; }

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s var(--ease);
  background: none;
  border: none;
}

.lightbox__close:hover { color: #fff; }
.lightbox__close svg { width: 28px; height: 28px; }

.lightbox__img-wrap {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.active .lightbox__img { transform: scale(1); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  background: none;
  border: none;
}

.lightbox__nav:hover { color: #fff; background: rgba(255,255,255,0.1); }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

/* ========================================
   STICKY ADD TO CART BAR
   ======================================== */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.sticky-bar.visible { transform: translateY(0); }

.sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sticky-bar__info {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.sticky-bar__thumb {
  width: 48px;
  height: 48px;
  border-radius: 3px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  flex-shrink: 0;
  overflow: hidden;
}

.sticky-bar__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.sticky-bar__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-bar__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  flex-shrink: 0;
}

.sticky-bar__btn,
a.sticky-bar__btn,
.sticky-bar .sticky-bar__btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  background: var(--forest) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  border: none !important;
  border-radius: 2px !important;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none !important;
}

.sticky-bar__btn:hover,
a.sticky-bar__btn:hover { background: var(--forest-dark) !important; color: #fff !important; }
.sticky-bar__btn svg { width: 16px; height: 16px; color: #fff !important; }

/* ========================================
   RESPONSIVE — 1024px
   ======================================== */

@media (max-width: 1024px) {
  .pdp-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .pdp-gallery { position: static; }

  .pdp-details__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .pdp-craft__inner { gap: 40px; }

  .pdp-related__scroll {
    grid-template-columns: repeat(3, 1fr);
  }

  .pdp-consult__inner { gap: 32px; }
}

/* ========================================
   RESPONSIVE — 768px
   ======================================== */

@media (max-width: 768px) {
  .pdp-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pdp-hero { padding-top: clamp(24px, 4vw, 40px); }
  .pdp-gallery { position: static; }
  .pdp-gallery__main { aspect-ratio: 4/3; }
  .pdp-gallery__main-img { padding: 24px; }
  .pdp-gallery__thumbs { gap: 6px; }
  .pdp-info__title { font-size: clamp(26px, 6vw, 34px); }
  .pdp-info__price { font-size: 30px; }

  .pdp-highlights {
    flex-direction: column;
  }

  .pdp-highlight {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
  }

  .pdp-highlight:last-child { border-bottom: none; }

  .pdp-trust { grid-template-columns: repeat(2, 1fr); }
  .pdp-trust__item:nth-child(2)::after { display: none; }

  .pdp-trust__item:nth-child(1),
  .pdp-trust__item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .pdp-details__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pdp-details__heading { font-size: clamp(24px, 6vw, 32px); }

  .pdp-craft__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pdp-craft__image {
    aspect-ratio: 16/9;
    order: -1;
  }

  .pdp-craft__title { font-size: clamp(26px, 6vw, 36px); }
  .pdp-craft__stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pdp-craft__stat-number { font-size: 28px; }
  .pdp-craft__stat-label { font-size: 11px; }

  .pdp-set__grid { gap: 12px; }
  .pdp-set__item { padding: 20px 16px; }
  .pdp-set__item-name { font-size: 18px; }
  .pdp-set__item-desc { font-size: 12px; }
  .pdp-set__item-icon { width: 48px; height: 48px; margin-bottom: 14px; }
  .pdp-set__item-img { aspect-ratio: 1/1; margin-bottom: 14px; }

  .pdp-consult__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .pdp-consult__actions {
    flex-direction: column;
    gap: 12px;
  }

  .pdp-related__scroll {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pdp-related__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .sticky-bar__title { display: none; }
  .sticky-bar__inner { gap: 12px; }
  .sticky-bar__btn { padding: 12px 20px; font-size: 12px; }

  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

/* ========================================
   RESPONSIVE — 480px
   ======================================== */

@media (max-width: 480px) {
  .pdp-gallery__thumbs { grid-template-columns: repeat(4, 1fr); }

  .pdp-info__qty-row {
    flex-direction: column;
  }

  .pdp-info__add-to-cart {
    width: 100%;
    height: 52px;
  }

  .pdp-set__grid { grid-template-columns: 1fr; }

  .pdp-trust { grid-template-columns: 1fr 1fr; }
  .pdp-trust__label { font-size: 10px; }
  .pdp-trust__icon { width: 20px; height: 20px; }

  .pdp-craft__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .pdp-craft__stat-number { font-size: 24px; }

  .sticky-bar__thumb { display: none; }
}
