/* Product detail page — localized PDP */
.pdp-page {
  background: #fff;
}

.pdp-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .pdp-layout {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
    padding: 2rem 1.5rem 3rem;
  }
}

/* Gallery */
.pdp-gallery-wrap {
  position: sticky;
  top: 1rem;
}

.pdp-color-strip {
  display: none;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .pdp-color-strip {
    display: flex;
  }
}

.pdp-color-chip {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 2px;
  background: #fff;
  cursor: pointer;
  flex: 0 0 auto;
}

.pdp-color-chip.is-active {
  border-color: #202020;
}

.pdp-color-chip img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

.pdp-gallery {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pdp-gallery {
    grid-template-columns: 72px 1fr;
    align-items: start;
  }
}

/* Swiper vertical thumbnails (desktop only — mobile uses dots + option swatches) */
.pdp-gallery .pdp-swiper-thumbs.swiper,
.pdp-swiper-thumbs {
  display: none !important;
  order: 2;
  width: 100%;
  max-height: 88px;
  margin: 0;
}

@media (min-width: 768px) {
  .pdp-gallery .pdp-swiper-thumbs.swiper,
  .pdp-swiper-thumbs {
    display: block !important;
    order: 0;
    width: 64px;
    max-height: min(560px, 70vh);
    height: auto;
  }
}

.pdp-swiper-thumbs-wrapper {
  flex-direction: row;
}

@media (min-width: 768px) {
  .pdp-swiper-thumbs-wrapper {
    flex-direction: column;
  }
}

.pdp-swiper-thumbs .swiper-slide {
  width: auto !important;
  height: auto !important;
  margin-right: 8px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .pdp-swiper-thumbs .swiper-slide {
    margin-right: 0;
    margin-bottom: 8px;
  }
}

.pdp-thumb-slide {
  position: relative;
  width: 64px;
  height: 64px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #efefec;
  box-sizing: border-box;
}

.pdp-thumb-slide-variants {
  position: relative;
}

.pdp-swiper-thumbs .swiper-slide-thumb-active .pdp-thumb-slide,
.pdp-swiper-thumbs .swiper-slide-thumb-active.pdp-thumb-slide {
  border-color: #202020;
}

.pdp-thumb-slide.is-filtered-out {
  display: none !important;
}

.pdp-swiper-thumb-img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}

.pdp-thumb-slide-variants .pdp-swiper-thumb-img {
  position: absolute;
  inset: 0;
}

.pdp-thumb-img-hidden {
  display: none !important;
}

.pdp-thumb-img-visible {
  display: block;
}

.pdp-swiper-main {
  order: 1;
  width: 100%;
  border-radius: 12px;
  background: #efefec;
  overflow: hidden;
}

.pdp-swiper-main .swiper-slide {
  aspect-ratio: 1;
}

.pdp-main-slide.is-filtered-out {
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.pdp-main-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Legacy gallery classes (kept for any stale HTML) */
.pdp-thumbs {
  display: none;
}

.pdp-gallery-main {
  display: none;
}

.pdp-slide {
  display: none;
}

.pdp-thumb {
  display: none;
}

.pdp-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .pdp-dots {
    display: none;
  }
}

.pdp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.pdp-dot.is-active {
  background: #202020;
}

/* Info column */
.pdp-info-card {
  background: #f8f4ef;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.pdp-info-col .pdp-pair,
.pdp-info-col .pdp-description,
.pdp-info-col .pdp-accordions {
  margin-top: 0;
}

.pdp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.pdp-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.pdp-badge-waterproof { background: #d4edda; color: #155724; }
.pdp-badge-new { background: #202020; color: #fff; }
.pdp-badge-sale { background: #fa97ff; color: #202020; }

.pdp-title {
  font-family: 'Alias', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.pdp-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.pdp-price {
  font-size: 1.35rem;
  font-weight: 700;
}

.pdp-compare {
  color: #777;
  font-size: 1rem;
}

.pdp-save {
  font-size: 0.85rem;
  color: #c41e3a;
  font-weight: 600;
}

.pdp-reviews {
  font-size: 0.9rem;
  color: #555;
  text-decoration: underline;
}

.pdp-reviews-none {
  color: #888;
  text-decoration: none;
}

/* Options */
.pdp-option-head {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.pdp-option-head--with-guide {
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.pdp-size-guide-btn {
  border: none;
  background: none;
  padding: 0;
  font-family: 'Alias', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #153563;
  cursor: pointer;
  white-space: nowrap;
}

.pdp-size-guide-btn:hover {
  text-decoration: underline;
}

.pdp-option {
  margin-bottom: 1rem;
}

.pdp-option-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.pdp-option-value {
  font-size: 0.9rem;
}

.pdp-option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pdp-option-btn {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.pdp-option-btn.is-selected {
  border-color: #202020;
  background: #202020;
  color: #fff;
}

.pdp-option-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pdp-swatch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.85rem 0.35rem 0.35rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.pdp-swatch-btn img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.pdp-swatch-btn.is-selected {
  border-color: #202020;
  box-shadow: 0 0 0 1px #202020;
}

/* Buy box */
.pdp-buy {
  margin-bottom: 1.25rem;
}

.pdp-qty {
  margin-bottom: 1rem;
}

.pdp-qty label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.pdp-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.pdp-qty-control button {
  width: 40px;
  height: 40px;
  border: none;
  background: #f5f5f5;
  font-size: 1.2rem;
  cursor: pointer;
}

.pdp-qty-control input {
  width: 48px;
  text-align: center;
  border: none;
  font-size: 1rem;
  -moz-appearance: textfield;
}

.pdp-qty-control input::-webkit-outer-spin-button,
.pdp-qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.pdp-add-btn {
  width: 100%;
  margin-bottom: 0.75rem;
}

.pdp-buy .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: #202020;
  color: #fff;
  font-family: 'Alias', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.pdp-buy .button:hover:not(:disabled) {
  opacity: 0.85;
}

.pdp-buy .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pdp-add-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pdp-callout {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}

.pdp-callout-pill {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.625rem;
  border-radius: 999px;
}

.pdp-callout-in {
  color: #015f69;
  background-color: #d3f4ef;
}

.pdp-callout-out {
  color: #c41e3a;
  background-color: #fde8ea;
}

.pdp-callout-text {
  line-height: 1;
  font-size: 0.9rem;
}

.pdp-stock {
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.pdp-stock-in { color: #1a7f4b; }
.pdp-stock-out { color: #c41e3a; font-weight: 600; }

.pdp-notify {
  background: #f8f4ef;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.pdp-notify input {
  width: 100%;
  padding: 0.6rem;
  margin: 0.5rem 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.pdp-trust {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #444;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 1.5rem;
}

/* Pair it with */
.pdp-pair {
  margin-bottom: 1.5rem;
}

.pdp-pair h2 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.pdp-pair-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #e8f4fc;
  border-radius: 12px;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
}

.pdp-pair-card img {
  border-radius: 8px;
  object-fit: cover;
}

.pdp-pair-info {
  flex: 1;
  min-width: 0;
}

.pdp-pair-info h3 {
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
  font-weight: 500;
}

.pdp-pair-variant,
.pdp-pair-price {
  display: block;
  font-size: 0.85rem;
}

.pdp-pair-price {
  font-weight: 700;
}

/* Description */
.pdp-description {
  background: #f8f4ef;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pdp-description img {
  max-width: 24px;
  vertical-align: middle;
  margin-right: 0.25rem;
}

/* Accordions */
.pdp-accordions {
  display: grid;
  gap: 0.5rem;
}

.pdp-accordion {
  background: #f8f4ef;
  border: 1px solid #f8f4ef;
  border-radius: 12px;
}

.pdp-accordion[open] {
  border-color: #202020;
}

.pdp-accordion summary {
  list-style: none;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
}

.pdp-accordion summary::-webkit-details-marker {
  display: none;
}

.pdp-accordion[open] .pdp-acc-icon::before {
  content: '−';
}

.pdp-acc-icon::before {
  content: '+';
}

.pdp-accordion-body {
  padding: 0 1.25rem 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.pdp-accordion-body a {
  color: #153563;
  text-decoration: underline;
}

/* Collection carousel (Shop the Collection / You May Also Like) */
.pdp-col-section {
  border-top: 1px solid #eee;
  padding: 2rem 0;
}

.pdp-col-inner {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 1rem;
}

.pdp-col-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1rem;
  padding-right: 1rem;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .pdp-col-heading {
    font-size: 1.5rem;
    padding-right: 0;
  }
}

.pdp-col-heading-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-shrink: 0;
}

.pdp-col-view-all {
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  color: inherit;
}

@media (min-width: 1024px) {
  .pdp-col-view-all {
    display: inline-block;
  }
}

.pdp-col-nav {
  display: none;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .pdp-col-nav {
    display: flex;
  }
}

.pdp-col-arrow {
  display: inline-flex;
  padding: 0;
  border: none;
  background: none;
  color: #000;
  cursor: pointer;
  line-height: 0;
}

.pdp-col-arrow:hover {
  color: #fff;
}

.pdp-col-arrow:hover .pdp-col-arrow-svg path:first-child {
  fill: #000;
}

.pdp-col-arrow:disabled {
  opacity: 0.5;
  cursor: default;
}

.pdp-col-arrow-svg {
  display: block;
  pointer-events: none;
}

.pdp-col-arrow-svg--prev {
  transform: rotate(180deg);
}

.pdp-col-track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1rem;
  padding: 0 1rem;
  scrollbar-width: none;
}

.pdp-col-track-wrap::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .pdp-col-track-wrap {
    margin: 0;
    padding: 0;
    overflow-x: auto;
  }
}

.pdp-col-track {
  display: flex;
  gap: 1rem;
  min-width: min-content;
}

.pdp-col-slide {
  flex: 0 0 calc((100% - 1rem) / 1.25);
  width: calc((100% - 1rem) / 1.25);
  max-width: 280px;
}

@media (min-width: 575px) {
  .pdp-col-slide {
    flex: 0 0 calc((100% - 2rem) / 2.5);
    width: calc((100% - 2rem) / 2.5);
    max-width: 220px;
  }
}

@media (min-width: 1024px) {
  .pdp-col-slide {
    flex: 0 0 calc((100% - 3rem) / 4);
    width: calc((100% - 3rem) / 4);
    max-width: none;
  }
}

@media (min-width: 1536px) {
  .pdp-col-track {
    gap: 1.25rem;
  }

  .pdp-col-slide {
    flex: 0 0 calc((100% - 3.75rem) / 4);
    width: calc((100% - 3.75rem) / 4);
  }
}

.pdp-col-card {
  display: flex;
  flex-direction: column;
}

.pdp-col-card-media {
  position: relative;
}

.pdp-col-img-wrap {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 1;
}

.pdp-col-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  transition: opacity 0.2s ease;
}

.pdp-col-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

@media (min-width: 1024px) {
  .pdp-col-card-media:hover .pdp-col-img:not(.pdp-col-img-hover) {
    opacity: 0;
  }

  .pdp-col-card-media:hover .pdp-col-img-hover {
    opacity: 1;
  }
}

.pdp-col-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1;
}

.pdp-col-badge span {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0 0.875rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #000;
  border-radius: 9999px;
  background: #d4f4e8;
  color: #000;
}

.pdp-col-card-body {
  display: block;
  margin-top: 0.5rem;
  color: inherit;
  text-decoration: none;
}

.pdp-col-title {
  margin: 0 0 0.125rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .pdp-col-title {
    font-size: 1.125rem;
  }
}

.pdp-col-prices {
  display: flex;
  gap: 0.375rem;
  align-items: baseline;
}

.pdp-col-compare {
  color: #153563;
}

.pdp-col-price {
  font-weight: 700;
}

.pdp-col-swatches {
  margin-top: 0.625rem;
}

.pdp-col-swatches fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.pdp-col-swatch-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
}

.pdp-col-swatch {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #ddd;
  flex-shrink: 0;
}

.pdp-col-swatch-more {
  font-size: 0.75rem;
  color: #666;
}

/* Legacy mini-card carousel (Pair it with, etc.) */
.pdp-carousel-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
  border-top: 1px solid #eee;
}

.pdp-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.pdp-section-head h2 {
  font-size: 1.35rem;
  margin: 0;
}

.pdp-section-link {
  font-size: 0.9rem;
  text-decoration: underline;
}

.pdp-carousel-track {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1rem;
  padding: 0 1rem 0.5rem;
}

.pdp-carousel {
  display: flex;
  gap: 1rem;
  min-width: min-content;
}

.pdp-carousel .pdp-mini-card {
  flex: 0 0 180px;
  width: 180px;
}

.pdp-mini-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.pdp-mini-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.pdp-mini-body {
  padding: 0.75rem;
}

.pdp-mini-body h3 {
  font-size: 0.85rem;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.pdp-mini-opt {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.pdp-mini-prices {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.9rem;
}

.pdp-mini-compare {
  color: #888;
  margin-right: 0.35rem;
}

.pdp-mini-price {
  font-weight: 700;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid #202020;
  color: #202020;
}

/* Brand story & lookbook */
.pdp-brand-story {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
  border-top: 1px solid #eee;
}

.pdp-brand-accordion {
  max-width: 720px;
  margin: 0 auto;
}

.pdp-brand-accordion summary {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  justify-content: center;
  gap: 0.75rem;
}

.pdp-brand-accordion .pdp-accordion-body {
  text-align: center;
}

.pdp-brand-accordion .pdp-accordion-body p {
  max-width: 640px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
  color: #444;
}

.pdp-brand-story h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
}

.pdp-brand-story p {
  max-width: 640px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
  color: #444;
}

.pdp-brand-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 480px;
  text-align: left;
}

.pdp-brand-bullets li {
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  line-height: 1.5;
}

.pdp-brand-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #202020;
}

.pdp-lookbook {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
  border-top: 1px solid #eee;
}

.pdp-lookbook h2 {
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
  text-align: center;
}

.pdp-look-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.pdp-look-card {
  border-radius: 12px;
  overflow: hidden;
  background: #efefec;
}

.pdp-look-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.pdp-look-links {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.pdp-look-links a {
  color: #153563;
  text-decoration: underline;
}

/* Size guide modal */
.pdp-size-guide[hidden] {
  display: none;
}

.pdp-size-guide {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.pdp-size-guide-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.pdp-size-guide-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.pdp-size-guide-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid #202020;
  border-radius: 50%;
  background: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.pdp-size-guide-panel h2 {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
}

.pdp-size-guide-measure h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.pdp-size-guide-measure p,
.pdp-size-guide-note {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}

.pdp-size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pdp-size-guide-table th,
.pdp-size-guide-table td {
  padding: 0.75rem 0;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.pdp-size-guide-table th {
  color: #777;
  font-weight: 400;
}

/* Social / inspired */
.pdp-social,
.pdp-inspired {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.pdp-social h2,
.pdp-inspired h2 {
  margin: 0 0 0.5rem;
}

.pdp-social p {
  color: #555;
  margin-bottom: 1rem;
}

/* Legacy simple product page (fallback) */
.product-page { background: #fff; }
.product-hero-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .product-hero-layout { grid-template-columns: 1fr 1fr; }
}
.product-hero-media { background: #efefec; border-radius: 12px; overflow: hidden; }
.product-hero-media img { width: 100%; height: auto; display: block; }
.product-hero-info h1 { font-family: 'Alias', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 1rem; }
.product-hero-prices { margin-bottom: 1.25rem; }
.product-hero-price { font-size: 1.25rem; font-weight: 700; }
.product-hero-compare { margin-left: 0.5rem; color: #777; text-decoration: line-through; }
.product-buy-btn { display: inline-block; margin-bottom: 1.5rem; }
.product-description { font-size: 0.95rem; line-height: 1.6; color: #333; }
