* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--hd-font-body);
  color: var(--hd-color-text-body);
  background: var(--hd-color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.omp-wrap {
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 0 32px;
}

.omp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hd-font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hd-color-accent);
}

.omp-eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--hd-color-accent);
  border-radius: 2px;
}

/* ============ PRODUCT TOP SECTION ============ */

.pdp-main {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 56px;
  padding: 20px 0 64px;
}

/* ---------- GALLERY ---------- */
.pdp-gallery { position: sticky; top: 24px; align-self: start; }

.pdp-gallery-stage {
  position: relative;
  border-radius: var(--hd-radius-lg);
  overflow: hidden;
  background: var(--hd-color-surface);
  border: 1px solid var(--hd-color-border);
  box-shadow: var(--hd-shadow-md);
  aspect-ratio: 1 / 1;
}
.pdp-gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--hd-transition-slow), transform 0.3s ease;
}
.pdp-gallery-stage.zoomed img {
  transform: scale(2);
  cursor: zoom-out;
}
.pdp-gallery-stage.zoomed {
  cursor: zoom-out;
}

.pdp-zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hd-color-primary);
  font-size: 14px;
  box-shadow: var(--hd-shadow-sm);
  z-index: 2;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.pdp-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--hd-radius-sm);
  overflow: hidden;
  border: 2px solid var(--hd-color-border);
  background: var(--hd-color-surface);
  transition: border-color var(--hd-transition), transform var(--hd-transition);
  padding: 0;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb:hover { transform: translateY(-2px); border-color: var(--hd-color-border-strong); }
.pdp-thumb.active { border-color: var(--hd-color-accent); box-shadow: 0 0 0 3px var(--hd-color-accent-pale); }

/* Video thumbnail styling */
.pdp-thumb-video { position: relative; }
.pdp-thumb-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  pointer-events: none;
  transition: background var(--hd-transition);
}
.pdp-thumb-video:hover .pdp-thumb-play-icon { background: rgba(0, 0, 0, 0.8); }

/* Video container and player */
.pdp-video-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.pdp-video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-video-play-btn,
.pdp-video-pause-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hd-color-primary);
  font-size: 20px;
  cursor: pointer;
  transition: transform var(--hd-transition), background var(--hd-transition), opacity var(--hd-transition);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}

.pdp-video-container:hover .pdp-video-play-btn,
.pdp-video-container:hover .pdp-video-pause-btn {
  opacity: 1;
  pointer-events: auto;
}

.pdp-video-play-btn:hover,
.pdp-video-pause-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}


/* ---------- BUY BOX ---------- */
.pdp-buybox { padding-top: 4px; }

.pdp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--hd-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--hd-color-primary-light);
  margin-bottom: 12px;
}
.pdp-eyebrow::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--hd-color-accent);
  border-radius: 2px;
}

.pdp-title {
  font-family: var(--hd-font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--hd-color-text-main);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.pdp-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.pdp-rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--hd-color-text-body);
  font-weight: 500;
}
.pdp-rating .stars { color: var(--hd-color-accent); font-size: 13px; letter-spacing: 1px; }
.pdp-rating .stars i { margin-right: 1px; }
.pdp-meta-divider { width: 1px; height: 14px; background: var(--hd-color-border-strong); }
.pdp-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--hd-color-text-muted);
  font-weight: 500;
}
.pdp-meta-item i { color: var(--hd-color-success); font-size: 12px; }

.pdp-short-desc {
  font-size: 15.5px;
  color: var(--hd-color-text-body);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 54ch;
}

.pdp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}
.pdp-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hd-color-primary-mid);
  background: var(--hd-color-accent-pale);
  border: 1px solid var(--hd-color-accent-rule);
  padding: 7px 14px;
  border-radius: var(--hd-radius-pill);
}
.pdp-chip i { color: var(--hd-color-accent); font-size: 11px; }

/* ---------- SWATCHES (material-sample style) ---------- */
.pdp-option-block { margin-bottom: 26px; }
.pdp-option-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.pdp-option-label span:first-child {
  font-family: var(--hd-font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hd-color-text-main);
}
.pdp-option-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--hd-color-accent);
}

.pdp-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pdp-swatch {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: var(--hd-radius-sm);
  border: 1px solid var(--hd-color-border);
  padding: 4px;
  background: var(--hd-color-surface);
  box-shadow: var(--hd-shadow-sm);
  transition: transform var(--hd-transition), box-shadow var(--hd-transition), border-color var(--hd-transition);
}
.pdp-swatch::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 3px;
  background: var(--swatch-color);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.15), inset 0 -1px 1px rgba(255,255,255,0.15);
}
.pdp-swatch:hover { transform: translateY(-3px); box-shadow: var(--hd-shadow-md); }
.pdp-swatch.active {
  border-color: var(--hd-color-accent);
  box-shadow: 0 0 0 3px var(--hd-color-accent-pale), var(--hd-shadow-sm);
}
.pdp-swatch.active::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  z-index: 1;
}
.pdp-swatch-name {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--hd-color-text-muted);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--hd-transition);
  pointer-events: none;
}
.pdp-swatch:hover .pdp-swatch-name,
.pdp-swatch.active .pdp-swatch-name { opacity: 1; color: var(--hd-color-text-muted); }

/* Custom RAL Swatch Button */
.pdp-swatch--custom {
  width: auto;
  height: 56px;
  padding: 0 20px 0 16px;
  border-radius: var(--hd-radius-pill);
  background: var(--hd-color-primary);
  border: 1px solid var(--hd-color-primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hd-color-white);
  font-family: var(--hd-font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--hd-transition), box-shadow var(--hd-transition), background var(--hd-transition), border-color var(--hd-transition);
}
.pdp-swatch--custom::after {
  display: none;
}
.pdp-swatch--custom i {
  font-size: 13px;
  color: var(--hd-color-accent-light);
  transition: transform var(--hd-transition);
}
.pdp-swatch--custom:hover {
  background: var(--hd-color-primary-mid);
  border-color: var(--hd-color-primary-mid);
  transform: translateY(-3px);
  box-shadow: var(--hd-shadow-md);
}

.pdp-swatch--custom.active {
  box-shadow: 0 0 0 3px var(--hd-color-accent-pale), var(--hd-shadow-sm);
}
.pdp-swatch--custom.active::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  z-index: 1;
}
.pdp-swatch--custom .pdp-swatch-name {
  position: static;
  opacity: 1;
  color: var(--hd-color-white);
  transform: none;
  font-size: 13.5px;
  font-weight: 600;
}

/* ---------- Quote  ---------- */

/*
.omp-quote-panel {
  background: var(--hd-color-surface);
  border: 1px solid var(--hd-color-border);
  border-radius: var(--hd-radius-lg);
  padding: 22px 24px;
  box-shadow: var(--hd-shadow-sm);
  margin-bottom: 20px;
}

.omp-quote-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.omp-quote-label {
  font-family: var(--hd-font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--hd-color-text-main);
  display: flex;
  align-items: center;
  gap: 9px;
}

.omp-quote-label i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--hd-color-accent-pale);
  color: var(--hd-color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
}

.omp-quote-note {
  font-size: 12.5px;
  color: var(--hd-color-text-muted);
  padding: 4px 10px;
  background: var(--hd-color-bg-alt);
  border-radius: var(--hd-radius-pill);
  font-weight: 600;
}

.omp-quote-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.omp-quote-meta-item {
  padding: 12px 14px;
  background: var(--hd-color-bg);
  border-radius: var(--hd-radius-md);
  border: 1px solid var(--hd-color-border);
}

.omp-quote-meta-item .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hd-color-text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}

.omp-quote-meta-item .val {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--hd-color-text-main);
}
*/
.pdp-spacer-height {
  height: 20px;
}
/* ---------- CTA BUTTONS ---------- */
.pdp-cta-row { display: flex; gap: 12px; margin-bottom: 22px; }
.pdp-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--hd-font-display);
  font-size: 14.5px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: var(--hd-radius-md);
  transition: transform var(--hd-transition), box-shadow var(--hd-transition), background var(--hd-transition);
}
.pdp-btn-primary {
  background: var(--hd-color-accent);
  color: var(--hd-color-white);
  box-shadow: var(--hd-shadow-sm);
}
.pdp-btn-primary:hover { background: var(--hd-color-accent-light); box-shadow: var(--hd-shadow-md); transform: translateY(-2px); }
.pdp-btn-secondary {
  background: var(--hd-color-surface);
  color: var(--hd-color-primary);
  border: 1.5px solid var(--hd-color-primary);
}
.pdp-btn-secondary:hover { background: var(--hd-color-primary); color: var(--hd-color-white); transform: translateY(-2px); box-shadow: var(--hd-shadow-md); }

.pdp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px dashed var(--hd-color-border);
}
.pdp-trust-item { display: flex; align-items: center; gap: 9px; }
.pdp-trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--hd-color-primary-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hd-color-primary-mid);
  font-size: 13.5px;
  flex-shrink: 0;
}
.pdp-trust-text { display: flex; flex-direction: column; }
.pdp-trust-text span:first-child { font-size: 12.5px; font-weight: 600; color: var(--hd-color-text-main); }
.pdp-trust-text span:last-child { font-size: 11.5px; color: var(--hd-color-text-muted); }




/* ============ SECTION SHELL ============ */
.omp-section {
  padding: 64px 0;
  border-top: 1px solid var(--hd-color-border);
}

.omp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.omp-section-title {
  font-family: var(--hd-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--hd-color-text-main);
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.omp-section-sub {
  font-size: 14.5px;
  color: var(--hd-color-text-muted);
  max-width: 46ch;
  margin-top: 8px;
}

/* ============ SPECIFICATIONS DOSSIER ============ */
.omp-spec-dossier {
  position: relative;
  background: var(--hd-color-surface);
  border: 1px solid var(--hd-color-border);
  border-radius: var(--hd-radius-xl);
  box-shadow: var(--hd-shadow-md);
  overflow: hidden;
}

.omp-spec-header {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 32px;
  background: var(--hd-color-primary);
  flex-wrap: wrap;
}

.omp-spec-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 14px);
}

.omp-spec-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.omp-spec-header-left i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: var(--hd-color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.omp-spec-header-left h3 {
  font-family: var(--hd-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--hd-color-white);
}

.omp-spec-header-left span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  font-weight: 500;
}

.omp-spec-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--hd-radius-pill);
  color: var(--hd-color-accent-light);
  font-size: 12px;
  font-weight: 700;
}

.omp-spec-header-right i { font-size: 8px; color: var(--hd-color-success); }

.omp-spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8px 32px 28px;
}

.omp-spec-row {
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: start;
  gap: 14px;
  padding: 16px 16px 16px 0;
  border-bottom: 1px solid var(--hd-color-border);
}

.omp-spec-table > .omp-spec-row:nth-child(odd) { padding-right: 26px; }
.omp-spec-table > .omp-spec-row:nth-child(even) { padding-left: 26px; border-left: 1px solid var(--hd-color-border); }

.omp-spec-key {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hd-color-text-muted);
  padding-top: 2px;
}

.omp-spec-key i {
  color: var(--hd-color-accent);
  font-size: 12px;
  width: 15px;
  padding-top: 2px;
  flex-shrink: 0;
}

.omp-spec-val {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--hd-color-text-main);
  line-height: 1.5;
}

.omp-spec-val .num {
  font-family: var(--hd-mono);
  font-weight: 600;
  color: var(--hd-color-primary-mid);
  background: var(--hd-color-bg-alt);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
}

.omp-spec-val .tag-mini {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--hd-color-accent);
  background: var(--hd-color-accent-pale);
  padding: 2px 8px;
  border-radius: var(--hd-radius-pill);
  margin-left: 6px;
  vertical-align: middle;
}

.omp-spec-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 32px;
  background: var(--hd-color-bg-alt);
  border-top: 1px solid var(--hd-color-border);
  flex-wrap: wrap;
}

.omp-spec-footer-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--hd-color-text-muted);
}

.omp-spec-footer-note i { color: var(--hd-color-primary-light); font-size: 15px; }

.omp-spec-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--hd-color-primary);
  padding: 10px 18px;
  border-radius: var(--hd-radius-md);
  background: var(--hd-color-surface);
  border: 1px solid var(--hd-color-border-strong);
  transition: border-color var(--hd-transition), color var(--hd-transition);
}

.omp-spec-footer-btn:hover { border-color: var(--hd-color-accent); color: var(--hd-color-accent); }

/* ============ WHY CHOOSE US ============ */
.omp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.omp-why-card {
  background: var(--hd-color-surface);
  border: 1px solid var(--hd-color-border);
  border-radius: var(--hd-radius-lg);
  padding: 28px 24px;
  transition: transform var(--hd-transition), box-shadow var(--hd-transition), border-color var(--hd-transition);
}

.omp-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hd-shadow-lg);
  border-color: transparent;
}

.omp-why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--hd-radius-md);
  background: var(--hd-color-primary);
  color: var(--hd-color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 20px;
}

.omp-why-card h4 {
  font-family: var(--hd-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--hd-color-text-main);
  margin-bottom: 10px;
}

.omp-why-card p {
  font-size: 13.5px;
  color: var(--hd-color-text-muted);
  line-height: 1.65;
}

/* ============ REVIEWS ============ */
.omp-reviews-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
}

.omp-review-summary {
  position: sticky;
  top: 24px;
  align-self: start;
}

.omp-score-big {
  font-family: var(--hd-font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--hd-color-text-main);
  line-height: 1;
}

.omp-score-stars {
  color: var(--hd-color-accent);
  font-size: 16px;
  letter-spacing: 3px;
  margin: 12px 0 6px;
}

.omp-score-count {
  font-size: 13.5px;
  color: var(--hd-color-text-muted);
  margin-bottom: 24px;
}

.omp-bar-row {
  display: grid;
  grid-template-columns: 44px 1fr 30px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12.5px;
  color: var(--hd-color-text-muted);
  font-weight: 600;
}

.omp-bar-track {
  height: 7px;
  background: var(--hd-color-bg-alt);
  border-radius: var(--hd-radius-pill);
  overflow: hidden;
}

.omp-bar-fill {
  height: 100%;
  background: var(--hd-color-accent);
  border-radius: var(--hd-radius-pill);
}

.omp-review-cta {
  margin-top: 24px;
  width: 100%;
}

.omp-review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.omp-review-card {
  background: var(--hd-color-surface);
  border: 1px solid var(--hd-color-border);
  border-radius: var(--hd-radius-lg);
  padding: 24px 26px;
}

.omp-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.omp-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.omp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--hd-color-primary);
  color: var(--hd-color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hd-font-display);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.omp-reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--hd-color-text-main);
  display: flex;
  align-items: center;
  gap: 7px;
}

.omp-reviewer-name i { color: var(--hd-color-success); font-size: 12px; }

.omp-review-stars {
  color: var(--hd-color-accent);
  font-size: 12.5px;
  letter-spacing: 2px;
}

.omp-review-text {
  font-size: 14px;
  color: var(--hd-color-text-body);
  line-height: 1.7;
  margin-bottom: 14px;
}

.omp-load-more {
  margin-top: 8px;
  align-self: center;
}

/* ============ INQUIRY FORM ============ */
.omp-inquiry-section {
  background: var(--hd-color-primary);
  border-radius: var(--hd-radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.omp-inquiry-aside {
  padding: 48px 44px;
  color: var(--hd-color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.omp-inquiry-aside .omp-eyebrow { color: var(--hd-color-accent-light); }

.omp-inquiry-aside .omp-eyebrow::before { background: var(--hd-color-accent-light); }

.omp-inquiry-aside h3 {
  font-family: var(--hd-font-display);
  font-size: 27px;
  font-weight: 700;
  margin: 14px 0 16px;
  line-height: 1.28;
}

.omp-inquiry-aside p {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 28px;
}

.omp-inquiry-points { display: flex; flex-direction: column; gap: 16px; }

.omp-inquiry-point {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.omp-inquiry-point i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.09);
  color: var(--hd-color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.omp-inquiry-form-wrap {
  background: var(--hd-color-surface);
  padding: 44px;
}

.omp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.omp-field { display: flex; flex-direction: column; gap: 7px; }
.omp-field.full { grid-column: 1 / -1; }

.omp-field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--hd-color-text-main);
}

.omp-field label .opt {
  font-weight: 500;
  color: var(--hd-color-text-light);
  text-transform: none;
}

.omp-field input,
.omp-field select,
.omp-field textarea {
  font-family: var(--hd-font-body);
  font-size: 14px;
  color: var(--hd-color-text-main);
  padding: 13px 15px;
  border-radius: var(--hd-radius-md);
  border: 1.5px solid var(--hd-color-border);
  background: var(--hd-color-bg);
  transition: border-color var(--hd-transition), box-shadow var(--hd-transition);
  width: 100%;
}

.omp-field textarea { resize: vertical; min-height: 100px; font-family: inherit; }

.omp-field input:focus,
.omp-field select:focus,
.omp-field textarea:focus {
  outline: none;
  border-color: var(--hd-color-accent);
  box-shadow: 0 0 0 4px var(--hd-color-accent-pale);
  background: var(--hd-color-white);
}

.omp-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B7B6E' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}

.omp-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.omp-form-privacy {
  font-size: 12px;
  color: var(--hd-color-text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: 30ch;
}

.omp-form-privacy i { color: var(--hd-color-primary-light); }

/* Form input styling for inquiry form */
.omp-form__input,
.omp-form__select,
.omp-form__textarea {
  font-family: var(--hd-font-body);
  font-size: 14px;
  color: var(--hd-color-text-main);
  padding: 13px 15px;
  border-radius: var(--hd-radius-md);
  border: 1.5px solid var(--hd-color-border);
  background: var(--hd-color-bg);
  transition: border-color var(--hd-transition), box-shadow var(--hd-transition);
  width: 100%;
}

.omp-form__textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.omp-form__input[readonly] {
  background: var(--hd-color-bg-alt);
  color: var(--hd-color-text-muted);
  cursor: not-allowed;
}

.omp-form__input:focus,
.omp-form__select:focus,
.omp-form__textarea:focus {
  outline: none;
  border-color: var(--hd-color-accent);
  box-shadow: 0 0 0 4px var(--hd-color-accent-pale);
  background: var(--hd-color-white);
}

.omp-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B7B6E' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}

/* Form success/fail messages */
.omp-form__success,
.omp-form__fail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--hd-radius-md);
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
}

.omp-form__success {
  background: rgba(45, 106, 79, 0.1);
  color: var(--hd-color-success);
  border: 1px solid rgba(45, 106, 79, 0.2);
}

.omp-form__success i {
  font-size: 16px;
}

.omp-form__fail {
  background: rgba(184, 115, 51, 0.1);
  color: var(--hd-color-accent);
  border: 1px solid rgba(184, 115, 51, 0.2);
}

.omp-form__fail i {
  font-size: 16px;
}

/* Button loading state */
.omp-btn .fa-spinner {
  animation: omp-spin 1s linear infinite;
}

@keyframes omp-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* No Reviews State */
.omp-no-reviews {
  text-align: center;
  padding: 30px 15px;
  background: var(--hd-color-surface);
  border: 1px solid var(--hd-color-border);
  border-radius: var(--hd-radius-xl);
  margin: 0 auto;
}

.omp-no-reviews-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--hd-color-accent-pale);
  color: var(--hd-color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

.omp-no-reviews h3 {
  font-family: var(--hd-font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--hd-color-text-main);
  margin-bottom: 12px;
}

.omp-no-reviews p {
  font-size: 14.5px;
  color: var(--hd-color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.omp-no-reviews .omp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  font-size: 14.5px;
  font-weight: 600;
}

/* ============ RELATED PRODUCTS ============ */
.omp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.omp-related-card {
  background: var(--hd-color-surface);
  border: 1px solid var(--hd-color-border);
  border-radius: var(--hd-radius-lg);
  overflow: hidden;
  transition: transform var(--hd-transition), box-shadow var(--hd-transition);
}

.omp-related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hd-shadow-lg);
}

.omp-related-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hd-color-bg-alt);
}

.omp-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--hd-transition-slow);
}

.omp-related-card:hover .omp-related-img img { transform: scale(1.06); }

.omp-related-body { padding: 18px 20px 20px; }

.omp-related-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hd-color-accent);
  margin-bottom: 7px;
}

.omp-related-body h4 {
  font-family: var(--hd-font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--hd-color-text-main);
  margin-bottom: 10px;
  line-height: 1.4;
}

.omp-related-body p {
  font-size: 12.5px;
  color: var(--hd-color-text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.omp-related-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--hd-color-border);
}

.omp-related-moq {
  font-family: var(--hd-font-display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--hd-color-accent);
}

.omp-related-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--hd-color-highlight);
  color: var(--hd-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background var(--hd-transition), color var(--hd-transition);
}

.omp-related-card:hover .omp-related-arrow {
  background: var(--hd-color-accent);
  color: var(--hd-color-white);
}

/* ============ PRODUCT DESCRIPTION ============ */
.omp-description-text {
  font-size: 15px;
  color: var(--hd-color-text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}

.omp-description-text p {
  margin-bottom: 16px;
}

.omp-description-text p:last-child {
  margin-bottom: 0;
}

.omp-description-text ul,
.omp-description-text ol {
  margin: 16px 0;
  padding-left: 24px;
}

.omp-description-text li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.omp-description-text ul {
  list-style-type: disc;
}

.omp-description-text ol {
  list-style-type: decimal;
}

.omp-description-text strong {
  font-weight: 700;
  color: var(--hd-color-text-main);
}

.omp-description-text em {
  font-style: italic;
  color: var(--hd-color-text-muted);
}

.omp-description-text a {
  color: var(--hd-color-accent);
  text-decoration: underline;
  transition: color var(--hd-transition);
}

.omp-description-text a:hover {
  color: var(--hd-color-accent-light);
}

.omp-description-text h3,
.omp-description-text h4,
.omp-description-text h5,
.omp-description-text h6 {
  font-family: var(--hd-font-display);
  font-weight: 700;
  color: var(--hd-color-text-main);
  margin: 24px 0 12px;
}

.omp-description-text h3 {
  font-size: 20px;
}

.omp-description-text h4 {
  font-size: 17px;
}

.omp-description-text h5 {
  font-size: 15px;
}

.omp-description-text h6 {
  font-size: 14px;
}

.omp-description-text blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--hd-color-accent);
  background: var(--hd-color-bg-alt);
  font-style: italic;
  color: var(--hd-color-text-muted);
  border-radius: 0 var(--hd-radius-md) var(--hd-radius-md) 0;
}

.omp-description-text code {
  font-family: var(--hd-mono);
  font-size: 13px;
  background: var(--hd-color-bg-alt);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--hd-color-primary-mid);
}

.omp-description-text pre {
  background: var(--hd-color-bg-alt);
  padding: 16px;
  border-radius: var(--hd-radius-md);
  overflow-x: auto;
  margin: 16px 0;
}

.omp-description-text pre code {
  background: none;
  padding: 0;
}

.omp-description-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.omp-description-text th,
.omp-description-text td {
  padding: 12px 14px;
  border: 1px solid var(--hd-color-border);
  text-align: left;
}

.omp-description-text th {
  font-family: var(--hd-font-display);
  font-weight: 700;
  color: var(--hd-color-text-main);
  background: var(--hd-color-bg-alt);
}

.omp-description-text tr:nth-child(even) {
  background: var(--hd-color-bg-alt);
}

.omp-description-text img {
  max-width: 100%;
  height: auto;
  border-radius: var(--hd-radius-md);
  margin: 20px 0;
  border: 1px solid var(--hd-color-border);
}

.omp-customization-section {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--hd-color-border);
}

.omp-customization-title {
  font-family: var(--hd-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--hd-color-text-main);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.omp-customization-title::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--hd-color-accent);
  border-radius: 2px;
}

.omp-customization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.omp-customization-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--hd-color-bg-alt);
  border: 1px solid var(--hd-color-border);
  border-radius: var(--hd-radius-md);
  transition: transform var(--hd-transition), border-color var(--hd-transition), box-shadow var(--hd-transition);
}

.omp-customization-item:hover {
  transform: translateY(-2px);
  border-color: var(--hd-color-accent);
  box-shadow: var(--hd-shadow-sm);
}

.omp-customization-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--hd-radius-sm);
  background: var(--hd-color-accent-pale);
  color: var(--hd-color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.omp-customization-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--hd-color-text-main);
  line-height: 1.4;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .omp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .omp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .omp-inquiry-section { grid-template-columns: 1fr; }
  .omp-inquiry-aside { padding: 40px 36px 8px; }
  .omp-inquiry-form-wrap { padding: 32px 36px 40px; }
}

@media (max-width: 960px) {
  .pdp-main { grid-template-columns: 1fr; gap: 36px; }
  .pdp-gallery { position: static; }
  .omp-reviews-layout { grid-template-columns: 1fr; }
  .omp-review-summary { position: static; }
  .omp-bar-row { max-width: 340px; }
}

@media (max-width: 720px) {
  .omp-wrap { padding: 0 18px; }
  .omp-section { padding: 44px 0; }
  .omp-product-title { font-size: 26px; }
  .omp-section-title { font-size: 22px; }
  .omp-thumb-rail {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    order: 2;
  }
  .omp-thumb { width: 64px; height: 64px; }
  .omp-quote-meta { grid-template-columns: 1fr; }
  .omp-cta-row { grid-template-columns: 1fr; }
  .omp-spec-table { grid-template-columns: 1fr; padding: 4px 20px 20px; }
  .omp-spec-table > .omp-spec-row:nth-child(even) { padding-left: 0; border-left: none; }
  .omp-spec-table > .omp-spec-row:nth-child(odd) { padding-right: 0; }
  .omp-spec-row { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
  .omp-spec-header { padding: 18px 20px; }
  .omp-spec-footer { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
  .omp-why-grid { grid-template-columns: 1fr; }
  .omp-related-grid { grid-template-columns: 1fr; }
  .omp-form-grid { grid-template-columns: 1fr; }
  .omp-inquiry-aside { padding: 34px 22px 6px; }
  .omp-inquiry-form-wrap { padding: 26px 22px 34px; }
  .omp-utility-row { flex-wrap: wrap; row-gap: 10px; }
  .omp-form-submit { flex-direction: column; align-items: stretch; }
  .omp-form-submit .omp-btn { width: 100%; }
  .omp-description-text { font-size: 14px; }
  .omp-customization-grid { grid-template-columns: 1fr; }
}

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

@media (max-width: 480px) {
  .omp-score-big { font-size: 44px; }
  .omp-inquiry-aside h3 { font-size: 22px; }
}

.pd-apps {
  margin-top: 72px;
}

.pd-apps-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.pd-apps-title {
  font-family: var(--hd-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--hd-color-primary);
}

.pd-apps-sub {
  font-size: 15px;
  color: var(--hd-color-text-muted);
  margin-top: 10px;
}

.pd-apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pd-app-card {
  background: var(--hd-color-surface);
  border: 1px solid var(--hd-color-border);
  border-radius: var(--hd-radius-lg);
  overflow: hidden;
  transform: translateY(0);
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-app-card:hover {
  box-shadow: var(--hd-shadow-lg);
  transform: translateY(-3px);
}

.pd-app-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pd-app-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-app-body { padding: 18px 20px 22px; }

.pd-app-title {
  font-family: var(--hd-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--hd-color-primary);
}

.pd-app-desc {
  font-size: 13px;
  color: var(--hd-color-text-muted);
  margin-top: 6px;
}

@media (max-width: 1024px) {
  .pd-apps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .pd-apps-grid { grid-template-columns: 1fr; }
  .pd-apps-title { font-size: 23px; }
}