.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(var(--xl-drawer-overlay-blur, 8px));
  background: var(--xl-drawer-overlay-bg, rgba(17, 24, 39, 0.58));
  opacity: 0;
  cursor: default;
  transition: var(--xl-drawer-overlay-transition, opacity .24s ease, visibility .24s ease);
}

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

.xlProductPanel__drawer {
  position: relative;
  z-index: 1;
  width: min(var(--xl-drawer-width, 450px), var(--xl-drawer-max-width, 90vw));
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--xl-drawer-bg, #fff);
  color: #1f2024;
  box-shadow: var(--xl-drawer-shadow, -5px 0 15px rgba(0, 0, 0, 0.1));
  opacity: 0;
  transform: translateX(100%);
  transition: var(--xl-drawer-panel-transition, transform .32s cubic-bezier(.25, .46, .45, .94), visibility .32s cubic-bezier(.25, .46, .45, .94));
}

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

.xlProductPanel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px 24px;
  border-bottom: 1px solid #e5e1db;
}

.xlProductPanel__eyebrow {
  margin: 0 0 6px;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ff3b00;
}

.xlProductPanel__title {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  color: #111;
}

.xlProductPanel__close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 59, 0, .12);
  border-radius: 6px;
  background: #fff0ec;
  color: #ff3b00;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

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

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

.xlProductPanel__loading,
.xlProductPanel__message,
.xl-panel-placeholder {
  margin: 0;
  padding: 18px;
  border: 1px solid #e5e1db;
  border-radius: 8px;
  background: #f8f8f8;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #1f2024;
}

.xlProductPanel-content {
  font-family: "DM Sans", system-ui, sans-serif;
  color: #1f2024;
  font-size: 16px;
  line-height: 1.65;
}

.xlProductPanel-content > *:first-child {
  margin-top: 0;
}

.xlProductPanel-content > *:last-child {
  margin-bottom: 0;
}

.xlProductPanel-content h2,
.xlProductPanel-content h3,
.xlProductPanel-content h4 {
  margin: 28px 0 12px;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.12;
  color: #111;
}

.xlProductPanel-content h2 {
  font-size: 28px;
}

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

.xlProductPanel-content p {
  margin: 0 0 16px;
}

.xlProductPanel-content ul,
.xlProductPanel-content ol {
  margin: 0 0 18px;
  padding-left: 20px;
}

.xlProductPanel-content li + li {
  margin-top: 7px;
}

.xlProductPanel-content a {
  color: #ff3b00;
  font-weight: 800;
  text-decoration: none;
}

.xlProductPanel-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

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: min(var(--xl-drawer-width, 450px), var(--xl-drawer-max-width, 90vw));
  }

  .xlProductPanel__header {
    padding: 24px 24px 20px;
  }

  .xlProductPanel__title {
    font-size: 21px;
  }

  .xlProductPanel__body {
    padding: 0;
  }
}
