/** Shopify CDN: Minification failed

Line 681:12 Unexpected "("

**/
/* ============================================================
   Pompeii  Product Detail Page (3-Column Grid)
   purchase(left sticky) | gallery(center scroll) | details(right sticky)
   ============================================================ */

/*  0. Section reset  */
.section-pompeii-pdp {
  display: block !important;
  margin: 0 !important;
  /* padding controlled by pompeii.css (48px lateral) */
}

/*  1. Wrapper  */
.pompeii-pdp-wrapper {
  display: block;
}

/*  2. Mobile-first layout: single column  */
.pompeii-pdp {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.pompeii-pdp__gallery   { order: 1; }
.pompeii-pdp__purchase  { order: 2; }
.pompeii-pdp__details   { order: 3; }


/*  3. Purchase column  */
.pompeii-pdp__purchase {
  padding: 24px 0;
}

/* Mobile purchase block sits under gallery, then sticks within the PDP flow */
@media (max-width: 749px) {
  .pompeii-pdp__purchase {
    position: fixed;
    left: 0;
    right: 0;
    bottom: var(--pdp-mobile-viewport-offset, 0px);
    transform: translateY(var(--pdp-mobile-sticky-translate-y, 0px));
    z-index: 100;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom, 0px));
    background: var(--color-background, #ffffff);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: opacity 0.25s ease;
  }
  .pompeii-pdp__purchase .product-block--store_availability {
    display: none !important;
  }
  .pompeii-pdp__purchase-sentinel,
  .pompeii-pdp__purchase-placeholder {
    display: block;
    height: 0;
  }
  .pompeii-pdp__purchase--mobile-fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: var(--pdp-mobile-footer-offset, 0px);
    z-index: 30;
    background: var(--color-background, #f7f5f2);
  }
}

.pompeii-pdp__purchase-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/*  4. Gallery column  */
.pompeii-pdp__gallery {
  background: #f8f8f8;
  padding: 0;
}
.pompeii-pdp__gallery img,
.pompeii-pdp__gallery video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.pompeii-pdp__gallery .product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Mobile gallery: horizontal scroll slider */
@media (max-width: 749px) {
  /* Body already has padding-top for fixed header + scrollbar */
  .pompeii-pdp {
    padding-top: 0;
  }

  /* Hide spacer — purchase is fixed at bottom, spacer not needed */
  .pompeii-pdp__purchase-spacer {
    display: none !important;
  }
  .pompeii-pdp__gallery {
    overflow: visible;
  }
  .pompeii-pdp__gallery .product-gallery {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 12px;
    touch-action: pan-y pinch-zoom;
  }
  .pompeii-pdp__gallery .product-gallery::-webkit-scrollbar {
    display: none;
  }
  .pompeii-pdp__gallery .product-gallery__item {
    flex: 0 0 calc(100vw - 24px);
    width: calc(100vw - 24px);
    height: clamp(360px, calc(100svh - env(safe-area-inset-bottom, 0px)), 530px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
  }
  .pompeii-pdp__gallery .product-gallery__item img,
  .pompeii-pdp__gallery .product-gallery__item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/*  5. Details column  */
.pompeii-pdp__details {
  padding: 24px 16px;
}
@media (max-width: 749px) {
  .pompeii-pdp__details {
    padding: 24px 0;
  }
}
.pompeii-pdp__details-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/*  6. Product form  */
.pompeii-pdp__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Block spacing within form */
.product-block--buy_buttons {
  margin-top: 24px;
}

/* ============================================================
   BLOCK STYLES
   ============================================================ */

/*  7. Product header (title + price inline)  */
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.product-title {
  font-family: 'Univers LT Std', -apple-system, sans-serif !important;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 14px;
  margin: 0;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*  8. Price block  */
.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  white-space: nowrap;
}
.product-price__current {
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #000000;
}
.product-price__compare {
  font-size: 10px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: line-through;
}
.product-price__badge {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0;
}

/*  9. Variant picker  */
.product-variant-picker {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Reset fieldset  remove all borders/padding */
.variant-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

/* Hide the legend ("Size" label) */
.variant-label {
  display: none;
}

/* Color swatches */
.variant-group {
  margin: 0;
}
.variant-group__label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #000;
}
.variant-buttons--color {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 749px) {
  .variant-buttons--meta {
    margin-top: 5px;
  }
}
@media (min-width: 750px) {
  .variant-buttons--meta {
    margin-top: 32px;
  }
}
.variant-swatch {
  position: relative;
  width: 30px;
}
.variant-swatch__link {
  display: block;
  line-height: 0;
}
.variant-swatch__link .variant-swatch__label {
  cursor: pointer;
}
.variant-swatch__link.is-active .variant-swatch__label {
  border-color: #000;
}
.variant-swatch__label {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 0.75px solid transparent;
  cursor: pointer;
  transition: border-color .2s;
}
.variant-swatch__label:hover {
  opacity: 1!important;
  border-color: #000;
}
.variant-swatch__label--active {
  border-color: #000;
}

.variant-swatch__label--light {
  border-color: #d9d9d9;
}

/* Fallback mapping for non-CSS color names (e.g. off-white, macchiato) */
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="white"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="blanco"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="off-white"] {
  background-color: #fff !important;
  border-color: #d9d9d9;
}
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="black"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="negro"] {
  background-color: #000 !important;
}
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="blue"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="azul"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="navy"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="marino"] {
  background-color: #2f3b8f !important;
}
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="brown"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="marron"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="coffee"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="chocolate"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="pony"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="camel"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="tan"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="arena"],
.variant-swatch__label:not([style*="background-color"]):not([style*="background-image"])[data-color*="macchiato"] {
  background-color: #8a4b2c !important;
}

/*  10. Size selector (radio labels)  */
.size-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 2px;
  padding-bottom: 8px;
}
.size-option {
  display: inline-flex;
  align-items: center;
}
.size-option--placeholder {
  visibility: hidden;
  pointer-events: none;
}
.size-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.size-label {
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #000;
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
  padding: 4px 0;
}
.size-radio:checked + .size-label {
  font-weight: 600;
}
.size-radio:checked + .size-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: #000;
}
.size-label:hover {
  opacity: .7;
}
.size-option--unavailable .size-label {
  color: #000;
  text-decoration: line-through;
  cursor: pointer;
  opacity: .4;
}
.size-option--unavailable .size-label:hover {
  opacity: .4;
}
.size-option--unavailable .size-radio:checked + .size-label::after {
  display: none;
}

/* Size guide link  inline with sizes, pushed right */
.size-guide-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s ease;
  margin-left: auto;
  flex-shrink: 0;
  height: 24px;
}
.size-guide-link:hover {
  opacity: .8;
}
.size-guide-text {
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
  transition: border-color .2s ease;
  line-height: 14px;
}

/*  11. Quantity selector  */
.quantity-selector {
  display: flex;
  align-items: center;
}
.quantity-input-group {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.quantity-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 0 !important;
  cursor: pointer;
  color: #000;
  padding: 0 !important;
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  min-width: 0 !important;
  height: 32px !important;
}
.quantity-btn::before,
.quantity-btn::after {
  display: none !important;
  content: none !important;
}
.quantity-btn:hover {
  background: rgba(0, 0, 0, 0.05) !important;
}
.quantity-input {
  width: 36px;
  height: 32px;
  text-align: center;
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  color: #000;
  -moz-appearance: textfield;
  padding: 0;
}
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*  12. Buy buttons / CTA  */
.product-form__submit {
  position: relative;
  width: 100%;
  height: 64px;
  padding: 0 32px;
  border-radius: 50px !important;
  background: #FFFFFF;
  border: 1px solid #000000;
  color: #000000;
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  cursor: pointer;
  overflow: hidden;
  transition:
    color .3s cubic-bezier(.4,0,.2,1),
    border-color .3s cubic-bezier(.4,0,.2,1);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.product-form__submit[hidden],
.product-bis[hidden] {
  display: none !important;
}

.product-form__market-restriction {
  margin: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: #000;
  text-transform: uppercase;
}

/* Hover  handled by ::before sweep in component-buttons.css */

/* Focus (accessibility) */
.product-form__submit:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
}

/* Disabled / sold-out */
.product-form__submit:disabled,
.product-form__submit[aria-disabled="true"] {
  background: #fff;
  border: 1px solid #ccc;
  color: #999;
  cursor: not-allowed;
  opacity: .6;
  transform: none;
  box-shadow: none;
}

/* Loading state */
.product-form__submit.is-loading {
  cursor: wait;
  pointer-events: none;
}
.product-form__submit.is-loading .button__text { opacity: 0; }
.product-form__submit.is-loading .button__spinner { display: flex; }

/* Button inner elements */
.button__text {
  display: inline-block;
  transition: opacity .2s ease;
}
.product-bis {
  margin-top: 8px;
}

.product-bis__title {
  margin: 0 0 14px;
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}

.product-bis__field {
  border: 1px solid #d9d9d9;
  background: #fff;
}

.product-bis__input-group {
  max-width: none;
}

.product-bis__submit.pompeii-ft__submit-btn {
  margin-left: 16px;
}

.product-bis__submit.pompeii-ft__submit-btn:disabled {
  cursor: wait;
  opacity: 1;
}

.product-bis__submit[aria-busy="true"] .button__text {
  opacity: 0.6;
}

.product-bis__submit .button__text::before,
.product-bis__submit .button__text::after {
  content: none !important;
  display: none !important;
}

.product-bis__marketing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  cursor: pointer;
}

.product-bis__checkbox {
  width: 14px;
  height: 14px;
  margin: 0;
  border-radius: 0;
  accent-color: #000;
}

.product-bis__legal {
  margin: 10px 0 0;
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.45);
}

.product-bis__legal a {
  color: inherit;
  text-decoration: underline;
}

.product-bis__message {
  display: none;
  margin: 10px 0 0;
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.product-bis__message.is-visible {
  display: block;
}

.product-bis__message.is-success {
  color: #000;
}

.product-bis__message.is-error {
  color: #8b0000;
}

@media screen and (min-width: 750px) {
  .product-bis__marketing,
  .product-bis__legal {
    display: none !important;
  }
}

 screen and (max-width: 749px) {
  .product-bis__marketing,
  .product-bis__legal {
    display: none !important;
  }
}

.button__spinner {
  display: none;
  position: absolute;
  align-items: center;
  justify-content: center;
}


/* Spinner animation */
@keyframes pompeii-spin {
  to { transform: rotate(360deg); }
}
@keyframes pompeii-dash {
  0%   { stroke-dashoffset: 50; }
  50%  { stroke-dashoffset: 12.5; }
  100% { stroke-dashoffset: 50; }
}
.spinner {
  animation: pompeii-spin 1s linear infinite;
}
.spinner circle {
  stroke-dasharray: 50;
  stroke-dashoffset: 0;
  animation: pompeii-dash 1.5s ease-in-out infinite;
}

/* Dynamic checkout  hidden to match design */
.pompeii-pdp__dynamic-checkout {
  display: none;
}

/*  13. Description block  */
.pompeii-pdp__description {
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  color: #000000;
}
.pompeii-pdp__description p { margin: 0 0 12px; }
.pompeii-pdp__description p:last-child { margin-bottom: 0; }

/* Collapsible description */
.product-description--collapsible {
  border-bottom: 1px solid #e0e0e0;
}
.product-description__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #000;
  list-style: none;
  user-select: none;
}
.product-description__toggle::-webkit-details-marker { display: none; }
.product-description__content {
  padding: 0 0 16px;
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  color: #000000;
}

/*  14. Rating block  */
.product-block--rating .product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-rating__stars { color: #f5a623; font-size: 14px; }
.product-rating__count { font-size: 10px; color: rgba(0, 0, 0, 0.25); }

/*  15. Share block  */
.product-block--share .product-share {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: #000;
}
.product-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s;
}
.product-share__btn:hover { border-color: #000; }
.product-share__btn svg { width: 16px; height: 16px; }

/*  16. Collapsible tab / Accordion  */
.product-block--collapsible_tab {
  border-bottom: 1px solid #e0e0e0;
  padding: 8px 0;
}
.product-block--collapsible_tab:first-child {
  border-top: 1px solid #e0e0e0;
}
.product-block--collapsible_tab details {
  border: none;
}
.product-block--collapsible_tab summary,
.collapsible-tab__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 24px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: none;
  color: #000000;
  list-style: none;
  user-select: none;
}

/* Line separator above each collapsible tab — Figma reference */
details.collapsible-tab {
  border-top: 1px solid #e0e0e0;
  padding-top: 8px;
  margin-top: 8px;
}
.product-block--collapsible_tab summary::-webkit-details-marker { display: none; }
.collapsible-tab__heading::-webkit-details-marker { display: none; }

.collapsible-tab__title {
  flex: 1;
}

/* Chevron */
.collapsible-tab__chevron,
.pompeii-pdp__chevron {
  width: 14px;
  height: 14px;
  transition: transform .25s ease;
  flex-shrink: 0;
  color: #000000;
}
details[open] > summary .collapsible-tab__chevron,
details[open] > summary .pompeii-pdp__chevron {
  transform: rotate(90deg);
}

/* Accordion content */
.collapsible-tab__content,
.product-block--collapsible_tab .accordion-content {
  padding: 8px 0 16px;
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
}
.collapsible-tab__content p,
.product-block--collapsible_tab .accordion-content p { margin: 0 0 10px; }
.collapsible-tab__content p:last-child,
.product-block--collapsible_tab .accordion-content p:last-child { margin-bottom: 0; }

/* Size guide table */
.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 100%;
  color: #000;
}
.size-guide-table th,
.size-guide-table td {
  padding: 6px 8px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.size-guide-table th {
  font-weight: 400;
  opacity: 0.5;
  text-transform: uppercase;
  font-size: 9px;
}
.size-guide-table tr:last-child td {
  border-bottom: none;
}
.size-guide-table__label {
  font-weight: 400;
  opacity: 0.5;
}

/*  Short description & model info (custom liquid blocks)  */
.pdp-short-description {
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 150%;
  letter-spacing: 0;
  color: #000000;
  padding-bottom: 12px;
}
.pdp-model-info {
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 150%;
  letter-spacing: 0;
  color: #000000;
  opacity: 0.25;
  padding-bottom: 12px;
}

/*  17. Text block  */

/*  Complementary products (in details column)  */
.product-complementary {
  margin-top: 32px;
}
.product-complementary__heading {
  display: none;
}
.product-complementary__grid {
  display: grid;
  grid-template-columns: repeat(var(--per-page, 2), 1fr);
  gap: 12px;
}
.product-complementary__card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #000;
}
.product-complementary__img-wrap {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}
.product-complementary__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.product-complementary__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-complementary__name {
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  line-height: 12px;
  color: #000000;
  margin: 0;
  text-transform: none;
}
.product-complementary__price {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  line-height: 12px;
  color: #000000;
  margin: 0;
}

/*  17b. Text block  */
.product-custom-text {
  font-size: 10px;
  line-height: 1.4;
  color: #000;
}
.product-custom-text--subtitle {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.5);
}
.product-custom-text--uppercase {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}

/*  18. Popup / Modal  */
.product-block--popup .popup-trigger {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.product-block--popup .popup-trigger:hover { color: #000; }

.popup-dialog {
  border: none;
  border-radius: 4px;
  padding: 32px;
  max-width: 560px;
  width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 12px 48px rgba(0,0,0,.18);
}
.popup-dialog::backdrop { background: rgba(0,0,0,.5); }
.popup-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.popup-dialog__close svg { width: 20px; height: 20px; }

/*  19. Complementary products  */
.product-block--complementary .complementary-heading {
  font-size: 10px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 12px;
  color: #000;
}
.product-block--complementary .complementary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.product-block--complementary .complementary-card {
  text-decoration: none;
  color: inherit;
}
.product-block--complementary .complementary-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  margin-bottom: 6px;
}
.product-block--complementary .complementary-card__title {
  font-size: 10px;
  font-weight: 400;
  color: #000;
  margin-bottom: 2px;
}
.product-block--complementary .complementary-card__price {
  font-size: 10px;
  font-weight: 500;
  color: #000;
}

/*  20. Icon with text  */
.product-block--icon_with_text .icon-text-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 10px;
  color: #000;
}
.icon-text-row__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.icon-text-row__heading {
  font-weight: 400;
  font-size: 10px;
  margin: 0 0 2px;
}
.icon-text-row__description {
  font-size: 10px;
  color: #000;
  margin: 0;
}

/*  21. Additional links (WhatsApp, Klarna inline)  */
.product-additional-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;
}
.product-additional-links__sep {
  color: #ccc;
  font-size: 10px;
}
.product-link--secondary {
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #999;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s ease;
}
.product-link--secondary:hover {
  opacity: .7;
  color: #999;
}
.klarna-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.klarna-inline a {
  text-decoration: none!important;
}
.klarna-inline p {
  display: inline;
  text-align: center;
  margin: 0;
}
.product-link--underline {
  text-decoration: underline;
}

/*  22. (Klarna inline styles handled by .product-link--secondary above)  */

/*  23. Store availability trigger  */
.product-block--store_availability {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}
.store-availability__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 10px;
  color: #000;
  transition: opacity .2s ease;
  width: 100%;
}
.store-availability__trigger:hover {
  opacity: .8;
}
.store-availability__trigger:hover .store-availability__text {
  text-decoration: underline;
}
.store-availability__icon {
  width: 14px;
  height: 14px;
  border-radius: 0 !important;
  background: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.store-availability__icon svg {
  width: 14px;
  height: 14px;
}
.store-availability__text {
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #000;
}
.store-availability__list {
  margin-top: 12px;
  padding: 0;
  text-align: center;
}
.store-availability__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.store-availability__sentence {
  font-family: 'Univers LT Std', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.25);
  margin: 0 0 4px;
}
.store-availability__sentence:last-child {
  margin-bottom: 0;
}
.store-availability__empty {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.25);
  margin: 0;
  text-align: center;
}

/*  24. Visually hidden helper  */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/*  25. RTE (rich text editor) defaults  */
.rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6 {
  margin: 0 0 .5em;
}
.rte p { margin: 0 0 1em; }
.rte p:last-child { margin-bottom: 0; }
.rte ul, .rte ol { padding-left: 1.2em; margin: 0 0 1em; }
.rte a { color: inherit; text-decoration: underline; }

/* ============================================================
   DESKTOP  3-COLUMN GRID ( 1025px)
   ============================================================ */
@media (min-width: 1025px) {

  .pompeii-pdp {
    display: grid;
    grid-template-columns: minmax(260px, 444px) minmax(420px, 726px) minmax(260px, 444px);
    grid-template-rows: auto;
    column-gap: clamp(20px, 5vw, 105px);
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 48px;
  }

  /* Column assignments */
  .pompeii-pdp__purchase { grid-column: 1; grid-row: 1; order: unset; }
  .pompeii-pdp__gallery  { grid-column: 2; grid-row: 1; order: unset; }
  .pompeii-pdp__details  { grid-column: 3; grid-row: 1; order: unset; }

  /* Sticky sidebars: centered while scrolling, flush at gallery end */
  .pompeii-pdp__purchase {
    position: sticky;
    top: var(--pdp-sticky-top, 0px);
    transform: none;
    height: fit-content;
    max-height: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: start;
    overflow: visible;
    padding: 0;
  }

  .pompeii-pdp__details {
    position: sticky;
    top: var(--pdp-sticky-top, 0px);
    transform: none;
    height: fit-content;
    max-height: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: start;
    overflow: visible;
    padding: 0;
    min-width: 0;
    word-break: break-word;
  }

  .pompeii-pdp__purchase-inner,
  .pompeii-pdp__details-inner {
    width: 100%;
    max-width: 444px;
  }

  .pompeii-pdp__purchase-inner {
    margin-right: auto;
    text-align: left;
  }
  .pompeii-pdp__purchase {
    justify-self: stretch;
  }

  /* Mirror de columna 1: anclada al borde derecho */
  .pompeii-pdp__details {
    justify-self: end;
    margin-right: 0;
  }
  .pompeii-pdp__details-inner {
    margin: 0 auto 0 0;
  }

  /* Thin scrollbar for sticky columns */
  .pompeii-pdp__purchase::-webkit-scrollbar,
  .pompeii-pdp__details::-webkit-scrollbar {
    width: 3px;
  }
  .pompeii-pdp__purchase::-webkit-scrollbar-thumb,
  .pompeii-pdp__details::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
  }

  /* Gallery  center column scrolls freely, small gap between images */
  .pompeii-pdp__gallery {
    align-self: start;
    padding-top: 16px;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    overflow: visible;
  }
  .pompeii-pdp__gallery .product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .pompeii-pdp__gallery .product-gallery__item {
    flex: none;
    width: 100%;
    max-width: 726px;
    margin: 0 auto;
    height: auto;
    background: #e8e8e8;
  }
  .pompeii-pdp__gallery .product-gallery__item img,
  .pompeii-pdp__gallery .product-gallery__item video {
    width: 100%;
    max-width: 726px;
    height: auto;
    object-fit: contain;
  }

  /* Header and price hierarchy */
  .product-header {
    align-items: flex-start;
    min-height: 40px;
  }
  .product-header .product-block--title {
    flex: 0 1 291px;
    min-width: 0;
  }
  .product-header .product-block--price {
    flex: 0 0 137px;
    text-align: right;
  }
  .product-title {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0;
  }
  .product-price {
    justify-content: flex-end;
  }
  .product-price__current {
    font-size: 10px;
    line-height: 14px;
  }

  /* Variant row */
  .product-block--variant_picker {
    margin-top: 2px;
  }
  .product-variant-picker .variant-fieldset--size,
  .product-variant-picker .variant-fieldset--talla {
    order: 10;
  }
  .product-variant-picker .variant-fieldset--color,
  .product-variant-picker .variant-fieldset--colour {
    order: 20;
    margin-top: 14px;
  }
  .size-selector {
    width: 100%;
    gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap-reverse;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 30px;
  }
  .size-option {
    width: 30px;
    height: 30px;
    position: relative;
  }
  .size-label {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    opacity: 0.5;
  }
  .size-radio:checked + .size-label {
    font-weight: 400;
    opacity: 1;
  }
  .size-radio:checked + .size-label::after {
    left: 0;
    transform: none;
    width: 100%;
    height: 1px;
    bottom: 0;
  }
  .size-option--unavailable .size-label {
    text-decoration: none;
    opacity: 0.15;
  }
  .size-option--unavailable .size-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: currentColor;
  }
  .size-guide-link {
    min-width: 94px;
    height: 30px;
    flex: 0 0 auto;
  }
  .size-selector.size-selector--wrapped .size-guide-link {
    flex-basis: 100%;
    margin-left: 0;
    justify-content: flex-end;
  }
  .size-selector.size-selector--wrapped {
    column-gap: 0;
    justify-content: space-between;
  }
  .size-guide-text {
    line-height: 1.2;
    border-bottom-color: currentColor;
  }

  .variant-buttons--color {
    gap: 12px;
  }
  .variant-swatch__label {
    width: 20px;
    height: 20px;
    border-width: 0.75px;
  }
  
  .product-block--buy_buttons {
    margin-top: 48px;
  }
  .pompeii-pdp__purchase .product-form__submit {
    width: 100%;
    height: 64px;
    border-radius: 999px !important;
    font-size: 12px;
    letter-spacing: 0;
    color: #000;
    border-color: #000;
  }

  /* Secondary links row */
  .product-additional-links {
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    padding: 0;
    border-bottom: none;
  }
  .product-additional-links__sep {
    font-size: 10px;
    opacity: 0.25;
  }
  .product-link--secondary {
    line-height: 1.2;
    color: #000;
    opacity: 0.25;
  }
  .klarna-inline {
    opacity: 1;
    color: #b3b3b3;
  }
  .klarna-inline .product-link--secondary {
    opacity: 1;
    color: inherit;
  }
  .klarna-inline strong {
    font-weight: 600;
    color: inherit;
  }

  /* Store availability (left column) */
  .product-block--store_availability {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .product-block--store_availability .store-availability__trigger {
    justify-content: center;
    gap: 0;
    width: 100%;
    padding: 0;
    min-height: 16px;
  }
  .product-block--store_availability .store-availability__icon {
    display: none;
  }
  .product-block--store_availability .store-availability__text {
    width: 100%;
    text-align: center;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
  }
  .product-block--store_availability .store-availability__trigger:hover {
    opacity: 1;
  }
  .product-block--store_availability .store-availability__trigger:hover .store-availability__text {
    text-decoration: none;
  }
  .product-block--store_availability .store-availability__list {
    margin-top: 12px;
  }
  .product-block--store_availability .store-availability__item {
    font-size: 10px;
    line-height: 1.2;
  }

  /* Details text hierarchy */
  .pdp-short-description,
  .pdp-model-info {
    font-size: 10px;
    line-height: 1.2;
    padding-bottom: 0;
  }
  .pdp-short-description {
    margin: 0 0 16px;
  }
  .pdp-model-info {
    margin: 0 0 48px;
  }

  .product-block--collapsible_tab {
    padding: 0;
    border-bottom: none;
  }
  .product-block--collapsible_tab:first-child {
    border-top: none;
  }
  .product-block--collapsible_tab details {
    border-bottom: 1px solid rgba(0, 0, 0, 1);
  }
  .product-block--collapsible_tab summary,
  .collapsible-tab__heading {
    height: 32px;
    line-height: 1.2;
  }
  .collapsible-tab__content,
  .product-block--collapsible_tab .accordion-content {
    padding: 12px 0 16px;
    line-height: 1.2;
  }
}

/* Small desktop refinement (1025–1200): keep side paddings and avoid cramped columns */
@media (min-width: 1025px) and (max-width: 1200px) {
  .pompeii-pdp {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.35fr) minmax(0, 1.08fr);
    column-gap: clamp(16px, 2vw, 28px);
  }

  .pompeii-pdp__purchase-inner,
  .pompeii-pdp__details-inner {
    max-width: 100%;
  }

  .pompeii-pdp__gallery .product-gallery__item,
  .pompeii-pdp__gallery .product-gallery__item img,
  .pompeii-pdp__gallery .product-gallery__item video {
    max-width: clamp(340px, 41vw, 500px);
  }

  .pompeii-pdp__gallery .product-gallery__item {
    margin-left: auto;
    margin-right: auto;
  }

  .pompeii-pdp__details .product-complementary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* Figma desktop baseline (1920px): 444 | 726 | 444 with 105px gutters */
@media (min-width: 1920px) {
  .pompeii-pdp {
    grid-template-columns: 444px 726px 444px;
    column-gap: 105px;
  }
}

/* Above 1920px, keep the gallery fixed and let side content fill the extra width. */
@media (min-width: 1921px) {
  .pompeii-pdp {
    grid-template-columns: minmax(0, 1fr) 726px minmax(0, 1fr);
    column-gap: 105px;
    justify-content: stretch;
  }

  .pompeii-pdp__details {
    margin-right: 0;
  }

  .pompeii-pdp__purchase-inner,
  .pompeii-pdp__details-inner {
    max-width: none;
  }
}

/*  Tablet tweaks (750  1024)  */
@media (min-width: 750px) and (max-width: 1024px) {
  .pompeii-pdp {
    grid-template-columns:
      var(--pdp-purchase-width, 25%)
      1fr
      var(--pdp-details-width, 28%);
  }
  .pompeii-pdp__purchase,
  .pompeii-pdp__details {
    padding: 24px 16px;
  }
  .pompeii-pdp__purchase-inner,
  .pompeii-pdp__details-inner {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/*  Buy button responsive  */
@media (max-width: 749px) {
  .product-form__submit {
    height: 52px;
    font-size: 12px;
    padding: 0 24px;
  }
  .product-header {
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
  }
  .product-title {
    font-size: 10px;
    flex: 1;
  }
  .product-price__current {
    font-size: 10px;
  }
  .size-selector {
    gap: 10px;
  }
  .size-label {
    font-size: 10px;
    padding: 6px 8px;
  }
  .product-additional-links {
    flex-direction: column;
    gap: 8px;
  }
  .product-additional-links__sep {
    display: none;
  }
}
@media (max-width: 480px) {
  .product-form__submit {
    font-size: 11px;
    letter-spacing: .03em;
  }
}

/*  Reduced motion (accessibility)  */
@media (prefers-reduced-motion: reduce) {
  .product-form__submit {
    transition: none;
  }
  .product-form__submit:hover:not(:disabled) {
    transform: none;
  }
  .spinner,
  .spinner circle {
    animation: none;
  }
}

/*  CSS custom properties are set inline from section Liquid  */

/* ==========================================
   PDP COLOR SWATCHES STANDALONE
   Muestra custom.color_swatches aunque no haya opción de color como variante
   ========================================== */

.pdp-color-swatches {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  margin-left: 7.5px;
}

/* Mobile: swatch alineado verticalmente con el centro de la fila de tallas */
@media (max-width: 749px) {
  .product-block--variant_picker {
    position: relative;
  }
  /* Espacio a la derecha para que el swatch no tape la última talla */
  .product-block--variant_picker .product-variant-picker {
    padding-right: 28px;
  }
  .pdp-color-swatches {
    position: static;
    right: auto;
    top: auto;
    transform: none;
    margin: 0;
  }
}

.pdp-color-swatch {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  display: block;
  flex-shrink: 0;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
}

.pdp-color-swatch--light {
  border-color: #d9d9d9;
}

.pdp-color-swatch--active {
  border-color: #000;
}

.pdp-color-swatch:hover {
  border-color: #000;
}
