@charset "UTF-8";


:root {
  --product-accent: rgb(11,94,215);
  --product-accent-soft: rgba(11,94,215,0.08);
  --product-border: rgb(226,229,234);
  --product-muted: rgb(108,117,125);
  --product-bg-soft: rgb(245,245,247);
}

/* Kill horizontal scroll on this page */
html,
body { overflow-x: hidden; }

html.product-lightbox-open,
html.product-lightbox-open body { overflow: hidden; }


.product-page-main { padding: 32px 0 48px; }

.breadcrumbs { font-size: 0.85rem; margin-bottom: 10px; color: var(--product-muted); }
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs i { font-size: 0.75rem; margin: 0 6px; opacity: 0.65; }

.product-hero-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.product-hero-pill {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(15,23,42,0.04);
  color: rgb(17,24,39);
}
.product-hero-pill--soft { background: rgba(15,23,42,0.06); color: rgb(17,24,39); }

.product-title {
  font-weight: 700; letter-spacing: 0.01em;
  margin-bottom: 6px;
  font-size: clamp(2.0rem, 2.8vw, 2.4rem);
}
.product-subtitle { font-size: 0.9rem; color: var(--product-muted); margin-bottom: 18px; }
.product-main-row { margin-top: 20px; }

.product-price-wrap { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.product-price { font-size: 2rem; font-weight: 700; }
.product-price--contact { font-size: 1.1rem; font-weight: 600; }

.product-meta-inline {
  display: flex; flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 0.8rem;
  color: var(--product-muted);
  margin-bottom: 10px;
}
.product-meta-inline span { white-space: nowrap; }
.product-meta-inline strong { color: rgb(17,24,39); }

/* STOCK / LOCATION */
.product-stock-row {
  display: flex; flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.product-stock-status {
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(148,163,184,0.12);
  color: rgb(30,64,175);
}
.product-stock-status--in { background: rgba(22,163,74,0.10); color: rgb(21,128,61); }
.product-stock-status--out { background: rgba(239,68,68,0.10); color: rgb(185,28,28); }

.product-stock-location { color: var(--product-muted); }
.product-stock-location i { margin-right: 6px; opacity: 0.75; }

/* =========================
   CLEAN, BIG GALLERY
   ========================= */
.product-gallery { background: transparent; border-radius: 0; padding: 0; box-shadow: none; max-width: 100%; }
.product-gallery-shell { display: block; }
.product-gallery-main { margin-bottom: 12px; }

.product-gallery-main-inner {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: rgb(255,255,255);
}
.product-gallery-main-inner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  cursor: zoom-in;
}
.product-gallery-main-inner img[tabindex="0"]:focus {
  outline: 2px solid rgba(11,94,215,0.45);
  outline-offset: 2px;
}

/* In-page gallery controls */
.product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: rgb(17,24,39);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: none; /* shown via JS only when multiple images exist */
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(15,23,42,0.10);
}
.product-gallery-prev { left: 10px; }
.product-gallery-next { right: 10px; }
.product-gallery-nav:hover { background: rgba(255,255,255,1); }

.product-gallery-counter {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(15,23,42,0.65);
  color: rgb(249,250,251);
  display: none; /* shown via JS only when multiple images exist */
}

.product-gallery-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: 0;
  background: rgba(15,23,42,0.65);
  color: rgb(249,250,251);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.product-gallery-zoom:hover { background: rgba(15,23,42,0.82); }

/* thumbs */
.product-gallery-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.product-gallery-thumbs img {
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
  border-radius: 12px;
  border: 1px solid var(--product-border);
  padding: 2px;
  object-fit: cover;
  display: block;
  scroll-snap-align: start;
}
.product-gallery-thumbs img:hover {
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--product-accent);
}
.product-gallery-thumbs img.is-active {
  border-color: var(--product-accent);
  box-shadow: 0 0 0 2px var(--product-accent-soft);
}
.product-gallery-thumbs img:focus {
  outline: 2px solid rgba(11,94,215,0.45);
  outline-offset: 2px;
}

/* SUMMARY CARD */
.product-summary-col { position: relative; }

.product-purchase-card {
  background: rgb(255,255,255);
  border-radius: 20px;
  padding: 20px 20px 24px;
  box-shadow: 0 6px 24px rgba(15,23,42,0.08);
  border: 1px solid var(--product-border);
  max-width: 100%;
}

.product-options {
  border-top: 1px solid var(--product-border);
  padding-top: 16px;
  margin-top: 8px;
}

.product-option { margin-bottom: 16px; }

.product-option-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgb(17,24,39);
}

.product-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.product-option-value {
  font-size: 0.85rem;
  color: rgb(17,24,39);
  font-weight: 500;
}

.product-swatch-list { display: flex; flex-wrap: wrap; gap: 8px; }

.img-thumbnail {
  display: block;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid var(--product-border);
  padding: 3px;
  box-shadow: none;
  margin: 0;
}
.img-thumbnail.selected,
.img-thumbnail.js-color-swatch.is-active {
  border-color: var(--product-accent);
  box-shadow: 0 0 0 2px var(--product-accent-soft);
}
.img-thumbnail:hover { border-color: var(--product-accent); }

.product-select-wrap,
.select-wrap { position: relative; }

.product-select-wrap select,
.select-wrap select { width: 100%; }

.product-select-wrap::after,
.select-wrap::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 5px 0;
  border-style: solid;
  border-color: rgb(108,117,125) transparent transparent;
  pointer-events: none;
}

/* CTA / CART IFRAME (stabilize sizing) */
.product-cta-frame { width: 100%; }
.product-cta-frame iframe {
  width: 100%;
  border: 0;
  display: block;
  min-height: 220px; /* fallback if resize can't run */
}

/* Parent page toast (optional; can be triggered from iframe) */
.product-cart-toast {
  display: none;
  margin: 0 0 12px;
}

/* Quote CTA message */
.product-quote-inline-note {
  font-size: 12px;
  color: var(--product-muted);
  margin-top: 10px;
  margin-bottom: 0;
}

/* =========================
   TABS + DESCRIPTION
   ========================= */
.product-detail-band {
  background: rgb(248,250,252);
  border-top: 1px solid var(--product-border);
  border-bottom: 1px solid var(--product-border);
}

.product-detail-bar { font-size: 0.8rem; color: var(--product-muted); }

.product-meta-grid { padding: 16px 0; }
.product-meta-item { text-align: center; padding: 10px 12px; }

.product-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--product-muted);
}

.product-meta-value {
  font-weight: 600;
  margin-top: 4px;
  font-size: 0.9rem;
}

.product-detail-shell { padding: 32px 0 48px; }

.product-detail-card {
  background: rgb(255,255,255);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(15,23,42,0.06);
  padding: 24px 20px 28px;
}

.product-tabs-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--product-border);
  margin-bottom: 20px;
}

.product-tab {
  border: 0;
  background: transparent;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--product-muted);
  position: relative;
  cursor: pointer;
}

.product-tab::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 2px;
  background: transparent;
}

.product-tab.is-active { color: rgb(17,24,39); }
.product-tab.is-active::after { background: var(--product-accent); }

.product-tab-panel {
  display: none;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgb(17,24,39);
}

.product-tab-panel.is-active { display: block; }

/* FIX: padding/spacing for bullet lists inside tabs (screenshot issue) */
.product-tab-panel ul,
.product-tab-panel ol {
  padding-left: 22px;
  margin: 12px 0 14px;
}
.product-tab-panel li { margin-bottom: 6px; }
.product-tab-panel h2,
.product-tab-panel h3 { margin-top: 18px; margin-bottom: 10px; }

/* =========================
   LIGHTBOX (prettied + indicators)
   ========================= */
.product-lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.22s ease;
}
.product-lightbox.is-active { opacity: 1; pointer-events: auto; }

.product-lightbox-backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,0.90);
}

.product-lightbox-inner {
  position: relative;
  z-index: 1;
  padding: 16px;
  max-width: 100vw;
  max-height: 96vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.product-lightbox-header {
  width: 100%;
  max-width: min(1200px, 98vw);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  color: rgba(249,250,251,0.92);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.product-lightbox-count {
  font-weight: 700;
  margin-right: 10px;
}

.product-lightbox-caption {
  opacity: 0.9;
}

.product-lightbox-image-wrap {
  max-width: min(1200px, 98vw);
  max-height: 82vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}

.product-lightbox-image {
  display: block;
  max-width: 100%;
  height: auto;
  transition: transform 0.28s ease;
  cursor: zoom-in;
}

.product-lightbox-image.is-zoomed {
  transform: scale(1.6);
  cursor: zoom-out;
}

.product-lightbox-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: rgba(15,23,42,0.78);
  color: rgb(249,250,251);
  font-size: 22px;
  line-height: 1;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  cursor: pointer;
}

.product-lightbox-close:hover { background: rgba(15,23,42,0.95); }

.product-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(15,23,42,0.72);
  color: rgb(249,250,251);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-lightbox-prev { left: 12px; }
.product-lightbox-next { right: 12px; }
.product-lightbox-nav:hover { background: rgba(15,23,42,0.95); }

/* Indicators (dots) */
.product-lightbox-indicators {
  display: none; /* enabled via JS when multiple images exist */
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding-top: 6px;
  max-width: min(1200px, 98vw);
  flex-wrap: wrap;
}

.product-lightbox-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(249,250,251,0.65);
  background: rgba(249,250,251,0.18);
  padding: 0;
  cursor: pointer;
}

.product-lightbox-dot.is-active {
  background: rgba(249,250,251,0.88);
  border-color: rgba(249,250,251,0.95);
}

.product-lightbox-dot:focus {
  outline: 2px solid rgba(249,250,251,0.55);
  outline-offset: 2px;
}

/* =========================
   QUOTE MODAL (Bootstrap 3)
   ========================= */
.product-quote-modal .modal-content {
  border-radius: 18px;
  border: 1px solid var(--product-border);
  box-shadow: 0 18px 55px rgba(15,23,42,0.20);
  overflow: hidden;
}

.product-quote-modal .modal-header {
  background: rgb(248,250,252);
  border-bottom: 1px solid var(--product-border);
}

.product-quote-modal .modal-title {
  font-weight: 700;
}

.product-quote-modal .modal-body {
  padding: 18px 18px 16px;
}

.product-quote-modal .help-block {
  margin-top: 6px;
  margin-bottom: 0;
  color: var(--product-muted);
  font-size: 12px;
}

.product-quote-captcha-wrap {
  margin-top: 6px;
  margin-bottom: 10px;
}

.product-quote-captcha-note {
  font-size: 12px;
  color: var(--product-muted);
  margin-top: 6px;
}

/* RESPONSIVE LAYOUT */
@media (min-width: 992px) {
  .product-main-row {
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
  }
  .product-gallery-col { flex: 1.4 1 0; min-width: 0; }
  .product-summary-col {
    flex: 0.8 1 0;
    min-width: 280px;
    display: flex;
    justify-content: flex-end;
  }
  .product-summary-col .product-purchase-card {
    position: sticky;
    top: 120px;
    max-width: 420px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .product-page-main { padding: 24px 10px 32px; }
  .product-purchase-card { margin-top: 18px; }
  .product-lightbox-image-wrap { max-height: 78vh; }
}

/* =========================
   ADD-TO-CART CONFIRMATION MODAL (UI only)
   Scoped to .le-atc-*
   ========================= */
html.le-atc-open,
html.le-atc-open body { overflow: hidden; }

.le-atc-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.le-atc-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.le-atc-backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,0.60);
  backdrop-filter: blur(2px);
}

.le-atc-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  background: rgb(255,255,255);
  border-radius: 20px;
  border: 1px solid var(--product-border);
  box-shadow: 0 22px 60px rgba(15,23,42,0.28);
  overflow: hidden;
  transform: translateY(10px);
  transition: transform 0.18s ease;
}

.le-atc-modal.is-active .le-atc-dialog {
  transform: translateY(0);
}

.le-atc-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px 10px;
  background: rgb(248,250,252);
  border-bottom: 1px solid var(--product-border);
}

.le-atc-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,163,74,0.12);
  color: rgb(21,128,61);
  flex: 0 0 auto;
  margin-top: 2px;
}

.le-atc-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0;
  color: rgb(17,24,39);
}

.le-atc-subtitle {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--product-muted);
  line-height: 1.35;
}

.le-atc-body {
  padding: 14px 18px 18px;
}

.le-atc-meta {
  margin-top: 2px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: rgb(17,24,39);
}

.le-atc-meta .le-atc-product {
  font-weight: 700;
}

.le-atc-meta .le-atc-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--product-muted);
}

.le-atc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.le-atc-actions .btn {
  flex: 1 1 200px;
  border-radius: 12px;
  padding-left: 14px;
  padding-right: 14px;
}

.le-atc-actions .btn.btn-primary {
  background: var(--product-accent);
  border-color: var(--product-accent);
}

.le-atc-actions .btn.btn-primary:hover {
  background: rgb(10,80,180);
  border-color: rgb(10,80,180);
}

.le-atc-actions .btn.btn-default {
  border-color: var(--product-border);
}

.le-atc-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: rgba(15,23,42,0.08);
  color: rgb(17,24,39);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.le-atc-close:hover { background: rgba(15,23,42,0.14); }

.le-atc-dialog :focus {
  outline: 2px solid rgba(11,94,215,0.45);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .le-atc-header { padding: 14px 14px 10px; }
  .le-atc-body { padding: 12px 14px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .le-atc-modal,
  .le-atc-dialog { transition: none; }
  .le-atc-dialog { transform: none; }
}

.product-shipping-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08); /* subtle green */
  color: rgb(21, 128, 61);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
}

.product-shipping-badge i {
  font-size: 0.9rem;
}
