.product-info-panel-2d83969b {
  --pip-title: #181714;
  --pip-label: #686158;
  --pip-value: #35312d;
  --pip-accent: #879039;
  --pip-muted-bg: #f4efe9;
  --pip-border: #e4dad1;
  --pip-description: #5f5a55;
  --pip-intro: #5f5a55;
  --pip-breadcrumb: #777168;
  --pip-gallery-bg: #f7f2ed;
  --pip-gallery-border: #e7ddd4;
  --pip-section-gap: 24px;
  --pip-column-gap: 42px;
  --pip-swatch-size: 28px;
  --pip-gallery-ratio: 1 / 1;
  --pip-gallery-fit: cover;
  --pip-gallery-radius: 18px;
  --pip-related-card-bg: #fffdf9;
  --pip-related-card-border: #e7ddd4;
  --pip-related-badge-bg: #f4efe9;
  --pip-related-gap: 18px;
  --pip-related-image-ratio: 1 / 1;
  --pip-related-card-radius: 14px;

  width: 100%;
  min-width: 0;
  color: var(--pip-value);
}

.product-info-panel-2d83969b,
.product-info-panel-2d83969b * {
  box-sizing: border-box;
}

.product-info-panel-2d83969b button,
.product-info-panel-2d83969b a {
  -webkit-tap-highlight-color: transparent;
}

/* Two-column product presentation */
.product-info-panel-2d83969b__primary {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
  gap: var(--pip-column-gap);
  width: 100%;
  min-width: 0;
}

.product-info-panel-2d83969b--no-media .product-info-panel-2d83969b__primary,
.product-info-panel-2d83969b--no-summary .product-info-panel-2d83969b__primary {
  grid-template-columns: minmax(0, 1fr);
}

.product-info-panel-2d83969b__media-column,
.product-info-panel-2d83969b__summary-column {
  min-width: 0;
}

/* Align the right-side title with the gallery rather than the breadcrumb row. */
.product-info-panel-2d83969b--has-breadcrumbs .product-info-panel-2d83969b__summary-column {
  padding-top: 34px;
}

/* Breadcrumbs */
.product-info-panel-2d83969b__breadcrumbs {
  width: 100%;
  min-width: 0;
  margin: 0 0 14px;
  color: var(--pip-breadcrumb);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.product-info-panel-2d83969b__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-info-panel-2d83969b__breadcrumb-item {
  display: inline-flex;
  min-width: 0;
  align-items: center;
}

.product-info-panel-2d83969b__breadcrumb-item + .product-info-panel-2d83969b__breadcrumb-item::before {
  content: "/";
  margin: 0 7px;
  color: color-mix(in srgb, var(--pip-breadcrumb) 52%, transparent);
}

.product-info-panel-2d83969b__breadcrumb-item a,
.product-info-panel-2d83969b__breadcrumb-item span {
  max-width: min(240px, 52vw);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-info-panel-2d83969b__breadcrumb-item a {
  transition: color 180ms ease;
}

.product-info-panel-2d83969b__breadcrumb-item a:hover,
.product-info-panel-2d83969b__breadcrumb-item a:focus-visible {
  color: var(--pip-accent);
}

/* Dynamic product gallery */
.product-info-panel-2d83969b__gallery {
  width: 100%;
  min-width: 0;
}

.product-info-panel-2d83969b__gallery-stage {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: var(--pip-gallery-ratio);
  overflow: hidden;
  border: 1px solid var(--pip-gallery-border);
  border-radius: var(--pip-gallery-radius);
  background: var(--pip-gallery-bg);
  box-shadow: 0 12px 34px rgba(67, 57, 49, 0.07);
}

.product-info-panel-2d83969b__gallery-main {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-info-panel-2d83969b__gallery-main:not(button) {
  cursor: default;
}

.product-info-panel-2d83969b__gallery-main-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--pip-gallery-fit);
  object-position: center;
  transform: scale(1.001);
  transition: opacity 180ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-info-panel-2d83969b__gallery-stage:hover .product-info-panel-2d83969b__gallery-main-image {
  transform: scale(1.025);
}

.product-info-panel-2d83969b__gallery-main-image.is-changing {
  opacity: 0.25;
}

.product-info-panel-2d83969b__gallery-zoom,
.product-info-panel-2d83969b__gallery-arrow,
.product-info-panel-2d83969b__lightbox-close,
.product-info-panel-2d83969b__lightbox-arrow {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: #27340f;
  box-shadow: 0 8px 20px rgba(40, 34, 27, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-info-panel-2d83969b__gallery-zoom {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  pointer-events: none;
}

.product-info-panel-2d83969b__gallery-zoom svg,
.product-info-panel-2d83969b__gallery-arrow svg,
.product-info-panel-2d83969b__lightbox-close svg,
.product-info-panel-2d83969b__lightbox-arrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-info-panel-2d83969b__gallery-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.product-info-panel-2d83969b__gallery-arrow--previous {
  left: 14px;
  transform: translate(-7px, -50%);
}

.product-info-panel-2d83969b__gallery-arrow--next {
  right: 14px;
  transform: translate(7px, -50%);
}

.product-info-panel-2d83969b__gallery-stage:hover .product-info-panel-2d83969b__gallery-arrow,
.product-info-panel-2d83969b__gallery-arrow:focus-visible {
  opacity: 1;
  transform: translate(0, -50%);
}

.product-info-panel-2d83969b__gallery-arrow:hover,
.product-info-panel-2d83969b__gallery-arrow:focus-visible,
.product-info-panel-2d83969b__lightbox-close:hover,
.product-info-panel-2d83969b__lightbox-close:focus-visible,
.product-info-panel-2d83969b__lightbox-arrow:hover,
.product-info-panel-2d83969b__lightbox-arrow:focus-visible {
  background: #ffffff;
  color: var(--pip-accent);
  outline: none;
}

.product-info-panel-2d83969b__gallery-count {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  min-width: 48px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(36, 31, 27, 0.7);
  color: #fff;
  font-size: 10px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-info-panel-2d83969b__gallery-thumbnails {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(68px, 88px);
  gap: 10px;
  width: 100%;
  margin-top: 11px;
  padding: 1px 1px 7px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scroll-snap-type: inline proximity;
}

.product-info-panel-2d83969b__gallery-thumbnail {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--pip-gallery-border);
  border-radius: 11px;
  background: var(--pip-gallery-bg);
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-info-panel-2d83969b__gallery-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-info-panel-2d83969b__gallery-thumbnail:hover,
.product-info-panel-2d83969b__gallery-thumbnail:focus-visible {
  border-color: color-mix(in srgb, var(--pip-accent) 65%, var(--pip-gallery-border));
  outline: none;
  transform: translateY(-2px);
}

.product-info-panel-2d83969b__gallery-thumbnail.is-active {
  border-color: var(--pip-accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--pip-accent) 22%, transparent);
}

/* Dynamic WooCommerce product title */
.product-info-panel-2d83969b__title {
  margin: 0 0 20px;
  color: var(--pip-title);
  font-family:
    var(--e-global-typography-primary-font-family, Georgia),
    "Times New Roman",
    serif;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

/* Compact product introduction below the title */
.product-info-panel-2d83969b__intro-description {
  width: min(100%, 620px);
  margin: -6px 0 var(--pip-section-gap);
  color: var(--pip-intro);
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.product-info-panel-2d83969b__intro-description > :first-child { margin-top: 0; }
.product-info-panel-2d83969b__intro-description > :last-child { margin-bottom: 0; }
.product-info-panel-2d83969b__intro-description p { margin: 0; }

/* Display-only scent swatches */
.product-info-panel-2d83969b__swatches {
  margin-bottom: var(--pip-section-gap);
}

.product-info-panel-2d83969b__swatch-heading,
.product-info-panel-2d83969b__field-label,
.product-info-panel-2d83969b__description-tab {
  color: var(--pip-label);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.product-info-panel-2d83969b__swatch-heading {
  margin: 0 0 11px;
}

.product-info-panel-2d83969b__swatch-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.product-info-panel-2d83969b__swatch-item {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 42px;
  max-width: 78px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-info-panel-2d83969b__swatch-circle {
  display: grid;
  place-items: center;
  width: var(--pip-swatch-size);
  height: var(--pip-swatch-size);
  min-width: var(--pip-swatch-size);
  min-height: var(--pip-swatch-size);
  overflow: hidden;
  border: 1px solid rgba(46, 42, 38, 0.18);
  border-radius: 50%;
  background-color: #f5f1ed;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9);
}

.product-info-panel-2d83969b__swatch-circle--fallback {
  color: var(--pip-accent);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.product-info-panel-2d83969b__swatch-name {
  display: block;
  width: 100%;
  margin-top: 7px;
  color: var(--pip-label);
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

/* Product information rows */
.product-info-panel-2d83969b__details {
  width: 100%;
  margin-bottom: var(--pip-section-gap);
  border-top: 1px solid var(--pip-border);
}

.product-info-panel-2d83969b__field-row {
  display: grid;
  grid-template-columns: minmax(92px, 0.28fr) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  width: 100%;
  padding: 13px 0;
  border-bottom: 1px solid var(--pip-border);
}

.product-info-panel-2d83969b__field-label {
  padding-top: 2px;
}

.product-info-panel-2d83969b__field-value {
  min-width: 0;
  color: var(--pip-value);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.product-info-panel-2d83969b__measurement {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  max-width: 100%;
  padding: 5px 12px;
  border: 1px solid rgba(126, 116, 106, 0.12);
  border-radius: 999px;
  background: var(--pip-muted-bg);
  color: var(--pip-value);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
}

/* Description spans both columns */
.product-info-panel-2d83969b__description {
  width: 100%;
  margin-top: clamp(34px, 5vw, 58px);
}

.product-info-panel-2d83969b__description-nav {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--pip-border);
}

.product-info-panel-2d83969b__description-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 8px;
  color: var(--pip-title);
  font-weight: 650;
}

.product-info-panel-2d83969b__description-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: var(--pip-accent);
}

.product-info-panel-2d83969b__description-content {
  width: min(100%, 980px);
  margin-inline: auto;
  color: var(--pip-description);
  font-size: 14px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.product-info-panel-2d83969b__description-content > :first-child { margin-top: 0; }
.product-info-panel-2d83969b__description-content > :last-child { margin-bottom: 0; }
.product-info-panel-2d83969b__description-content p { margin: 0 0 1em; }

.product-info-panel-2d83969b__description-content h2,
.product-info-panel-2d83969b__description-content h3,
.product-info-panel-2d83969b__description-content h4 {
  margin: 1.25em 0 0.5em;
  color: var(--pip-title);
  font-family:
    var(--e-global-typography-primary-font-family, Georgia),
    "Times New Roman",
    serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.product-info-panel-2d83969b__description-content h2 { font-size: clamp(23px, 2.4vw, 31px); }
.product-info-panel-2d83969b__description-content h3 { font-size: clamp(20px, 2vw, 26px); }
.product-info-panel-2d83969b__description-content h4 { font-size: 18px; }

.product-info-panel-2d83969b__description-content ul,
.product-info-panel-2d83969b__description-content ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.product-info-panel-2d83969b__description-content li + li { margin-top: 0.35em; }
.product-info-panel-2d83969b__description-content li::marker,
.product-info-panel-2d83969b__description-content a { color: var(--pip-accent); }

.product-info-panel-2d83969b__description-content img,
.product-info-panel-2d83969b__description-content video,
.product-info-panel-2d83969b__description-content iframe,
.product-info-panel-2d83969b__description-content table { max-width: 100%; }

.product-info-panel-2d83969b__description-content img {
  height: auto;
  border-radius: 12px;
}

.product-info-panel-2d83969b__description-content iframe { width: 100%; }

.product-info-panel-2d83969b__description-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.product-info-panel-2d83969b__description-content th,
.product-info-panel-2d83969b__description-content td {
  padding: 8px;
  border: 1px solid var(--pip-border);
  text-align: left;
}

/* Related products */
.product-info-panel-2d83969b__related {
  width: 100%;
  margin-top: clamp(42px, 6vw, 72px);
}

.product-info-panel-2d83969b__related-header {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin-bottom: 22px;
}

.product-info-panel-2d83969b__related-heading {
  flex: 0 0 auto;
  margin: 0;
  color: var(--pip-title);
  font-family:
    var(--e-global-typography-primary-font-family, Georgia),
    "Times New Roman",
    serif;
  font-size: clamp(29px, 3.6vw, 44px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.product-info-panel-2d83969b__related-line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--pip-border), transparent);
}

.product-info-panel-2d83969b__related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--pip-related-gap);
  width: 100%;
  min-width: 0;
}

.product-info-panel-2d83969b__related-card {
  display: flex;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--pip-related-card-border);
  border-radius: var(--pip-related-card-radius);
  background: var(--pip-related-card-bg);
  box-shadow: 0 8px 24px rgba(66, 55, 47, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-info-panel-2d83969b__related-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.product-info-panel-2d83969b__related-image-wrap {
  display: block;
  width: 100%;
  aspect-ratio: var(--pip-related-image-ratio);
  overflow: hidden;
  background: var(--pip-gallery-bg);
}

.product-info-panel-2d83969b__related-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-info-panel-2d83969b__related-body {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  padding: 15px;
  flex-direction: column;
}

.product-info-panel-2d83969b__related-meta {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
}

.product-info-panel-2d83969b__related-category {
  min-width: 0;
  color: var(--pip-accent);
  font-size: 9px;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-info-panel-2d83969b__related-measurement {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  border: 1px solid rgba(126, 116, 106, 0.12);
  border-radius: 999px;
  background: var(--pip-related-badge-bg);
  color: var(--pip-label);
  font-size: 9px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.product-info-panel-2d83969b__related-title {
  margin: 0 0 12px;
  color: var(--pip-title);
  font-family:
    var(--e-global-typography-primary-font-family, Georgia),
    "Times New Roman",
    serif;
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.product-info-panel-2d83969b__related-title a {
  color: inherit;
  text-decoration: none;
}

.product-info-panel-2d83969b__related-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--pip-border);
  color: var(--pip-accent) !important;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none !important;
}

.product-info-panel-2d83969b__related-link-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(127, 136, 26, 0.10);
  color: var(--pip-accent);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.product-info-panel-2d83969b__related-link-icon svg {
  display: block;
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (hover: hover) and (pointer: fine) {
  .product-info-panel-2d83969b__related-card:hover {
    border-color: color-mix(in srgb, var(--pip-accent) 28%, var(--pip-related-card-border));
    box-shadow: 0 14px 34px rgba(66, 55, 47, 0.095);
    transform: translateY(-4px);
  }

  .product-info-panel-2d83969b__related-card:hover .product-info-panel-2d83969b__related-image {
    transform: scale(1.035);
  }

  /* Hovering anywhere on the related-product card also activates its arrow button. */
  .product-info-panel-2d83969b__related-card:hover .product-info-panel-2d83969b__related-link-icon,
  .product-info-panel-2d83969b__related-card:focus-within .product-info-panel-2d83969b__related-link-icon {
    background-color: var(--pip-accent) !important;
    color: #ffffff !important;
    transform: translateX(2px);
  }
}

/* Fullscreen gallery */
.product-info-panel-2d83969b__lightbox[hidden] { display: none !important; }

.product-info-panel-2d83969b__lightbox {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-info-panel-2d83969b__lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.product-info-panel-2d83969b__lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  width: min(1100px, 100%);
  height: min(820px, calc(100vh - 48px));
}

.product-info-panel-2d83969b__lightbox-figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  max-height: 100%;
  margin: 0;
}

.product-info-panel-2d83969b__lightbox-image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 110px);
  margin: auto;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.product-info-panel-2d83969b__lightbox-caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.product-info-panel-2d83969b__lightbox-close {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}

.product-info-panel-2d83969b__lightbox-arrow {
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

.product-info-panel-2d83969b__lightbox-arrow--previous { grid-column: 1; }
.product-info-panel-2d83969b__lightbox-figure { grid-column: 2; }
.product-info-panel-2d83969b__lightbox-arrow--next { grid-column: 3; }

body.pip-gallery-lightbox-open { overflow: hidden; }

.product-info-panel-2d83969b--notice {
  padding: 14px 16px;
  border: 1px dashed var(--pip-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--pip-label);
  font-size: 13px;
  line-height: 1.55;
}

@media (hover: none), (pointer: coarse) {
  .product-info-panel-2d83969b__gallery-arrow {
    opacity: 1;
  }

  .product-info-panel-2d83969b__gallery-arrow--previous,
  .product-info-panel-2d83969b__gallery-arrow--next {
    transform: translate(0, -50%);
  }
}

@media (max-width: 1024px) {
  .product-info-panel-2d83969b__related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-info-panel-2d83969b__primary {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, var(--pip-column-gap));
  }

  .product-info-panel-2d83969b__title {
    font-size: clamp(33px, 5vw, 48px);
  }
}

@media (max-width: 767px) {
  .product-info-panel-2d83969b__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-info-panel-2d83969b__related-header {
    gap: 12px;
  }

  .product-info-panel-2d83969b__primary {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .product-info-panel-2d83969b--has-breadcrumbs .product-info-panel-2d83969b__summary-column {
    padding-top: 0;
  }

  .product-info-panel-2d83969b__title {
    font-size: clamp(31px, 10vw, 45px);
    line-height: 1;
  }

  .product-info-panel-2d83969b__field-row {
    grid-template-columns: minmax(80px, 0.34fr) minmax(0, 1fr);
    gap: 12px;
  }

  .product-info-panel-2d83969b__description {
    margin-top: 38px;
  }

  .product-info-panel-2d83969b__lightbox {
    padding: 14px;
  }

  .product-info-panel-2d83969b__lightbox-dialog {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    height: calc(100vh - 28px);
  }

  .product-info-panel-2d83969b__lightbox-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .product-info-panel-2d83969b__related-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-info-panel-2d83969b__related-body {
    padding: 14px;
  }

  .product-info-panel-2d83969b__related-heading {
    font-size: clamp(28px, 9vw, 38px);
  }

  .product-info-panel-2d83969b__breadcrumb-item a,
  .product-info-panel-2d83969b__breadcrumb-item span {
    max-width: 42vw;
  }

  .product-info-panel-2d83969b__gallery-arrow {
    width: 36px;
    height: 36px;
  }

  .product-info-panel-2d83969b__gallery-arrow--previous { left: 10px; }
  .product-info-panel-2d83969b__gallery-arrow--next { right: 10px; }

  .product-info-panel-2d83969b__gallery-count {
    right: 10px;
    bottom: 10px;
  }

  .product-info-panel-2d83969b__gallery-thumbnails {
    grid-auto-columns: 66px;
    gap: 8px;
  }

  .product-info-panel-2d83969b__swatch-list { gap: 10px; }

  .product-info-panel-2d83969b__swatch-item {
    min-width: 38px;
    max-width: 68px;
  }

  .product-info-panel-2d83969b__field-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 12px 0;
  }

  .product-info-panel-2d83969b__field-label { padding-top: 0; }

  .product-info-panel-2d83969b__description-content {
    font-size: 13.5px;
    line-height: 1.68;
  }

  .product-info-panel-2d83969b__lightbox-dialog {
    grid-template-columns: 1fr;
  }

  .product-info-panel-2d83969b__lightbox-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
  }

  .product-info-panel-2d83969b__lightbox-arrow--previous { left: 2px; }
  .product-info-panel-2d83969b__lightbox-arrow--next { right: 2px; }
  .product-info-panel-2d83969b__lightbox-figure { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .product-info-panel-2d83969b *,
  .product-info-panel-2d83969b *::before,
  .product-info-panel-2d83969b *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .product-info-panel-2d83969b__gallery-main-image,
  .product-info-panel-2d83969b__gallery-stage:hover .product-info-panel-2d83969b__gallery-main-image {
    transform: none;
  }
}

@media (forced-colors: active) {
  .product-info-panel-2d83969b__gallery-stage,
  .product-info-panel-2d83969b__gallery-thumbnail,
  .product-info-panel-2d83969b__swatch-circle,
  .product-info-panel-2d83969b__measurement,
  .product-info-panel-2d83969b--notice {
    border: 1px solid CanvasText;
  }
}
