.xlProductPanel,
.xlProductPanel *,
.xlProductPanel *::before,
.xlProductPanel *::after {
  box-sizing: border-box;
}

.xlProductPanel {
  position: fixed;
  inset: 0;
  z-index: var(--xl-drawer-overlay-z, 99990);
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  visibility: hidden;
}

.xlProductPanel[hidden] {
  display: none !important;
}

.xlProductPanel.is-open {
  pointer-events: auto;
  visibility: visible;
}

.xlProductPanel__overlay {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  backdrop-filter: blur(6px);
  background: rgba(28, 27, 25, .28);
  opacity: 0;
  cursor: default;
  transition: opacity .24s ease, visibility .24s ease;
}

.xlProductPanel.is-open .xlProductPanel__overlay {
  opacity: 1;
}

.xlProductPanel__drawer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(520px, 94vw);
  height: 100%;
  background: #fff;
  color: #222;
  box-shadow: -24px 0 70px rgba(28, 27, 25, .12);
  opacity: 0;
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), opacity .22s ease;
}

.xlProductPanel.is-open .xlProductPanel__drawer {
  opacity: 1;
  transform: translateX(0);
}

.xlProductPanel__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding: 24px 26px 20px;
  border-bottom: 1px solid #eee9e2;
  background: rgba(255, 255, 255, .96);
}

.xlProductPanel__eyebrow {
  margin: 0 0 7px;
  color: #5e5851;
  font-family: var(--font-heading, Outfit), system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.xlProductPanel__title {
  margin: 0;
  color: #222;
  font-family: var(--font-heading, Outfit), system-ui, sans-serif;
  font-size: clamp(25px, 3.1vw, 32px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.03;
}

.xlProductPanel__title::after {
  display: inline-block;
  width: .18em;
  height: .18em;
  margin-left: .09em;
  border-radius: 1px;
  background: #ffc13c;
  content: "";
  transform: translateY(-.02em);
  vertical-align: baseline;
}

.xlProductPanel__close {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid #e8e2da;
  border-radius: 6px;
  background: #fff;
  color: #222;
  cursor: pointer;
  font-family: var(--font-body, "DM Sans"), system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.xlProductPanel__close:hover,
.xlProductPanel__close:focus-visible {
  border-color: #d8d1c8;
  background: #f8f8f8;
  transform: translateY(-1px);
}

.xlProductPanel__closeIcon {
  width: 18px;
  height: 18px;
}

.xlProductPanel__body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 0;
  overflow: auto;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.xlProductPanel__loading,
.xlProductPanel__message,
.xl-panel-placeholder {
  margin: 22px;
  padding: 15px 16px;
  border: 1px solid #eee9e2;
  border-radius: 8px;
  background: #f8f8f8;
  color: #222;
  font-family: var(--font-body, "DM Sans"), system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.xlProductPanel-content {
  font-family: var(--font-body, "DM Sans"), system-ui, sans-serif;
  color: #222;
  font-size: 16px;
  line-height: 1.55;
}

.xlProductPanel-content > style {
  display: none !important;
}

.xlProductPanel-content h2,
.xlProductPanel-content h3,
.xlProductPanel-content h4 {
  margin: 0;
  color: #222;
  font-family: var(--font-heading, Outfit), system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.xlProductPanel-content h3 {
  font-size: 27px;
}

.xlProductPanel-content h4 {
  font-size: 19px;
}

.xlProductPanel-content p {
  margin: 0;
}

.xlProductPanel-content strong,
.xlProductPanel-content b {
  font-weight: 700;
}

.xlProductPanel-content a {
  color: #222;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #ffc13c;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.xlProductPanel-content img,
.xlProductPanel-content svg {
  max-width: 100%;
  height: auto;
}

.rdpp {
  display: grid;
  gap: 18px;
  padding: 22px 26px 30px;
}

.rdpp-hero {
  display: grid;
  gap: 11px;
}

.rdpp-hero h3 {
  max-width: 430px;
}

.rdpp-hero p {
  max-width: 470px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.rdpp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.rdpp-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #eee9e2;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.rdpp-grid,
.rdpp-stack {
  display: grid;
  gap: 10px;
}

.rdpp-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid #eee9e2;
  border-radius: 8px;
  background: #fff;
}

.rdpp-card--soft {
  background: #f8f8f8;
}

.rdpp-card h4 {
  font-size: 20px;
}

.rdpp-card p,
.rdpp-card li {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.48;
}

.rdpp-card ul {
  display: grid;
  gap: 0;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.rdpp-card li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 9px 0;
  border-top: 1px solid #f0ece7;
}

.rdpp-card li:first-child {
  border-top: 0;
}

.rdpp-label {
  color: #5e5851;
  font-family: var(--font-heading, Outfit), system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.rdpp-result {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  min-height: 34px;
  margin-top: 2px;
  padding: 0 11px;
  border-radius: 6px;
  background: #fff7e7;
  color: #222;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.rdpp-note {
  padding: 14px 16px;
  border: 1px solid #ffe2a0;
  border-radius: 8px;
  background: #fff8e8;
  color: #3f3420;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.rdpp-video {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid #eee9e2;
  border-radius: 8px;
  background: #fff;
}

.rdpp-video__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  color: #5e5851;
  font-family: var(--font-heading, Outfit), system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.rdpp-video__head::before {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffc13c;
  content: "";
}

.rdpp-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-top: 1px solid #eee9e2;
  background: #111;
}

.rdpp-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.rdpp-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid #eee9e2;
  border-radius: 8px;
  background: #fff;
}

.rdpp-row__index {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #222;
  color: #fff;
  font-family: var(--font-body, "DM Sans"), system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.rdpp-row h4 {
  margin: 1px 0 4px;
  font-size: 17px;
}

.rdpp-row p {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.rdpp-specs {
  display: grid;
  gap: 0;
}

.rdpp-spec {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-top: 1px solid #f0ece7;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.rdpp-spec:first-child {
  border-top: 0;
}

.rdpp-spec span:first-child {
  color: #5e5851;
  font-family: var(--font-heading, Outfit), system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.rdpp-swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rdpp-swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 10px 0 8px;
  border: 1px solid #eee9e2;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 700;
}

.rdpp-swatch::before {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 4px;
  background: var(--swatch, #f2f0e8);
  content: "";
}

.rdpp-legacy {
  padding: 22px 26px 30px;
}

body.xlProductPanel-isOpen [data-xl-product-sticky],
body.xlProductPanel-isOpen .xlsp-stickyBar {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

@media (max-width: 640px) {
  .xlProductPanel__drawer {
    width: 100%;
  }

  .xlProductPanel__header {
    padding: 22px 18px 18px;
  }

  .xlProductPanel__close span {
    display: none;
  }

  .rdpp {
    gap: 16px;
    padding: 20px 18px 28px;
  }

  .rdpp-card {
    padding: 15px;
  }

  .rdpp-card li {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
  }
}
