/* ═══════════════════════════════════════════════════════════════
   product-redesign.css  – egettryck.se product page v2
   All classes prefixed .pgr- to avoid theme conflicts.
   Do NOT edit main theme CSS.
═══════════════════════════════════════════════════════════════ */

/* fonts loaded via <link> in product.tpl head block */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
.pgr-page {
  --ink:        #1a1a1a;
  --ink-soft:   #5c4a2a;
  --ink-faint:  #a08060;
  --canvas:     #faf8f4;
  --white:      #ffffff;
  --accent:     #ffbc38;
  --accent-dk:  #8c4e08;
  --stamp:      #f9f2e8;
  --border:     #e8d9c4;
  --green:      #2e7d5c;
  --yellow:     #ffbc38;
  --ff-head:    'Inter', 'Helvetica Neue', sans-serif;
  --ff-body:    'Inter', 'Helvetica Neue', sans-serif;
  --r:          8px;

  font-family: var(--ff-body);
  background:  var(--canvas);
  color:       var(--ink);
  line-height: 1.55;
  padding: 0;
}

.pgr-page *, .pgr-page *::before, .pgr-page *::after {
  box-sizing: border-box;
}
.pgr-page p,
.pgr-page span,
.pgr-page div,
.pgr-page td,
.pgr-page li,
.pgr-page a {
  font-family: var(--ff-body);
}

/* ─── PRODUCT HERO GRID ─────────────────────────────────────── */
.pgr-product-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: 24px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: start;
}

/* ─── GALLERY ────────────────────────────────────────────────── */
.pgr-gallery { position: sticky; top: 80px; min-width: 0; width: 100%; }

.pgr-gallery-main {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
  cursor: zoom-in;
}
.pgr-gallery-main img {
  width: 80%; height: 80%;
  object-fit: contain;
  transition: opacity .18s ease;
}
.pgr-gallery-main img.pgr-fading {
  opacity: 0;
}
.pgr-gallery-main .layer {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.02);
  opacity: 0; transition: opacity .2s;
}
.pgr-gallery-main:hover .layer { opacity: 1; }

.pgr-gallery-thumbs-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pgr-thumb-nav {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 18px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .12s, border-color .12s;
  padding: 0;
  user-select: none;
}
.pgr-thumb-nav:hover { background: var(--stamp); border-color: var(--ink); }
.pgr-thumb-nav:disabled { opacity: .3; cursor: default; }

.pgr-gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow: hidden;
  flex: 1;
  scroll-behavior: smooth;
}
.pgr-thumb {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s;
  display: flex; align-items: center; justify-content: center;
}
.pgr-thumb.selected,
.pgr-thumb:hover { border-color: var(--ink); }
.pgr-thumb img { width: 80%; height: 80%; object-fit: contain; }
.pgr-thumb { flex-shrink: 0; }

/* ─── INFO PANEL ─────────────────────────────────────────────── */
.pgr-info { display: flex; flex-direction: column; gap: 24px; min-width: 0; }

/* meta / brand */
.pgr-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-soft); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 6px;
}
.pgr-brand-tag {
  background: var(--stamp);
  border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 99px;
  text-decoration: none;
  color: var(--ink);
  transition: background .12s, border-color .12s;
  display: inline-block;
}
a.pgr-brand-tag:hover {
  background: var(--accent);
  border-color: var(--accent-dk);
  color: var(--ink);
}

/* title */
.pgr-title {
  font-family: var(--ff-head);
  font-size: 32px; font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0;
}

/* ─── PRICE BLOCK ────────────────────────────────────────────── */
.pgr-price-block {
  display: flex; align-items: baseline; gap: 12px;
  flex-wrap: wrap;
}
.pgr-price-now {
  font-family: var(--ff-head) !important;
  font-size: 36px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.pgr-price-old {
  font-size: 18px; color: var(--ink-faint);
  text-decoration: line-through;
}
.pgr-price-note { font-size: 13px; color: var(--ink-soft); }
.pgr-discount-flag {
  background: var(--accent); color: var(--ink);
  font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 99px;
}
.pgr-price-sub { font-size: 12px; color: var(--ink-faint); margin-top: 4px; }

/* ─── TRUST STRIP ────────────────────────────────────────────── */
.pgr-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pgr-trust-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
}
.pgr-trust-icon { font-size: 18px; flex-shrink: 0; }

/* ─── SELECTOR LABEL ─────────────────────────────────────────── */
.pgr-sel-label {
  font-size: 13px; font-weight: 600;
  margin-bottom: 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.pgr-sel-label .pgr-count  { color: var(--ink-soft); font-weight: 400; }
.pgr-sel-label .pgr-selname { font-weight: 700; }

/* ─── COLOR SWATCHES ─────────────────────────────────────────── */
/* hide the native radio that PS JS still uses */
.pgr-color-radios { display: none; }

.pgr-color-grid { display: flex; flex-wrap: wrap; gap: 6px; }

.pgr-color-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  min-height: 18px;
  margin-bottom: 6px;
}

.pgr-swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 3px solid transparent;
  outline: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s, outline-color .12s, box-shadow .12s;
  display: inline-block;
  flex-shrink: 0;
}
.pgr-swatch:hover { transform: scale(1.2); }
.pgr-swatch.pgr-active {
  outline-color: var(--ink);
  outline-offset: 2px;
}
/* white swatch needs a border to be visible */
.pgr-swatch[style*="#fff"],
.pgr-swatch[style*="#FFF"],
.pgr-swatch[style*="#ffffff"],
.pgr-swatch[style*="#FFFFFF"] {
  box-shadow: inset 0 0 0 1px var(--border);
}

/* ─── SIZE BUTTONS ───────────────────────────────────────────── */
/* hide the native <select> that PS JS still uses */
.pgr-size-select-wrap { display: none; }

.pgr-size-grid { display: flex; gap: 8px; flex-wrap: wrap; }

.pgr-size-btn {
  border: 2px solid var(--border);
  background: #fff;
  border-radius: var(--r);
  padding: 8px 16px;
  font-size: 14px; font-weight: 600;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: border-color .12s, background .12s, color .12s;
  color: var(--ink);
}
.pgr-size-btn:hover,
.pgr-size-btn.pgr-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.pgr-size-link {
  font-size: 12px; color: var(--accent);
  text-decoration: none; font-weight: 600;
}
.pgr-size-link:hover { text-decoration: underline; }
.pgr-size-note { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 8px; }

/* static color swatch – "+33" overflow badge */
.pgr-swatch-more {
  background: var(--stamp);
  color: var(--ink-soft);
  font-size: 11px; font-weight: 700;
  cursor: default;
  display: inline-flex; align-items: center; justify-content: center;
}
.pgr-swatch-more:hover { transform: none; }

/* static size pills (non-interactive) */
.pgr-size-pill {
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--border);
  background: #fff;
  border-radius: var(--r);
  padding: 6px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  cursor: default;
}
.pgr-size-pill-ext {
  color: var(--ink-soft);
  font-size: 12px;
  border-style: dashed;
}

/* ─── HOW TO ORDER ───────────────────────────────────────────── */
.pgr-howto-card {
  background: var(--stamp);
  border-radius: 10px;
  padding: 16px 18px;
}
.pgr-howto-title {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--ink); margin-bottom: 14px;
}
.pgr-howto-steps { display: flex; flex-direction: column; gap: 12px; }
.pgr-howto-step {
  display: flex; align-items: flex-start; gap: 12px;
}
.pgr-howto-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.pgr-howto-body strong { font-size: 13px; font-weight: 700; display: block; margin-bottom: 2px; }
.pgr-howto-body p { font-size: 12px; color: var(--ink-soft); margin: 0; }

/* ─── QTY + CTA ──────────────────────────────────────────────── */
.pgr-actions { display: flex; flex-direction: column; gap: 10px; }

.pgr-qty-cta { display: flex; gap: 12px; align-items: stretch; }

.pgr-qty-box {
  display: flex; align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--r);
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
.pgr-qty-btn {
  background: none; border: none;
  width: 40px; height: 52px;
  font-size: 20px; cursor: pointer; font-weight: 300;
  font-family: var(--ff-body);
  display: flex; align-items: center; justify-content: center;
  transition: background .12s;
  color: var(--ink);
}
.pgr-qty-btn:hover { background: var(--stamp); }

#quantity_wanted {
  width: 44px; text-align: center;
  font-size: 15px; font-weight: 600;
  border: none; outline: none; background: none;
  font-family: var(--ff-body);
  color: var(--ink);
}

/* "Lägg i kundvagn" – add to cart (secondary role on this site) */
.pgr-btn-primary {
  flex: 1;
  background: var(--stamp) !important;
  color: var(--ink) !important;
  border: 2px solid var(--border) !important;
  border-radius: var(--r);
  font-family: var(--ff-head) !important;
  font-size: 15px; font-weight: 700;
  letter-spacing: -.01em;
  padding: 0 20px;
  height: 52px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s, border-color .15s;
  text-decoration: none;
  line-height: 1;
}
.pgr-btn-primary:hover,
.pgr-btn-primary:focus {
  background: var(--border) !important;
  border-color: #c9a87a !important;
}
.pgr-btn-primary:disabled { opacity: .45; cursor: not-allowed; }

/* ─── MAIN CTA WRAPPER – "Lägg till eget tryck" ─────────────── */
.pgr-tshirt-wrap {
  background: linear-gradient(135deg, #fff9ec 0%, #fff3d0 100%);
  border: 2px solid #f0c848;
  border-radius: 12px;
  padding: 16px 18px 18px;
  position: relative;
}
.pgr-tshirt-wrap::before {
  content: 'DESIGNA NU — DET ÄR ENKELT!';
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent-dk);
  margin-bottom: 12px;
}

/* The actual TSC anchor – THE primary action */
.pgr-btn-secondary,
.pgr-tshirt-wrap .tshirtecommerce-custom-block a {
  width: 100%;
  background: var(--accent) !important;
  color: var(--ink) !important;
  border: none; border-radius: var(--r);
  font-family: var(--ff-head) !important;
  font-size: 19px !important; font-weight: 800 !important;
  padding: 18px 28px !important;
  cursor: pointer;
  display: flex !important; align-items: center; justify-content: center; gap: 10px;
  transition: background .15s, box-shadow .15s, transform .1s !important;
  text-decoration: none;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 20px rgba(255, 188, 56, 0.55);
  animation: pgr-cta-glow 2.6s ease-in-out infinite;
}
.pgr-btn-secondary:hover,
.pgr-tshirt-wrap .tshirtecommerce-custom-block a:hover {
  background: var(--accent-dk) !important;
  color: #fff !important;
  box-shadow: 0 6px 26px rgba(140, 78, 8, 0.4) !important;
  transform: translateY(-2px);
  animation: none;
}

@keyframes pgr-cta-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 188, 56, 0.55); }
  50%       { box-shadow: 0 6px 30px rgba(255, 188, 56, 0.85); }
}

/* clean up tshirtecommerce container */
.pgr-tshirt-wrap .tshirtecommerce-product-detail { display: contents; }
.pgr-tshirt-wrap .tshirtecommerce-attributes { display: none; }
.pgr-tshirt-wrap .tshirtecommerce-custom-block { margin: 0 !important; padding: 0 !important; }
.pgr-tshirt-wrap p.tshirtecommerce-custom-block { margin: 0; }

/* ─── DELIVERY BANNER ────────────────────────────────────────── */
.pgr-delivery-banner {
  background: var(--stamp);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
}
.pgr-delivery-banner .pgr-dl-icon { font-size: 22px; flex-shrink: 0; }
.pgr-delivery-banner strong { color: var(--accent-dk); }
.pgr-delivery-banner a { color: var(--accent-dk); font-weight: 700; text-decoration: none; }
.pgr-delivery-banner a:hover { text-decoration: underline; }

/* ─── BULK DISCOUNT TABLE ────────────────────────────────────── */
.pgr-bulk-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.pgr-bulk-header {
  background: var(--stamp);
  color: var(--ink);
  border-bottom: 1.5px solid var(--border);
  padding: 12px 16px;
  font-family: var(--ff-head) !important;
  font-size: 13px; font-weight: 800;
  letter-spacing: .03em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.pgr-bulk-table { width: 100%; border-collapse: collapse; }
.pgr-bulk-table td {
  padding: 9px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.pgr-bulk-table tr:last-child td { border-bottom: none; }
.pgr-bulk-table td:last-child { text-align: right; }
.pgr-bulk-table tr.pgr-best { background: #fffbf0; }
.pgr-bulk-table tr.pgr-best td:first-child { font-weight: 700; color: var(--accent); }
.pgr-save-pill {
  background: var(--accent); color: var(--ink);
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 99px;
  display: inline-block;
}
.pgr-bulk-table a { color: var(--accent); text-decoration: none; }
.pgr-bulk-table a:hover { text-decoration: underline; }

/* ─── SPEC GRID ──────────────────────────────────────────────── */
.pgr-spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pgr-spec-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 14px;
  font-size: 13px;
}
.pgr-spec-item dt {
  color: var(--ink-faint); font-size: 11px;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 2px;
}
.pgr-spec-item dd { font-weight: 600; }
.pgr-spec-note { font-size: 11px; color: var(--ink-faint); margin-top: 8px; }

/* availability note */
.pgr-min-qty-note { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }

/* description short */
.pgr-desc-short { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.pgr-desc-short p { margin-bottom: 8px; }

/* ─── BELOW FOLD ─────────────────────────────────────────────── */
.pgr-below-fold {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px 80px;
}
.pgr-section-title {
  font-family: var(--ff-head);
  font-size: 26px; font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent);
  color: var(--ink);
}

/* USP strip */
.pgr-usp-strip {
  background: var(--stamp);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  text-align: center;
}
.pgr-usp-item h3 {
  font-family: var(--ff-head);
  font-size: 30px; font-weight: 800;
  letter-spacing: -.02em;
  color: var(--accent-dk);
  margin-bottom: 4px;
}
.pgr-usp-item p { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* process steps */
.pgr-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.pgr-process-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  transition: box-shadow .18s, border-color .18s;
}
.pgr-process-card:hover {
  box-shadow: 0 6px 20px rgba(140, 78, 8, .1);
  border-color: #f0c848;
}
.pgr-process-num {
  font-family: var(--ff-head) !important;
  font-size: 42px; font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.pgr-process-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.pgr-process-card p  { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* description / material accordion */
.pgr-accordion-wrap { margin-bottom: 48px; }
.pgr-accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 8px;
  overflow: hidden;
}
.pgr-accordion-trigger {
  width: 100%; background: #fff;
  border: none; cursor: pointer;
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 600; text-align: left;
  font-family: var(--ff-body); color: var(--ink);
}
.pgr-acc-arrow { font-size: 18px; transition: transform .2s; display: inline-block; }
.pgr-accordion-trigger.pgr-open .pgr-acc-arrow { transform: rotate(180deg); }
.pgr-accordion-body {
  background: var(--canvas);
  padding: 0 18px;
  font-size: 13px; color: var(--ink-soft);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.pgr-accordion-body.pgr-open {
  padding: 14px 18px;
  max-height: 600px;
}
/* PS product description content inside accordion */
.pgr-accordion-body .product-description { font-size: 13px; }
.pgr-accordion-body .product-description p { margin-bottom: 8px; }
.pgr-accordion-body .product-description ul { padding-left: 18px; margin-bottom: 8px; }

/* related products */
.pgr-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

/* Override owl-carousel items to use our grid */
.pgr-related-grid .products { display: contents; }
.pgr-related-grid .owl-carousel { display: grid !important; grid-template-columns: repeat(4,1fr); gap: 16px; }
.pgr-related-grid .owl-stage-outer,
.pgr-related-grid .owl-stage { display: contents; }
.pgr-related-grid .owl-item { width: auto !important; }

/* product card (used by item_one.tpl) – override into our style */
.pgr-related-wrap .product-miniature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .15s;
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.pgr-related-wrap .product-miniature:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.pgr-related-wrap .product-miniature .thumbnail-container {
  background: var(--stamp);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pgr-related-wrap .product-miniature .thumbnail-container img {
  width: 80%; height: 80%; object-fit: contain;
}
.pgr-related-wrap .product-miniature .product-description {
  padding: 12px 14px;
}
.pgr-related-wrap .product-miniature .product-title {
  font-size: 14px; font-weight: 600; margin: 4px 0;
  color: var(--ink); text-decoration: none;
}
.pgr-related-wrap .product-miniature .price {
  font-family: var(--ff-head); font-size: 18px; font-weight: 800;
  color: var(--ink);
}
.pgr-related-wrap .product-miniature .product-price-and-shipping {
  margin-top: 4px;
}

/* extra content from modules (tab content) */
.pgr-extra { margin-bottom: 48px; }
.pgr-extra-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 8px;
  overflow: hidden;
}
.pgr-extra-trigger {
  width: 100%; background: #fff;
  border: none; cursor: pointer;
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 600; text-align: left;
  font-family: var(--ff-body); color: var(--ink);
}
.pgr-extra-body {
  background: var(--canvas);
  padding: 0 18px;
  font-size: 13px; color: var(--ink-soft);
  border-top: 1px solid var(--border);
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.pgr-extra-body.pgr-open { padding: 14px 18px; max-height: 800px; }

/* ─── NOVPRODUCTCOMMENTS ─────────────────────────────────────── */
/* Hide the default tab nav bullet */
.pgr-page .nav-item { list-style: none; margin: 0; padding: 0; }
.pgr-page .nav-link {
  display: none; /* tab link — redundant next to the section title */
}

/* Reviews tab pane */
.pgr-page #reviews {
  background: var(--stamp);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 48px;
}

/* "Bli först med att lämna omdöme!" link → styled as CTA button */
.pgr-page #reviews .open-comment-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--ink) !important;
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 26px;
  border-radius: var(--r);
  text-decoration: none !important;
  transition: background .15s, transform .1s;
  box-shadow: 0 3px 12px rgba(255,188,56,.4);
}
.pgr-page #reviews .open-comment-form::before {
  content: '✏️';
  font-size: 17px;
}
.pgr-page #reviews .open-comment-form:hover {
  background: var(--accent-dk);
  color: #fff !important;
  transform: translateY(-1px);
}

/* "No reviews yet" text + wrapper centering */
.pgr-page #reviews .text-center {
  text-align: center;
}
.pgr-page #reviews > p.text-center:only-child,
.pgr-page #reviews > p.text-center {
  margin: 0;
}

/* Heading before the reviews block */
.pgr-page #reviews::before {
  content: 'Kundrecensioner';
  display: block;
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

/* Existing comment cards */
.pgr-page #reviews .comment {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.pgr-page #reviews .comment:last-of-type { border-bottom: none; }
.pgr-page #reviews .comment_author { margin-bottom: 8px; }
.pgr-page #reviews .comment_details h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.pgr-page #reviews .comment_details p  { font-size: 13px; color: var(--ink-soft); }

/* ─── REVIEW MODAL (novproductcomments) ─────────────────────── */
#new_comment_form .modal-content {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
}
#new_comment_form .modal-header {
  background: #faf8f4;
  border-bottom: 1.5px solid #e8d9c4;
  padding: 18px 24px;
}
#new_comment_form .modal-title {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #1a1a1a;
}
#new_comment_form .modal-body {
  padding: 32px 40px 48px !important;
  background: #fff;
}

/* product info strip inside modal */
#new_comment_form .product {
  background: #faf8f4;
  border: 1.5px solid #e8d9c4;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 20px;
  gap: 16px;
}
#new_comment_form .product .product_name {
  font-weight: 800;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 6px;
}
#new_comment_form .product .product_desc {
  font-size: 13px;
  color: #5c4a2a;
}
#new_comment_form .product img {
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

/* form fields */
#new_comment_form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #5c4a2a;
  margin: 16px 0 6px;
}
#new_comment_form input[type="text"],
#new_comment_form textarea {
  width: 100%;
  border: 1.5px solid #e8d9c4;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  color: #1a1a1a;
  background: #faf8f4;
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
#new_comment_form input[type="text"]:focus,
#new_comment_form textarea:focus {
  border-color: #ffbc38;
  background: #fff;
}
#new_comment_form textarea {
  min-height: 100px;
  resize: vertical;
}

/* footer + submit button */
#new_comment_form #new_comment_form_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1.5px solid #e8d9c4;
}
#new_comment_form #new_comment_form_footer .required {
  font-size: 12px;
  color: #a08060;
}
#new_comment_form #submitNewMessage {
  background: #ffbc38;
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .15s;
}
#new_comment_form #submitNewMessage:hover {
  background: #8c4e08;
  color: #fff;
}

/* stars rating */
#new_comment_form .star_content { margin: 4px 0 8px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .pgr-product-wrap {
    grid-template-columns: 1fr;
    padding: 16px 16px 40px;
    gap: 32px;
  }
  .pgr-gallery { position: static; }
  .pgr-usp-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }
  .pgr-process-grid { grid-template-columns: repeat(2, 1fr); }
  .pgr-related-grid,
  .pgr-related-wrap .owl-carousel { grid-template-columns: repeat(2, 1fr) !important; }
  .pgr-trust-strip { grid-template-columns: 1fr; }
  .pgr-below-fold { padding: 0 16px 60px; }
}
@media (max-width: 600px) {
  .pgr-title { font-size: 24px; }
  .pgr-price-now { font-size: 28px; }
  .pgr-thumb-nav { width: 24px; height: 24px; font-size: 16px; }
  .pgr-usp-strip { grid-template-columns: 1fr 1fr; }
  .pgr-process-grid { grid-template-columns: 1fr; }
  .pgr-related-grid,
  .pgr-related-wrap .owl-carousel { grid-template-columns: 1fr 1fr !important; }
  .pgr-spec-list { grid-template-columns: 1fr; }
}
@media (max-width: 375px) {
  .pgr-usp-strip { grid-template-columns: 1fr; }
  .pgr-thumb-item { width: 64px; height: 64px; }
  .pgr-trust-strip { gap: 8px; }
  .pgr-product-wrap { padding: 12px 12px 32px; }
  .pgr-below-fold { padding: 0 12px 40px; }
}
