/** Shopify CDN: Minification failed

Line 728:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:about-us (INDEX:1) */
/* ---- Hero ---- */
.about-hero {
  background: var(--po-ink);
  color: #fff;
  padding: 76px 32px 84px;
  text-align: center;
}

.about-hero .container,
.about-body .container {
  max-width: 1240px;
  margin: 0 auto;
}

.about-hero-eyebrow {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #80d2fa;
  margin: 0 0 14px;
}

.about-hero-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 auto 20px;
  max-width: 900px;
  text-wrap: balance;
}

.about-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--po-gray-300);
  margin: 0 auto;
  max-width: 640px;
  text-wrap: balance;
}

/* ---- Body wrapper ---- */
.about-body {
  background: var(--po-gray-50);
  padding: 64px 32px 72px;
}

.about-kicker {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--po-blue);
  margin: 0 0 8px;
}

/* ---- Our Story ---- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-story-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--po-ink);
  margin: 0 0 20px;
}

.about-story-text p:not(.about-kicker) {
  font-size: 16px;
  line-height: 1.7;
  color: var(--po-text);
  margin: 0 0 18px;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-story-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ---- Mission & Vision ---- */
.about-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.about-mv-card {
  background: var(--po-ink);
  border-radius: var(--radius-md);
  padding: 30px 32px 34px;
}

.about-mv-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #80d2fa;
  margin: 0 0 12px;
}

.about-mv-text {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}

/* ---- Feature cards ---- */
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-feature {
  background: var(--po-surface);
  border: 1px solid var(--po-gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 26px 28px 28px;
}

.about-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: #e8f4fb;
  margin-bottom: 18px;
}

.about-feature-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--po-ink);
  margin: 0 0 10px;
}

.about-feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--po-text-muted);
  margin: 0;
}

/* ---- Closing CTA ---- */
.about-cta {
  background: var(--po-ink);
  border-radius: var(--radius-md);
  padding: 52px 32px 56px;
  margin-top: 40px;
  text-align: center;
}

.about-cta-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 14px;
}

.about-cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--po-gray-300);
  margin: 0 auto 28px;
  max-width: 520px;
  text-wrap: balance;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.about-cta-primary,
.about-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 15px 26px;
  transition: all 0.2s;
}

.about-cta-primary {
  background: var(--po-blue);
  border: 1px solid var(--po-blue);
  color: #fff;
}

.about-cta-primary:hover {
  background: #0284c7;
  border-color: #0284c7;
}

.about-cta-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}

.about-cta-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 48px 16px 52px;
  }

  .about-hero-title {
    font-size: 30px;
  }

  .about-hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.07em;
  }

  .about-body {
    padding: 40px 16px 48px;
  }

  .about-story-title {
    font-size: 26px;
  }

  .about-mv {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .about-mv-text {
    font-size: 19px;
  }

  .about-cta {
    padding: 36px 20px 40px;
  }

  .about-cta-title {
    font-size: 25px;
  }

  .about-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
/* END_SECTION:about-us */

/* START_SECTION:announcement-bar (INDEX:2) */
.announcement-bar {
  background: var(--po-ink);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.announcement-bar .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 9px 32px;
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
  flex-wrap: wrap;
}

.announcement-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.announcement-timer {
  font-weight: 700;
  color: var(--po-sky);
  font-variant-numeric: tabular-nums;
  font-family: 'Courier New', monospace;
}

.announcement-contact {
  margin-left: auto;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .announcement-bar .container {
    padding: 9px 16px;
  }

  .announcement-content {
    font-size: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .announcement-contact {
    margin-left: 0;
  }
}
/* END_SECTION:announcement-bar */

/* START_SECTION:bill-of-materials (INDEX:4) */
.bom-section {
  background: var(--po-ink);
  color: #fff;
  padding: 76px 32px;
  position: relative;
  overflow: hidden;
}

.bom-section .container {
  max-width: 1240px;
  margin: 0 auto;
}

.bom-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: stretch;
}

.bom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--po-ink);
  background: var(--po-yellow);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
  width: fit-content;
}

.bom-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0 0 18px;
}

.bom-highlight {
  color: #80d2fa;
}

.bom-description {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  max-width: 540px;
}

.bom-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.bom-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #fff;
}

.bom-feature-icon {
  flex-shrink: 0;
  color: #80d2fa;
}

.bom-form {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 520px;
}

.bom-email-input {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--po-surface);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--po-gray-500);
}

.bom-email-input input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--po-ink);
  padding: 13px 0;
  min-width: 0;
}

.bom-notify-button {
  padding: 14px 28px;
  background: var(--po-yellow);
  color: var(--po-ink);
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.bom-notify-button:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.bom-preview {
  background: var(--po-surface);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bom-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bom-preview-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--po-ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bom-preview-badge {
  font-size: 12px;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  border-radius: 999px;
  padding: 4px 10px;
}

.bom-preview-input {
  border: 1px solid var(--po-gray-300);
  border-radius: 6px;
  background: var(--po-surface);
  margin-bottom: 20px;
  overflow: hidden;
}

.bom-preview-input-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: var(--po-gray-50);
  border-bottom: 1px solid var(--po-gray-200);
  font-size: 13px;
  font-weight: 700;
  color: var(--po-ink);
}


.bom-preview-input-content {
  padding: 14px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.9;
  color: var(--po-ink);
}

.bom-preview-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bom-preview-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--po-gray-200);
  border-radius: 6px;
}

.bom-item-sku {
  font-size: 14px;
  font-weight: 700;
  color: var(--po-blue);
}

.bom-item-qty {
  font-size: 13px;
  color: var(--po-gray-500);
}

.bom-item-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #15803d;
}

@media (max-width: 1024px) {
  .bom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .bom-section {
    padding: 40px 16px;
  }

  .bom-title {
    font-size: 28px;
  }

  .bom-preview {
    padding: 20px;
  }
}
/* END_SECTION:bill-of-materials */

/* START_SECTION:brands-featured (INDEX:6) */
.brands-featured {
  background: var(--po-gray-50);
  padding: 64px 32px 40px;
}

.brands-featured .container {
  max-width: 1240px;
  margin: 0 auto;
}

.brands-featured-header {
  text-align: center;
  margin-bottom: 40px;
}

.brands-featured-tag {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--po-blue);
  margin: 0;
  display: block;
}

.brands-featured-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.brands-featured-item {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--po-ink);
  background: var(--po-surface);
  border: 1px solid var(--po-gray-200);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border-radius: 8px;
  padding: 14px 28px;
  transition: all 0.2s;
  min-width: 160px;
  flex: 1;
  max-width: 200px;
  white-space: nowrap;
}

/* The lift and scale are transforms, so the hovered card grows without
   reflowing its neighbours. */
.brands-featured-item:hover,
.brands-featured-item:focus-visible {
  color: #fff;
  background: var(--po-blue);
  border-color: var(--po-blue);
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 4px 16px rgba(3, 105, 161, 0.3);
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .brands-featured-item {
    transition: none;
  }

  .brands-featured-item:hover,
  .brands-featured-item:focus-visible {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .brands-featured-item {
    max-width: none;
    flex: 0 1 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .brands-featured {
    padding: 40px 16px;
  }

  .brands-featured-tag {
    font-size: 14px;
  }

  .brands-featured-item {
    flex: 0 1 calc(33.333% - 14px);
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .brands-featured-item {
    flex: 0 1 calc(50% - 10px);
  }
}
/* END_SECTION:brands-featured */

/* START_SECTION:brands (INDEX:7) */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap');

.brands-section {
  position: relative;
  padding: 60px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #051a2d 0%, #0c4a6e 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.brands-section::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #D84315, #FF8A50, #D84315);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
  animation: brands-gradient-rotate 6s linear infinite;
}

@keyframes brands-gradient-rotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.brands-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.brands-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.brands-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.brands-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 0;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 24px 20px;
  border: 2px solid rgba(216, 67, 21, 0.2);
  border-radius: 12px;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
  min-height: 120px;
  min-width: 120px;
  flex: 1;
  max-width: 160px;
}

.brand-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(216, 67, 21, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 0;
}

.brand-text {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #FF8A50 0%, #D84315 50%, #B83A11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(216, 67, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.3;
  padding: 0 10px;
}

.brand-item:hover {
  border-color: #D84315;
  background: rgba(216, 67, 21, 0.12);
  box-shadow: 0 0 20px rgba(216, 67, 21, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-10px) scale(1.08);
}

.brand-item:hover::after {
  opacity: 1;
  animation: brands-shimmer 0.6s ease;
}

.brand-item:hover .brand-text {
  transform: scale(1.18);
  filter: drop-shadow(0 0 15px rgba(216, 67, 21, 0.6));
  letter-spacing: 1px;
}

@keyframes brands-shimmer {
  0% {
    top: -50%;
    left: -50%;
  }
  100% {
    top: 100%;
    left: 100%;
  }
}

@media (max-width: 768px) {
  .brands-section {
    padding: 60px 20px;
  }
  .brands-header h2 {
    font-size: 1.8rem;
  }
  .brands-header p {
    font-size: 1rem;
  }
  .brands-strip {
    gap: 16px;
    padding: 0;
    flex-wrap: wrap;
  }
  .brand-item {
    padding: 16px 12px;
    min-height: auto;
    min-width: auto;
    flex: 0 1 calc(50% - 8px);
  }
  .brand-text {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .brands-strip {
    gap: 12px;
  }
  .brand-item {
    padding: 16px 12px;
    flex: 0 1 calc(50% - 6px);
  }
}
/* END_SECTION:brands */

/* START_SECTION:cart-recommendations (INDEX:9) */
.cart-recommendations {
  margin-top: 40px;
  padding-top: 0;
}

.cart-recommendations-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.header-accent {
  width: 4px;
  align-self: stretch;
  background: var(--po-cyan);
  border-radius: 2px;
  flex-shrink: 0;
}

.cart-recommendations-title {
  margin: 0 0 2px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--po-ink);
  letter-spacing: -0.01em;
}

.cart-recommendations-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--po-text-muted);
  line-height: 1.4;
}

/* Compact rows for the cart recommendation table */
.cart-recommendations .pf-table tbody td { padding: 10px 16px; }
.cart-recommendations .part-thumb,
.cart-recommendations .part-thumb-ph { width: 40px; height: 40px; padding: 4px; }
.cart-recommendations .part-sub { font-size: 13px; }
.cart-recommendations .part-meta { display: none; }

@media (max-width: 900px) {
  .cart-recommendations .pf-table-card { overflow-x: auto; }
}
/* END_SECTION:cart-recommendations */

/* START_SECTION:collection-links (INDEX:12) */
collection-links-component {
    --alignment: flex-start;

    display: grid;
    align-items: center;
    grid-gap: var(--gap-3xl);

    &:has([ratio='portrait']) {
      --template-column-ratio: 0.8fr;
    }

    &:has([ratio='square']) {
      --template-column-ratio: 1fr;
    }

    &:has([ratio='landscape']) {
      --template-column-ratio: 1.4fr;
    }

    &[alignment='center'] {
      --alignment: center;

      .text-block {
        text-align: center;
      }
    }

    &[alignment='right'] {
      --alignment: flex-end;

      .text-block {
        text-align: right;
      }
    }

    &[layout='spotlight'] {
      position: relative;
      grid-template-columns: 1fr var(--template-column-ratio);
      grid-template-areas: 'text image';

      @media screen and (min-width: 750px) {
        &[reverse] {
          grid-template-areas: 'image text';
          grid-template-columns: var(--template-column-ratio) 1fr;
        }
      }

      .collection-links__container {
        align-items: var(--alignment);
      }

      @media screen and (max-width: 749px) {
        grid-template-columns: 1fr;
        grid-template-areas: 'text' 'image';
        grid-gap: var(--gap-2xl);

        .collection-links__container {
          gap: clamp(var(--gap-xs), 1vw, var(--gap-xl)) var(--gap-2xl);
          justify-content: var(--alignment);
        }
      }
    }

    &[layout='text'] {
      grid-gap: 0;
      grid-template-areas: 'text';

      .collection-links__container {
        gap: clamp(var(--gap-xs), 1vw, var(--gap-xl)) var(--gap-2xl);
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: var(--alignment);
      }
    }
  }

  .collection-links__container {
    display: flex;
    gap: var(--gap-md);
    flex-direction: column;
  }

  .collection-links__images {
    overflow: hidden;
    grid-area: image;

    @media screen and (max-width: 749px) {
      image-block {
        max-width: 100%;
      }
    }
  }
/* END_SECTION:collection-links */

/* START_SECTION:collection (INDEX:15) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:16) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:contact (INDEX:17) */
.ct-container { padding-top: 28px; padding-bottom: 64px; }

.ct-page-header { margin-bottom: 28px; }
.ct-title { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.ct-subtitle { color: var(--text-muted); font-size: 0.9375rem; }

.ct-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 28px 28px 20px;
}

.ct-field { display: flex; flex-direction: column; gap: 6px; }
.ct-field--full { grid-column: 1 / -1; }

.ct-field label { font-size: 0.875rem; font-weight: 500; }
.ct-req { color: var(--red); }

.ct-field input,
.ct-field select,
.ct-field textarea {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.9375rem;
  color: var(--text-primary);
  width: 100%;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,43,74,0.08);
}
.ct-field textarea { resize: vertical; min-height: 120px; }

.ct-prefilled { justify-content: center; }
.ct-prefilled-value {
  padding: 10px 14px;
  background: var(--row-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.ct-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  background: var(--row-alt);
}
.ct-req-note { font-size: 0.8125rem; color: var(--text-muted); }
.btn-lg { padding: 11px 28px; font-size: 0.9375rem; }

.ct-error-banner {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--red-subtle);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  color: var(--red);
  font-size: 0.875rem;
}

.ct-success {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.ct-success svg { margin: 0 auto 16px; }
.ct-success h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.ct-success p { color: var(--text-muted); }

@media (max-width: 640px) {
  .ct-grid { grid-template-columns: 1fr; padding: 20px; }
  .ct-footer { flex-direction: column; align-items: stretch; gap: 12px; }
  .ct-footer .btn { text-align: center; }
}
/* END_SECTION:contact */

/* START_SECTION:cta-banner (INDEX:18) */
.cta-banner {
  background: var(--po-surface);
  position: relative;
  overflow: hidden;
  padding: 72px 32px;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&h=900&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.cta-banner .container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content {
  background: #0369A1;
  border-radius: 12px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1;
  min-width: 300px;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.cta-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 560px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--po-yellow);
  color: var(--po-ink);
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 40px 16px;
  }

  .cta-content {
    padding: 32px 24px;
    gap: 20px;
  }

  .cta-title {
    font-size: 20px;
  }

  .cta-button {
    width: 100%;
  }
}
/* END_SECTION:cta-banner */

/* START_SECTION:custom-section (INDEX:20) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:featured-parts (INDEX:25) */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .parts-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
}
/* END_SECTION:featured-parts */

/* START_SECTION:featured-product (INDEX:26) */
.featured-product-section .section-content-wrapper {
    grid-template-columns: 1fr;
    display: grid;
    overflow: hidden;

    @media screen and (min-width: 750px) {
      grid-template-columns: 1fr 1fr;
    }
  }

  .featured-product-section {
    --viewport-offset: 400px;
    --constrained-min-height: var(--visual-preview--height, 80dvh);
    --constrained-height: max(var(--constrained-min-height), calc(100vh - var(--viewport-offset)));

    @media screen and (min-width: 750px) {
      --viewport-offset: 300px;
    }
  }

  .featured-product-section .product-grid__card {
    --padding-block: 20px;
    --padding-inline: 20px;

    @media screen and (min-width: 750px) {
      --padding-block: 40px;
      --padding-inline: 40px;
    }
  }

  @media screen and (max-width: 749px) {
    .featured-product-section .media-block {
      order: -1;
    }
  }

  @media screen and (min-width: 750px) {
    .featured-product-section .product-card__content {
      --hugged-width: calc(var(--constrained-height) * var(--gallery-aspect-ratio, var(--media-preview-ratio)));
      width: min(100%, var(--hugged-width));
      margin-left: auto;
      margin-right: auto;
    }
  }
/* END_SECTION:featured-product */

/* START_SECTION:footer-utilities (INDEX:28) */
.utilities {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    text-wrap: nowrap;
    border-top: var(--border-width) solid var(--color-border);
    color: var(--color-foreground-muted);

    @media screen and (min-width: 750px) {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      justify-content: center;
      gap: var(--gap);
      align-items: center;
      text-align: left;
    }
  }

  .utilities a {
    color: var(--color-foreground-muted);
  }

  .utilities > * {
    text-align: center;

    @media screen and (min-width: 750px) {
      text-align: left;
      justify-self: start;
    }
  }

  /* Dynamic positioning based on number of blocks */
  @media screen and (min-width: 750px) {
    /* 1 block: Single column, left aligned */
    .utilities--blocks-1 {
      grid-template-columns: 1fr;
      justify-content: start;
    }

    .utilities--blocks-1 > * {
      justify-self: start;
      text-align: left;
    }

    /* 2 blocks: Two equal columns, start and end aligned */
    .utilities--blocks-2 {
      grid-template-columns: 1fr 1fr;
    }

    .utilities--blocks-2 > *:nth-child(2) {
      justify-self: end;
      text-align: right;
    }

    /* 3 blocks: Three columns (1fr auto 1fr), start/center/end aligned */
    .utilities--blocks-3 {
      grid-template-columns: 1fr auto 1fr;
    }

    .utilities--blocks-3 > *:nth-child(2) {
      justify-self: center;
      text-align: center;
    }

    .utilities--blocks-3 > *:nth-child(3) {
      justify-self: end;
      text-align: right;
    }
  }
/* END_SECTION:footer-utilities */

/* START_SECTION:footer (INDEX:29) */
.footer-skeleton {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  .footer-skeleton a {
    text-decoration: none;
    color: var(--color-foreground);
  }
  .footer-skeleton .footer__links,
  .footer-skeleton .footer__payment {
    display: flex;
    gap: 1rem;
  }
/* END_SECTION:footer */

/* START_SECTION:header-announcements (INDEX:30) */
.announcement-bar {
    border-block-end: var(--border-bottom-width) solid var(--color-border);
  }

  .announcement-bar__slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;

    @media screen and (max-width: 749px) {
      grid-column: 1 / -1;
    }
  }

  .announcement-bar__slides {
    display: grid;
    grid: [stack] auto / [stack] auto;
    width: calc(100% - var(--button-size) * 2);
    max-width: 680px;
    margin-inline: auto;
  }

  .announcement-bar__slides > * {
    grid-area: stack;
  }

  .announcement-bar__slide {
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    content-visibility: visible;

    &[aria-hidden='true'] {
      opacity: 0;
      visibility: hidden;
    }
  }

  .announcement-bar__slider slideshow-arrows {
    padding: 0;
    mix-blend-mode: normal;
  }

  .announcement-bar__slider slideshow-arrows .slideshow-control {
    color: var(--color-foreground);
  }

  .announcement-bar__slider .slideshow-control {
    display: flex;
    padding: 0;
    width: var(--button-size);
    height: var(--button-size);
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: none;

    @media screen and (min-width: 750px) {
      --slideshow-control-offset: calc((var(--button-size) - var(--icon-size-xs)) / 2);

      .section--page-width &.slideshow-control--previous {
        transform: translateX(var(--slideshow-control-offset));
      }
    }
  }

  .announcement-bar__slider .slideshow-control .svg-wrapper {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .announcement-bar__slide {
    place-content: center;
  }

  .announcement-bar__text:first-child {
    margin: 0;
  }

  .announcement-bar__link {
    position: absolute;
    inset: 0;
  }
/* END_SECTION:header-announcements */

/* START_SECTION:header (INDEX:31) */
.header-skeleton {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-skeleton a {
    position: relative;
    text-decoration: none;
    color: var(--color-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-skeleton a sup {
    position: absolute;
    left: 100%;
    overflow: hidden;
    max-width: var(--page-margin);
  }
  .header-skeleton svg {
    width: 2rem;
  }
  .header-skeleton .header__menu,
  .header-skeleton .header__icons {
    display: flex;
    gap: 1rem;
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:32) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero-search (INDEX:33) */
.hero-search-section {
  background: var(--po-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 87px 32px 97px;
}

.hero-search-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600&h=900&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.hero-search-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-search-eyebrow {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #80d2fa;
  margin: 0 0 14px;
}

.hero-search-title {
  font-size: 61px;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  text-wrap: balance;
}

.hero-search-highlight {
  color: #80d2fa;
  display: block;
}

.hero-search-form {
  background: var(--po-surface);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  padding: 20px 36px;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.hero-search-form-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--po-ink);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-search-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  gap: 16px;
  align-items: flex-end;
}

.hero-search-field {
  display: flex;
  flex-direction: column;
}

.hero-search-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--po-gray-600);
  margin-bottom: 8px;
  display: block;
}

.hero-search-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--po-gray-400);
}

.hero-search-select,
.hero-search-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--po-gray-200);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--po-ink);
  background: var(--po-surface);
}

.hero-search-select:focus,
.hero-search-input:focus {
  outline: none;
  border-color: var(--po-blue);
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.1);
}

.hero-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  background: var(--po-blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.hero-search-button:hover {
  background: #024D7A;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(3, 105, 161, 0.3);
}

@media (max-width: 1024px) {
  .hero-search-inputs {
    grid-template-columns: 1fr 1fr;
  }

  .hero-search-field:nth-child(3),
  .hero-search-button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero-search-section {
    padding: 48px 16px;
  }

  .hero-search-eyebrow {
    font-size: 12px;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
  }

  .hero-search-title {
    font-size: 36px;
  }

  .hero-search-form {
    padding: 16px 20px;
  }

  .hero-search-inputs {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-search-button {
    width: 100%;
  }
}
/* END_SECTION:hero-search */

/* START_SECTION:hero (INDEX:34) */
.hero {
  position: relative;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  padding: 20px;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container { position: relative; z-index: 2; }
.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FC8181;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  animation: fadeSlideUp 0.5s ease both;
}
.hero-content h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-line1 { display: block; animation: fadeSlideUp 0.6s ease 0.1s both; }
.hero-line2 { display: block; animation: fadeSlideUp 0.6s ease 0.22s both; }
.hero-sub { color: #94A3B8; font-size: 1rem; margin-bottom: 28px; line-height: 1.6; animation: fadeSlideUp 0.5s ease 0.34s both; }
.hero-search {
  display: flex;
  align-items: center;
  width: 45vw;
  max-width: 500px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 4px 4px 4px 12px;
  animation: fadeSlideUp 0.5s ease 0.42s both;
  backdrop-filter: blur(10px);
}
.hero-search input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  padding: 16px 16px;
  color: #FFFFFF;
  font-size: 1rem;
  outline: none;
  transition: all 0.15s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-search input::placeholder { color: rgba(255,255,255,0.85); }
.hero-search input:focus {
  outline: none;
}
.hero-search .btn {
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #94A3B8;
  font-size: 0.875rem;
  margin-top: 28px;
  animation: fadeSlideUp 0.5s ease 0.5s both;
}
.hero-trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .hero { padding: 48px 0; }
  .hero-content h1 { font-size: 2rem; }
  .hero-search {
    width: 90%;
    max-width: 90%;
  }
  .hero-search .btn {
    padding: 10px 16px;
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.625rem; }
  .hero-search {
    width: 100%;
    max-width: 100%;
    padding: 4px 4px 4px 8px;
  }
  .hero-search input {
    padding: 12px 12px;
    font-size: 0.875rem;
  }
  .hero-search .btn {
    padding: 8px 12px;
    font-size: 0.75rem;
    gap: 4px;
  }
}
/* END_SECTION:hero */

/* START_SECTION:logo (INDEX:35) */
.logo-section {
    width: calc(var(--logo-width) + var(--padding-inline-start) + var(--padding-inline-end));
    max-width: 100%;
    max-height: calc(var(--logo-height, 100%) + var(--padding-block-start) + var(--padding-block-end));
    font-size: var(--logo-height);
    display: flex;

    @media screen and (max-width: 749px) {
      max-height: calc(
        var(--logo-height-mobile, var(--logo-height, 100%)) + var(--padding-block-start) + var(--padding-block-end)
      );
      font-size: var(--logo-height-mobile, var(--logo-height));
      width: calc(
        var(--logo-width-mobile, var(--logo-width)) + var(--padding-inline-start) + var(--padding-inline-end)
      );
    }
  }

  .logo-section--center {
    margin-inline: auto;
  }

  .logo-section--flex-end {
    margin-inline-start: auto;
  }

  .logo-section--flex-start {
    margin-inline-end: auto;
  }

  .logo-section__image-wrapper {
    display: flex;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .logo-section__image {
    object-fit: contain;
    width: 100%;
  }
/* END_SECTION:logo */

/* START_SECTION:main-blog-post (INDEX:38) */
.blog-post-comments-container {
    width: 100%;
    max-width: var(--normal-content-width);
    margin: 0 auto;
  }

  .blog-post-comments {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3xl);
  }

  .blog-post-comment__author {
    display: flex;
    align-items: center;
    gap: var(--gap-2xs);
    margin-top: var(--margin-md);
    font-size: var(--font-size--body-sm);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .blog-post-comments-pagination {
    display: flex;
    justify-content: center;
    gap: var(--gap-2xs);
  }

  .blog-post-comments-pagination,
  .blog-post-comments-pagination a {
    color: var(--color-foreground);
  }

  .blog-post-comments-pagination .current {
    color: var(--color-foreground);
  }

  .blog-post-comments-pagination .current,
  .blog-post-comments-pagination a {
    display: block;
    padding: var(--padding-2xs) var(--padding-xs);
  }

  .blog-post-comments-pagination .current,
  .blog-post-comments-pagination a:hover {
    border-bottom: 1px solid var(--color-foreground);
  }
/* END_SECTION:main-blog-post */

/* START_SECTION:main-blog (INDEX:39) */
/**
   * Blog posts page layout
   */
  .blog-posts {
    --page-content-width: var(--narrow-page-width);
    --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
    --columns-gap: 36px;
    --rows-gap: 36px;
  }

  .blog-posts-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    width: 100%;
    column-gap: var(--columns-gap);
    row-gap: var(--rows-gap);
  }

  /**
   * Blog post item grid positioning and scaling.
   * Layout is calculated in Liquid based on total article count.
   * Mobile overrides are applied per-item in inline styles for proper specificity.
   */
  .blog-post-item {
    grid-column: span var(--col-span);
  }

  /**
   * When there's no image, the blog post item has a border.
   */
  .blog-post-item {
    border: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-20));
    padding: 0 1rem 1rem;
  }

  .blog-post-item:has(.blog-post-card__image-container) {
    border: none;
    padding: 0;
  }
/* END_SECTION:main-blog */

/* START_SECTION:password-footer (INDEX:44) */
.password-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-sm);
    padding-block: var(--padding-xl);
  }

  .password-footer__powered-by {
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--padding-xs);
    height: 1em;

    > a {
      display: flex;
    }

    .icon-shopify {
      display: inline;
      height: 1.3em;
      color: var(--color-foreground);
    }
  }

  .password-footer__links {
    display: flex;
    align-items: center;
    gap: var(--gap-2xl);

    @media screen and (max-width: 749px) {
      flex-direction: column;
      gap: var(--gap-sm);
    }
  }

  .password-footer__admin-link {
    margin: 0;
  }

  .password-footer__button {
    height: var(--minimum-touch-target);
    background-color: transparent;
    color: var(--color-primary);
    cursor: pointer;
    text-decoration: underline;

    &:hover {
      color: var(--color-primary-hover);
      text-decoration: none;
    }
  }
/* END_SECTION:password-footer */

/* START_SECTION:popular-parts-featured (INDEX:46) */
.popular-featured {
  background: var(--po-surface);
  padding: 64px 32px 40px;
}

.popular-featured .container {
  max-width: 1240px;
  margin: 0 auto;
}

.popular-featured-header {
  text-align: center;
  margin-bottom: 32px;
}

.popular-featured-tag {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--po-blue);
  margin-bottom: 7px;
  display: block;
}

.popular-featured-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--po-ink);
}

.popular-featured-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.popular-featured-card {
  display: flex;
  flex-direction: column;
  background: var(--po-surface);
  border: 1px solid var(--po-gray-200);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s;
}

.popular-featured-card:hover {
  border-color: var(--po-blue);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.popular-featured-image {
  background: var(--po-surface);
  border-bottom: 1px solid var(--po-gray-100);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  overflow: hidden;
}

.popular-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.popular-featured-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--po-gray-300);
  font-size: 12px;
}

.popular-featured-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.popular-featured-header-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.popular-featured-sku {
  font-size: 14px;
  font-weight: 700;
  color: var(--po-blue);
  white-space: nowrap;
}

.popular-featured-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
}

.popular-featured-badge.in-stock {
  color: #15803d;
  background: #dcfce7;
}

.popular-featured-badge.in-stock .badge-dot {
  background: #15803d;
}

.popular-featured-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--po-ink);
  line-height: 1.3;
}

.popular-featured-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--po-gray-100);
}

.popular-featured-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--po-ink);
}

.popular-featured-unit {
  font-size: 12px;
  color: var(--po-gray-400);
}

.popular-featured-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--po-blue);
  border-radius: 6px;
  padding: 9px 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.popular-featured-card:hover .popular-featured-add {
  background: #024D7A;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(3, 105, 161, 0.3);
}

.popular-featured-cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.popular-featured-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: var(--po-blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.popular-featured-button:hover {
  background: #024D7A;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(3, 105, 161, 0.3);
}

@media (max-width: 1024px) {
  .popular-featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .popular-featured {
    padding: 40px 16px;
  }

  .popular-featured-title {
    font-size: 24px;
  }

  .popular-featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .popular-featured-grid {
    grid-template-columns: 1fr;
  }
}
/* END_SECTION:popular-parts-featured */

/* START_SECTION:privacy-policy (INDEX:47) */
.po-w h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  color: var(--po-ink);
}

.po-w h2:first-child {
  margin-top: 0;
}

.po-w p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--po-ink-700);
  margin: 0 0 14px;
}

.po-w ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

.po-w ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--po-ink-700);
  margin-bottom: 8px;
}

.po-w a {
  color: var(--po-blue);
  text-decoration: none;
}

.po-w a:hover {
  color: var(--po-blue-700);
}

.po-w strong {
  font-weight: 700;
  color: var(--po-ink);
}
/* END_SECTION:privacy-policy */

/* START_SECTION:product-part (INDEX:49) */
button:hover, [onclick*="addToCart"]:hover {
  background: #024D7A !important;
  transform: translateY(-1px);
}

details[open] summary svg:last-child {
  transform: rotate(180deg);
  transition: transform 0.2s;
}

@media (max-width: 1024px) {
  [style*="grid-template-columns:0.9fr 1.1fr"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  h1 {
    font-size: 24px !important;
  }
}

.po-compat {
  border: 1px solid var(--po-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
}

.po-compat summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--po-ink);
  background: var(--po-gray-50);
}

.po-compat summary::-webkit-details-marker { display: none; }

.po-compat[open] .po-compat-chev { transform: rotate(180deg); }

.po-kit {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid var(--po-gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.po-kit-head {
  padding: 13px 18px;
  background: var(--po-gray-50);
  border-bottom: 1px solid var(--po-gray-200);
  font-size: 14px;
  font-weight: 700;
  color: var(--po-ink);
}

.po-kit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.po-kit-table th {
  text-align: left;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--po-gray-500);
  border-bottom: 1px solid var(--po-gray-200);
}

.po-kit-table td {
  padding: 11px 18px;
  border-bottom: 1px solid var(--po-gray-100);
}

.po-kit-table tr:last-child td { border-bottom: none; }

.po-kit-table th:nth-child(1) { width: 180px; }
.po-kit-table th:nth-child(3) { width: 80px; }
.po-kit-table th:nth-child(4) { width: 100px; }
/* END_SECTION:product-part */

/* START_SECTION:promise-strip (INDEX:51) */
.promise-strip {
  background: var(--po-surface);
  border-bottom: 1px solid var(--po-gray-200);
  padding: 26px 32px;
}

.promise-strip .container {
  max-width: 1240px;
  margin: 0 auto;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid var(--po-gray-200);
}

.promise-item:last-child {
  border-right: none;
}

.promise-icon {
  flex-shrink: 0;
  color: var(--po-blue);
}

.promise-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--po-ink);
  margin-bottom: 4px;
}

.promise-subtitle {
  font-size: 14px;
  color: var(--po-gray-500);
}

@media (max-width: 1024px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .promise-item {
    border-right: none;
    border-bottom: 1px solid var(--po-gray-200);
    padding: 20px 0;
  }

  .promise-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .promise-strip {
    padding: 16px 16px;
  }

  .promise-item {
    padding: 16px 0;
  }

  .promise-title {
    font-size: 14px;
  }

  .promise-subtitle {
    font-size: 12px;
  }
}
/* END_SECTION:promise-strip */

/* START_SECTION:return-request (INDEX:52) */
.rr-container { padding-top: 28px; padding-bottom: 64px; }

/* Page header */
.rr-title { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.rr-subtitle { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 0; }
.rr-page-header { margin-bottom: 28px; }

/* How it works */
.rr-hiw {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}
.rr-hiw-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 8px 16px;
}
.rr-hiw-icon {
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 6px;
  box-shadow: 0 4px 12px rgba(26,43,74,0.18);
}
.rr-hiw-num {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.rr-hiw-title { font-size: 0.9375rem; font-weight: 700; }
.rr-hiw-desc { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.45; }
.rr-hiw-arrow { color: var(--border); flex-shrink: 0; padding: 0 4px; }

/* Customer card */
.rr-customer-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.rr-customer-avatar {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.rr-customer-info { flex: 1; min-width: 0; }
.rr-customer-name { font-size: 0.9375rem; font-weight: 600; }
.rr-customer-meta { font-size: 0.8125rem; color: var(--text-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rr-not-you { font-size: 0.8125rem; color: var(--text-muted); text-decoration: underline; white-space: nowrap; flex-shrink: 0; transition: color 0.15s; }
.rr-not-you:hover { color: var(--red); }

/* Step blocks */
.rr-step-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: opacity 0.25s;
}
.rr-hidden { display: none; }
.rr-step-block.rr-completed { opacity: 0.5; pointer-events: none; }
.rr-step-block.rr-completed .rr-step-num { background: var(--green); }

.rr-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--row-alt);
}
.rr-step-num {
  width: 26px;
  height: 26px;
  background: var(--navy);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s;
}
.rr-step-label { font-size: 0.9375rem; font-weight: 700; flex: 1; }
.rr-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.rr-back-btn:hover { border-color: var(--navy); color: var(--navy); background: rgba(26,43,74,0.04); }

/* Orders grid */
.rr-orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  padding: 20px 22px;
}
.rr-order-card {
  position: relative;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
  background: var(--bg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.rr-order-card:hover { border-color: var(--navy); background: var(--surface); box-shadow: var(--shadow-md); }
.rr-order-card.selected { border-color: var(--navy); background: var(--surface); box-shadow: 0 0 0 3px rgba(26,43,74,0.1); }
.rr-order-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--row-alt);
  border: 1px solid var(--border);
}
.rr-order-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rr-order-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.rr-order-content { flex: 1; min-width: 0; padding-right: 18px; }
.rr-order-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }
.rr-order-num { font-size: 0.9375rem; font-weight: 700; }
.rr-order-total { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.rr-order-bottom { display: flex; align-items: center; justify-content: space-between; }
.rr-order-date { font-size: 0.8125rem; color: var(--text-muted); }
.rr-order-count { font-size: 0.75rem; color: var(--text-muted); }
.rr-order-chevron {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: var(--border);
  transition: color 0.15s, transform 0.15s;
}
.rr-order-card:hover .rr-order-chevron,
.rr-order-card.selected .rr-order-chevron { color: var(--navy); transform: translateY(-50%) translateX(2px); }

/* Items list */
.rr-items-list {
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rr-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
  background: var(--bg);
}
.rr-item-card:hover { border-color: var(--navy); background: var(--surface); }
.rr-item-card.selected { border-color: var(--navy); background: var(--surface); box-shadow: 0 0 0 3px rgba(26,43,74,0.08); }
.rr-item-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--row-alt);
  border: 1px solid var(--border);
}
.rr-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rr-item-img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.rr-item-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
  color: transparent;
}
.rr-item-card.selected .rr-item-check { background: var(--navy); border-color: var(--navy); color: #FFFFFF; }
.rr-item-info { flex: 1; min-width: 0; }
.rr-item-title { font-size: 0.9375rem; font-weight: 500; }
.rr-item-sku { font-size: 0.8125rem; color: var(--text-muted); margin-top: 2px; }
.rr-item-qty { font-size: 0.8125rem; color: var(--text-muted); flex-shrink: 0; }

/* Step footer */
.rr-step-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
}
.rr-submit-row { align-items: center; gap: 16px; background: var(--row-alt); }
.rr-req-note { font-size: 0.8125rem; color: var(--text-muted); flex: 1; }
.req { color: var(--red); }

/* Details body */
.rr-details-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rr-details-grid {
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rr-field { display: flex; flex-direction: column; gap: 6px; }
.rr-field label { font-size: 0.875rem; font-weight: 500; }
.rr-field input,
.rr-field select,
.rr-field textarea {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.9375rem;
  color: var(--text-primary);
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.rr-field input:focus,
.rr-field select:focus,
.rr-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,43,74,0.08);
}
.rr-field textarea { resize: vertical; min-height: 100px; }

/* btn-lg */
.btn-lg { padding: 11px 28px; font-size: 0.9375rem; }

/* Guest banner */
.rr-guest-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--blue-bg);
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.rr-guest-banner a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* Empty / error */
.rr-empty { padding: 28px 22px; color: var(--text-muted); font-size: 0.9375rem; }
.rr-error-banner {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--red-subtle);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  color: var(--red);
  font-size: 0.875rem;
}

/* Success */
.rr-success {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.rr-success svg { margin: 0 auto 16px; }
.rr-success h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.rr-success p { color: var(--text-muted); }

/* Responsive */
@media (max-width: 720px) {
  .rr-hiw { flex-wrap: wrap; justify-content: center; }
  .rr-hiw-arrow { display: none; }
  .rr-hiw-card { min-width: 140px; }
  .rr-orders-grid { grid-template-columns: 1fr 1fr; }
  .rr-details-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .rr-orders-grid { grid-template-columns: 1fr; }
  .rr-step-head { flex-wrap: wrap; gap: 10px; }
  .rr-submit-row { flex-direction: column; align-items: stretch; }
  .rr-submit-row .btn { text-align: center; }
}
/* END_SECTION:return-request */

/* START_SECTION:search-results (INDEX:53) */
button:hover, [onclick*="addToCart"]:hover {
  background: #024D7A !important;
  transform: translateY(-1px);
}

.po-row:hover {
  background: var(--po-gray-50);
}

.po-filter-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--po-ink-700);
  padding: 6px 0;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--dur-fast);
}

.po-filter-opt:hover {
  color: var(--po-blue);
}

.po-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--po-gray-300);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}

.po-filter-opt:hover .po-check {
  border-color: var(--po-blue);
}

.po-filter-opt.is-checked .po-check {
  background: var(--po-blue);
  border-color: var(--po-blue);
}

.po-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1.5px;
  width: 4px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.po-filter-opt.is-checked .po-check::after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .search-layout { grid-template-columns: 1fr !important; }
  .search-row { grid-template-columns: 72px 1fr 90px 110px !important; }
  .search-row > div:nth-child(3),
  .search-row > div:nth-child(6) { display: none !important; }
}

@media (max-width: 700px) {
  .search-layout { padding: 16px !important; gap: 18px !important; }
  .search-row-head { display: none !important; }
  .search-row {
    grid-template-columns: 56px 1fr !important;
    gap: 4px 12px !important;
    padding: 14px 12px !important;
  }
  .search-row > *:first-child { grid-row: 1 / span 5; }
  .search-row > div { padding: 0 !important; }
  .search-row > div:nth-child(3),
  .search-row > div:nth-child(6) { display: block !important; }
  .search-row > div:last-child { grid-column: 2; margin-top: 6px; }
  .search-head { padding: 16px 16px 0 !important; }
  .search-head h1 { font-size: 22px !important; }
}
/* END_SECTION:search-results */

/* START_SECTION:search (INDEX:54) */
/* Search Header */
.search-header {
  margin-bottom: 40px;
}

.search-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--po-ink);
}

.search-subtitle {
  font-size: 15px;
  color: var(--po-gray-500);
  margin: 0 0 24px;
  line-height: 1.5;
}

/* Search Form */
.search-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
}

.search-input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--po-gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--po-ink);
  background: var(--po-surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--po-blue);
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.1);
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--po-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.search-button:hover {
  background: #024D7A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
}

.search-button:active {
  transform: translateY(0);
}

/* Parts Grid */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .parts-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 24px;
  }
}

/* Card styling for search results */
.parts-grid li {
  display: flex;
  list-style: none;
}

.parts-grid .product-card {
  width: 100%;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 32px;
  background: var(--po-gray-50);
  border-radius: var(--radius-lg);
}

.empty-state svg {
  color: var(--po-gray-300);
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--po-ink);
  margin: 0 0 8px;
}

.empty-state p {
  font-size: 15px;
  color: var(--po-gray-500);
  margin: 0 0 24px;
  line-height: 1.6;
}

/* Collection count */
.collection-count {
  font-size: 14px;
  color: var(--po-gray-500);
  margin-bottom: 24px;
  font-weight: 500;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.page-arrow,
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--po-gray-200);
  border-radius: var(--radius-md);
  background: var(--po-surface);
  color: var(--po-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.page-arrow:hover,
.page-btn:hover {
  border-color: var(--po-blue);
  color: var(--po-blue);
  background: var(--po-blue-50);
}

.page-btn.active {
  background: var(--po-blue);
  color: #fff;
  border-color: var(--po-blue);
  cursor: default;
}

.page-btn.active:hover {
  background: var(--po-blue);
  color: #fff;
}

@media (max-width: 768px) {
  .search-form {
    flex-direction: column;
    max-width: 100%;
  }

  .search-title {
    font-size: 24px;
  }

  .search-button {
    width: 100%;
  }
}
/* END_SECTION:search */

/* START_SECTION:sign-in (INDEX:55) */
input[type="email"]:focus,
input[type="password"]:focus,
input[type="checkbox"]:focus {
  outline: none !important;
  border-color: var(--po-blue) !important;
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.1) !important;
}

button[type="submit"]:hover {
  background: #024D7A !important;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 0.85fr"] {
    grid-template-columns: 1fr !important;
  }

  [style*="padding:48px 44px"] {
    padding: 32px 24px !important;
  }

  [style*="padding:48px 40px"] {
    padding: 32px 24px !important;
  }
}
/* END_SECTION:sign-in */

/* START_SECTION:terms-of-service (INDEX:57) */
.po-w h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  color: var(--po-ink);
}

.po-w h2:first-child {
  margin-top: 0;
}

.po-w p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--po-ink-700);
  margin: 0 0 14px;
}

.po-w ol {
  margin: 0 0 14px;
  padding-left: 22px;
}

.po-w ol li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--po-ink-700);
  margin-bottom: 8px;
}

.po-w a {
  color: var(--po-blue);
  text-decoration: none;
}

.po-w a:hover {
  color: var(--po-blue-700);
}

.po-w strong {
  font-weight: 700;
  color: var(--po-ink);
}
/* END_SECTION:terms-of-service */

/* START_SECTION:warranty (INDEX:59) */
.po-w h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  color: var(--po-ink);
}

.po-w h2:first-child {
  margin-top: 0;
}

.po-w p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--po-ink-700);
  margin: 0 0 14px;
}

.po-w ol {
  margin: 0 0 14px;
  padding-left: 22px;
}

.po-w ol li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--po-ink-700);
  margin-bottom: 8px;
}

.po-w a {
  color: var(--po-blue);
  text-decoration: none;
}

.po-w a:hover {
  color: var(--po-blue-700);
}

.po-w strong {
  font-weight: 700;
  color: var(--po-ink);
}
/* END_SECTION:warranty */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:61) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:page (INDEX:62) */
.page-block {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    align-items: flex-start;
  }

  .page-title {
    margin-bottom: var(--margin-xl);
  }
/* END_BLOCK:page */

/* START_BLOCK:text (INDEX:63) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:editorial-product-grid (INDEX:70) */
.editorial-product__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    /* Make the aspect ratio super high on width, then increase the height of
     * slideshow containers until they fill all the available space */
    .card-gallery {
      /* stylelint-disable-next-line declaration-no-important */
      --gallery-aspect-ratio: 99 !important;
    }

    .card-gallery,
    slideshow-component,
    slideshow-container,
    slideshow-slides,
    .product-media__image {
      height: 100%;
    }
  }

  .editorial-product__spacer {
    aspect-ratio: 1;
  }

  @media screen and (max-width: 749px) {
    .editorial-product__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-product__spacer {
      display: none;
    }

    .editorial-product__item-0 {
      width: 83%;
      align-self: flex-start;
      aspect-ratio: 7 / 6;
    }

    .editorial-product__item-1 {
      width: 83%;
      align-self: flex-end;
      aspect-ratio: 4 / 5;
    }

    .editorial-product__item-2 {
      width: 66%;
      align-self: flex-start;
      aspect-ratio: 5 / 5;
    }

    .editorial-product__item-3 {
      width: 100%;
      aspect-ratio: 8 / 6;
    }
  }
/* END_SNIPPET:editorial-product-grid */

/* START_SNIPPET:filter-remove-buttons (INDEX:71) */
/* Facets - Remove buttons */
  .facets-remove {
    --variant-picker-swatch-width: 20px;
    --variant-picker-swatch-height: 20px;

    display: none;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap-xs);
    padding: 0 var(--drawer-padding);
    margin: 0;

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 16px;
      --variant-picker-swatch-height: 16px;

      gap: var(--gap-2xs);
    }
  }

  .facets-remove:has(facet-remove-component) {
    display: flex;
    margin-block-start: var(--margin-2xs);
    margin-block-end: var(--margin-md);
  }

  .facets:not(.facets--drawer) .facets-remove--mobile-and-vertical {
    @media screen and (min-width: 750px) {
      padding: 0;
    }
  }

  .facets--horizontal .facets-remove--mobile-and-vertical {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets-remove__pill {
    .svg-wrapper,
    .swatch {
      flex-shrink: 0;
    }
  }

  .facets--horizontal .facets-remove {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }
/* END_SNIPPET:filter-remove-buttons */

/* START_SNIPPET:gift-card-recipient-form-styles (INDEX:76) */
.recipient-form {
    --options-border-radius: var(--variant-picker-button-radius);
    --options-border-width: var(--variant-picker-button-border-width);

    display: flex;
    flex-direction: column;
    padding-bottom: var(--padding-2xl);
  }

  .recipient-form__send-to {
    padding: 0;
    margin-block-end: var(--margin-xs);
  }

  .gift-card-form-option {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
    padding: 0;
    border: none;
  }

  .gift-card-form-option__button-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-lg);
    border: var(--style-border-width) solid var(--color-variant-border);
    border-radius: var(--options-border-radius);
    border-width: var(--options-border-width);
    overflow: clip;
    justify-content: center;
    min-width: auto;
    background-color: var(--color-variant-background);
    color: var(--color-variant-text);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-variant-hover-background);
      border-color: var(--color-variant-hover-border);
      color: var(--color-variant-hover-text);
    }
  }

  .gift-card-form-option__button-label:has(:focus-visible) {
    --variant-picker-stroke-color: var(--color-foreground);

    border-color: var(--color-foreground);
    outline: var(--focus-outline-width) solid var(--color-foreground);
    outline-offset: var(--focus-outline-offset);
  }

  .gift-card-form-option__button-label:has(:checked) {
    color: var(--color-selected-variant-text);
    background-color: var(--color-selected-variant-background);
    border-color: var(--color-selected-variant-border);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-selected-variant-hover-background);
      border-color: var(--color-selected-variant-hover-border);
      color: var(--color-selected-variant-hover-text);
    }
  }

  .gift-card-form-option__button-label input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }

  .recipient-fields {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    transition: opacity 0.3s var(--animation-easing);
    padding-block-start: var(--padding-xl);
  }

  .recipient-fields[hidden] {
    display: none;
  }

  .field--send-on {
    display: flex;
    flex-direction: column;
  }

  .recipient-form__message {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--gap-sm);
    margin-top: var(--margin-sm);
  }

  .recipient-form-field-label {
    position: absolute;
    left: var(--padding-sm);
    bottom: var(--padding-sm);
    font-style: italic;
    color: var(--color-input-text);
  }

  .recipient-fields__textarea {
    min-height: 5.5rem;
    overflow-y: auto;

    /* Space for the character count */
    padding-bottom: calc(var(--padding-sm) * 3);
    scroll-padding-bottom: calc(var(--padding-sm) * 3);
  }

  .recipient-fields__input {
    flex-grow: 1;
    transition: background-color var(--animation-speed) ease, border-color var(--animation-speed) ease;
    padding: var(--input-padding);
    background-color: var(--color-input-background);
    color: var(--color-input-text);
    text-align: left;
    font-size: var(--font-paragraph--size);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    border-radius: var(--style-border-radius-inputs);

    &:autofill {
      background-color: var(--color-input-background);
      color: var(--color-input-text);
    }

    &:is(:focus, :hover) {
      background-color: var(--color-input-hover-background);
    }

    &:is(:focus) {
      outline-color: var(--color-input-background);
    }
  }

  /* Date picker calendar icon
   * Safari doesn't show the icon and Firefox correctly applies the color from the input field.
   * Webkit browsers need the mask-image trick to use the correct icon color.
   */
  .field--send-on .recipient-fields__input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 24 24' %3E%3Cg%3E%3Cpath d='M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-image: none;
    background-color: currentColor;
    mask-type: match-source;
  }

  /* For Webkit browsers - text cursor for input area */
  .field--send-on .recipient-fields__input::-webkit-datetime-edit {
    cursor: text;
  }

  .field--send-on .recipient-fields__input::-webkit-datetime-edit-year-field,
  .field--send-on .recipient-fields__input::-webkit-datetime-edit-month-field,
  .field--send-on .recipient-fields__input::-webkit-datetime-edit-day-field {
    /* Override the disabled color */
    color: var(--color-input-text);
  }

  /* Fallback for other browsers */
  .field--send-on .recipient-fields__input {
    cursor: text;
  }

  /* For Firefox - entire field is clickable, so show pointer */
  @supports (-moz-appearance: none) {
    .field--send-on .recipient-fields__input {
      cursor: pointer;
    }
  }
/* END_SNIPPET:gift-card-recipient-form-styles */

/* START_SNIPPET:grid-density-controls (INDEX:78) */
.column-options-wrapper {
    --icon-offset: -3px;

    display: flex;
    gap: var(--gap-sm);
    min-width: fit-content;
    justify-content: flex-end;
    height: var(--minimum-touch-target);
    align-items: center;
    margin-right: var(--icon-offset);
  }

  .column-options-wrapper:only-child {
    margin-left: auto;
  }

  .facets__form-wrapper > .column-options-wrapper:first-child {
    margin-left: auto;
  }

  .facets .column-options-wrapper {
    display: none;

    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .column-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-xs);
    margin: 0;
    padding: 0;
    border: none;

    @media screen and (min-width: 750px) {
      gap: var(--gap-2xs);
    }
  }

  .column-options__option {
    display: none;
    position: relative;
  }

  .column-options__option:has(.column-picker-mobile--single),
  .column-options__option:has(.column-picker-mobile--double) {
    @media screen and (max-width: 749px) {
      display: flex;
    }
  }

  .column-options__option:has(.column-picker--default),
  .column-options__option:has(.column-picker--zoom-out) {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  /* Override base rule for grid density controls - only when visible */
  .column-options-wrapper .column-options__option:has(input[type="radio"]):has(.column-picker-mobile--single),
  .column-options-wrapper .column-options__option:has(input[type="radio"]):has(.column-picker-mobile--double) {
    @media screen and (max-width: 749px) {
      display: flex;
    }
  }

  .column-options-wrapper .column-options__option:has(input[type="radio"]):has(.column-picker--default),
  .column-options-wrapper .column-options__option:has(input[type="radio"]):has(.column-picker--zoom-out) {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .column-options__legend {
    padding: 0;
    margin: 0;
  }

  .column-options__option-input {
    /* this is a repeating pattern a bit with the variant picker buttons */

    /* remove the checkbox from the page flow */
    position: absolute;

    /* set the dimensions to match those of the label */
    inset: 0;

    /* hide it */
    opacity: 0;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    aspect-ratio: unset;
    border: none;
    border-radius: 0;
    background: transparent;
    appearance: auto;
    display: block;
    cursor: pointer;
  }

  .column-picker {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-50));
    padding: var(--padding-2xs);
    border-radius: var(--style-border-radius-xs);
    transition: background-color var(--animation-speed) ease, color var(--animation-speed) ease;
  }

  .column-options__option:hover .column-picker {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .column-options__option-input:checked ~ .column-picker {
    color: rgb(var(--color-foreground-rgb));
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }
/* END_SNIPPET:grid-density-controls */

/* START_SNIPPET:group (INDEX:79) */
.group-block__link {
    position: absolute;
    inset: 0;
  }

  .group-block__link ~ :is(.group-block-content, .group-block__media-wrapper) {
    pointer-events: none;

    :is(a, button, input, textarea, select) {
      pointer-events: auto;
    }
  }

  /* Needs the .group-block__link ~ to be specific enough to take effect. */
  .group-block__link ~ .group-block-content--design-mode {
    pointer-events: auto;
  }
/* END_SNIPPET:group */

/* START_SNIPPET:header-actions (INDEX:80) */
.header {
    --account-offset-top: calc(
      var(--header-group-height) + (var(--header-height) * var(--transparent-header-offset-boolean))
    );

    &[data-sticky-state='active'] {
      --account-offset-top: calc(var(--header-height) - 1px);
    }
  }

  .header-actions__account-link {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    color: inherit;
    text-decoration: none;
    transition: opacity var(--header-content-transition-timing);

    &:hover {
      opacity: 0.7;
    }
  }

  .header-actions__account-link .svg-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-drawer {
    --cart-drawer-padding: var(--padding-xl) var(--padding-xl);
    --cart-drawer-padding-desktop: var(--padding-xl) var(--padding-2xl);

    @media screen and (min-width: 750px) {
      margin-inline-end: calc(var(--gap-xs) * -1);
    }
  }

  @media screen and (min-width: 750px) {
    .cart-drawer--text {
      display: flex;
      align-items: center;
    }
  }

  .cart-drawer__dialog {
    position: fixed;
    overflow: hidden;
    border-radius: 0;
    width: 100%;
    height: 100%;
    margin: 0 0 0 auto;
    padding: 0;
    border-left: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    background-color: var(--color-background);

    @media screen and (min-width: 750px) {
      width: var(--sidebar-width);
      max-width: 95vw;
    }
  }

  /* Needed to ensure the drawer is full height */
  .cart-drawer__dialog:modal {
    max-height: 100dvh;
    overflow-y: hidden;
  }

  .cart-drawer__inner {
    height: 100%;
    overflow: hidden;
  }

  .cart-drawer__content {
    height: calc(100% - var(--header-height));
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: var(--color-background);
    flex-grow: 1;
    overflow-y: auto;
  }

  .cart-drawer__heading {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    margin-bottom: 0;
  }

  .cart-drawer__close-button {
    margin-right: calc(var(--padding-sm) * -1);
    top: var(--margin-sm);

    @media screen and (max-width: 749px) {
      top: var(--margin-2xs);
    }
  }

  .cart-drawer--empty .cart-drawer__content {
    text-align: center;
    min-height: auto;
  }

  .cart-drawer--empty .cart-drawer__heading {
    margin-bottom: var(--margin-md);
  }

  .cart-drawer__items .cart-items__table-row {
    padding-bottom: var(--gap-xl);
    border-bottom: var(--style-border-width) solid var(--color-border);
    margin-bottom: var(--gap-xl);
  }

  .cart-drawer__items .cart-items__table-row:has(+ .cart-items__nested-line) {
    border-bottom: none;
    margin-bottom: 0;
  }

  .cart-drawer__items .cart-items__table-row:last-child {
    border-bottom: none;
  }

  .cart-drawer__summary {
    --cart-drawer-summary-padding: var(--padding-lg);

    position: sticky;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-xl);
    padding: var(--cart-drawer-summary-padding);
    margin-top: auto;
    background-color: var(--color-background);
    /* stylelint-disable-next-line color-named */
    mask-image: linear-gradient(to bottom, transparent, black var(--cart-drawer-summary-padding));

    @media screen and (min-width: 750px) {
      --cart-drawer-summary-padding: var(--padding-2xl);
    }
  }

  .cart-drawer__dialog[cart-summary-sticky='false'] .cart-drawer__summary {
    position: static;
    mask-image: none;
  }

  .cart-drawer__dialog[cart-summary-sticky='false'] .cart-drawer__items {
    overflow: unset;
  }

  .cart-actions summary {
    padding-inline: 0;
    padding-block: var(--padding-sm);
    line-height: 1.2;
    min-height: var(--minimum-touch-target);
  }

  .cart-drawer__summary .cart__summary-totals:not(:has(.cart__subtotal-container:empty)) {
    border-block-start: var(--style-border-width) solid var(--color-border);
    padding-block-start: var(--padding-2xl);
  }

  .cart-drawer__summary .cart-note {
    @media screen and (min-width: 750px) {
      margin-block-start: var(--margin-3xs);
    }
  }

  .cart-drawer__heading--empty {
    display: flex;
    justify-content: center;
  }

  .cart-drawer__items {
    display: flex;
    flex-direction: column;
    padding-inline: var(--cart-drawer-padding);
    overflow-y: auto;

    @media screen and (min-width: 750px) {
      padding-inline: var(--cart-drawer-padding-desktop);
    }
  }

  .cart-drawer__items .cart-items__table-row {
    padding-bottom: var(--gap-xl);
    border-bottom: var(--style-border-width) solid var(--color-border);
    margin-bottom: var(--gap-xl);
  }

  .cart-drawer__items .cart-items__table-row:last-child {
    border-bottom: none;
    padding-block-end: 0;
    margin-block-end: 0;
  }

  .cart-drawer--empty .cart-drawer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    margin-top: 0;
  }

  .cart-drawer:not(:has(.cart-form)) .cart-drawer__content {
    justify-content: center;
  }

  .cart-drawer__header {
    background-color: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--cart-drawer-padding);
    border-bottom: var(--style-border-width) solid none;
    position: sticky;
    top: 0;
    z-index: 1;

    @media screen and (min-width: 750px) {
      padding-inline: var(--cart-drawer-padding-desktop);
    }
  }

  .cart-drawer--empty .cart-drawer__header {
    justify-content: right;
    border-bottom: none;
    padding-bottom: 0;
  }

  .cart-drawer--empty .cart-drawer__heading {
    text-align: center;
  }

  header-actions {
    display: flex;

    @media screen and (max-width: 749px) {
      justify-self: flex-end;
    }
  }

  @media screen and (min-width: 750px) {
    .header-actions--text {
      gap: var(--gap-xl);
    }

    .header-actions__text-style {
      font-size: var(--header-actions-font-size);
      font-family: var(--header-actions-font-family);
      font-weight: var(--header-actions-font-weight);
      text-transform: var(--header-actions-text-case);
    }
  }

  #header-component[data-menu-style='drawer'] header-actions {
    justify-self: flex-end;
  }

  .header__column--right header-actions {
    margin-inline-start: calc(var(--gap-md) * -1);
  }

  .header-actions__cart-icon {
    --cart-bubble-size: 20px;
    --cart-bubble-top: 4.5px;
    --cart-bubble-right: 2.5px;

    position: relative;
  }

  .header-actions__cart-icon .cart-bubble {
    position: absolute;
    width: var(--cart-bubble-size, 20px);
    top: var(--cart-bubble-top);
    right: var(--cart-bubble-right);
  }

  @media screen and (min-width: 750px) {
    .header-actions__cart-icon--text.header-actions__cart-icon .cart-bubble {
      position: relative;
      top: 0;
    }
  }

  .cart-drawer__heading .cart-bubble {
    width: fit-content;
    border-radius: var(--style-border-radius-buttons-primary);
    aspect-ratio: auto;
    padding: var(--cart-padding);
  }

  .cart-drawer__heading .cart-bubble[data-maintain-ratio] {
    width: min(1lh, 22px);
    height: min(1lh, 22px);
  }

  .header-actions__cart-icon .cart-bubble__text,
  .cart-drawer__heading .cart-bubble__text {
    font-family: var(--font-paragraph--family);
    font-weight: var(--font-paragraph--weight);
  }

  .header-actions__cart-icon.header-actions__cart-icon--has-cart svg {
    /* Create donut mask where the cart bubble sits */
    mask: radial-gradient(
      calc(var(--cart-bubble-size) + 2px) at calc(100% - var(--cart-bubble-right)) var(--cart-bubble-top),
      transparent 45.45%,
      #fff 45.45%,
      #fff 100%
    );
  }

  .cart-drawer__heading .cart-bubble .cart-bubble__background {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
  }

  .cart-drawer__heading .cart-bubble__text {
    color: var(--color-foreground);
    font-size: clamp(var(--font-size--3xs), 0.75em, var(--font-size--xs));
  }

  .cart-bubble.cart-bubble--animating .cart-bubble__background {
    animation: grow var(--animation-speed) var(--animation-easing);
  }

  .cart-bubble--animating .cart-bubble__text {
    --start-y: -1em;
    --start-opacity: 1;
    /* Set initial transform state before animation starts */
    transform: translate(0, var(--start-y, -1em));
    opacity: var(--start-opacity, 1);
    animation: move-and-fade var(--animation-speed) var(--animation-easing);
  }

  cart-icon:has(.cart-bubble__text-count:empty) {
    --cart-bubble-size: 10px;
    --cart-bubble-top: 9px;
    --cart-bubble-right: 9px;

    .svg-wrapper {
      --cart-bubble-top: 4px;
      --cart-bubble-right: 4px;
    }
  }

  @media screen and (min-width: 750px) {
    cart-icon.header-actions__cart-icon--text:has(.cart-bubble__text-count:empty) {
      --cart-bubble-right: 2.5px;
    }
  }

  @media screen and (prefers-reduced-motion: no-preference) {
    html:active-view-transition-type(empty-cart-drawer) {
      .cart-drawer__close-button {
        view-transition-name: cart-drawer-close-button;
      }
    }
  }

  :active-view-transition {
    .cart-drawer__header,
    .cart-drawer__content {
      background: transparent;
    }
  }

  ::view-transition-old(cart-drawer-content) {
    transform-origin: 50% 33%;
    animation: cart-contents-old var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
  }

  ::view-transition-new(cart-drawer-content) {
    transform-origin: top center;
    animation: cart-contents-new var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
  }

  @keyframes cart-contents-old {
    to {
      scale: 0.92;
      opacity: 0;
    }
  }

  @keyframes cart-contents-new {
    from {
      scale: 1.05;
      translate: 0 128px;
      filter: blur(1px);
      opacity: 0;
    }
  }
  .header-actions__text {
    display: flex;
    align-items: center;
  }

  @media screen and (min-width: 750px) {
    .header-actions__cart-icon--text {
      display: flex;
      align-items: center;
      gap: var(--gap-xs);
    }

    .header__column--right .header-actions--text {
      margin-inline-start: 0;
    }
  }
/* END_SNIPPET:header-actions */

/* START_SNIPPET:header-drawer (INDEX:81) */
.header__icon--menu {
    position: initial;
  }

  .menu-drawer-container .header__icon--summary {
    color: var(--color-foreground);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--padding-lg);
  }

  .header__icon--summary .header-drawer-icon {
    margin: auto;
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .menu-drawer__featured-content {
    z-index: var(--layer-base);
    container-type: inline-size;
  }

  .menu-drawer__featured-content--childlist {
    z-index: var(--layer-flat);
  }

  .menu-drawer__featured-content-list {
    display: flex;
    gap: 1em;
    overflow-x: auto;
    padding-block-end: var(--padding-lg);
  }

  .menu-drawer__featured-content-list-item {
    flex: 0 0 auto;
  }

  .menu-drawer__featured-content-list-item--product {
    width: 35cqi;
  }

  .menu-drawer__featured-content-list-item--collection img.resource-card__image {
    width: 80cqi;
  }

  .menu-drawer__featured-content-list-item:first-child {
    margin-inline-start: var(--margin-xl);
  }

  .menu-drawer__featured-content-list-item:last-child {
    margin-inline-end: var(--margin-xl);
  }

  .menu-drawer__navigation {
    padding: 0;

    @media screen and (min-width: 750px) {
      margin-top: var(--drawer-header-desktop-top);
    }
  }

  details:not(.menu-open) .header__icon--menu .header-drawer-icon--close {
    display: none;
  }

  details.menu-open .header__icon--menu .header-drawer-icon--close {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  details.menu-open .header__icon--menu .header-drawer-icon--open {
    display: none;

    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .menu-drawer {
    position: fixed;
    transform: translateX(-100%);
    visibility: hidden;
    height: var(--drawer-height);
    width: var(--drawer-width);
    max-width: var(--drawer-max-width);
    z-index: var(--layer-menu-drawer);
    left: 0;
    top: 0;
    padding: 0;
    background-color: var(--color-background);
    overflow: auto;
    display: flex;
    border-right: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    flex-direction: column;

    @media screen and (min-width: 750px) {
      width: 25rem;
    }
  }

  /* When opening a submenu we don't want the first-level menu to be scrollable, so we reset the overflow  */
  .menu-drawer.menu-drawer--has-submenu-opened {
    overflow: initial;
  }

  .menu-drawer__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    backdrop-filter: brightness(0.75);
    z-index: var(--layer-heightened);
    opacity: 0;
    transition: opacity var(--drawer-animation-speed) ease;

    .menu-open & {
      opacity: 1;
    }
  }

  .menu-drawer,
  details[open] > .menu-drawer__submenu {
    transition: transform var(--drawer-animation-speed) ease, visibility var(--drawer-animation-speed) ease,
      opacity var(--drawer-animation-speed) ease;
  }

  .menu-open > .menu-drawer,
  .menu-open > .menu-drawer__submenu:not(.menu-drawer__menu--childlist) {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: column;
  }

  .menu-drawer__inner-container {
    position: relative;
    height: 100%;
  }

  .menu-drawer__navigation-container {
    display: grid;
    grid-template-rows: 1fr auto;
    align-content: space-between;
    overflow-y: auto;
    height: 100%;
  }

  .menu-drawer__inner-submenu {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;

    @media screen and (min-width: 750px) {
      margin-top: var(--drawer-header-desktop-top);
    }
  }

  .menu-drawer__nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-drawer__menu {
    --menu-drawer-inline-padding: calc(var(--padding-sm) + 7px);

    list-style: none;
    padding-inline: var(--drawer-padding);
    margin-inline: 0;
    margin-block-start: 0;
  }

  .menu-drawer__menu--grid {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: var(--padding-sm);
    padding-inline-end: var(--menu-drawer-inline-padding);
    padding-block-start: var(--padding-xs);
  }

  .menu-drawer__menu--childlist:not(.menu-drawer__menu--grid) {
    flex-grow: 1;
  }

  .menu-drawer__menu.has-submenu,
  .menu-drawer__menu--childlist:not(:has(.menu-drawer__animated-element)) {
    margin-block-end: var(--margin-xs);

    @media screen and (min-width: 750px) {
      margin-block-end: 2.5rem;
    }
  }

  .menu-drawer__list-item--divider {
    border-block-end: 1px solid var(--color-border);
  }

  .menu-drawer__list-item--deep:not(.menu-drawer__list-item--divider) .menu-drawer__menu {
    margin-block-start: -0.3rem;
  }

  .menu-drawer__list-item--flat.menu-drawer__list-item--divider .menu-drawer__menu {
    margin-block-start: -0.4rem;
  }

  .menu-drawer__menu-container--divider {
    border-block-end: 1px solid var(--color-border);
  }

  .menu-drawer__menu > .menu-drawer__list-item {
    display: flex;
    min-height: calc(2 * var(--padding-lg) + var(--icon-size-xs));
  }

  .menu-drawer__list-item--deep .menu-drawer__list-item,
  .menu-drawer__list-item--flat .menu-drawer__list-item {
    min-height: auto;
  }

  .menu-drawer__menu .menu-drawer__list-item--flat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-block-end: var(--margin-md);
  }

  .menu-drawer__menu--childlist .menu-drawer__list-item--flat {
    margin-block-end: var(--margin-sm);

    @media screen and (min-width: 750px) {
      margin-block-end: var(--margin-lg);
    }
  }

  .menu-drawer__menu--childlist .menu-drawer__list-item--flat.menu-drawer__list-item--divider {
    margin-block-end: 0;
  }

  .menu-drawer__list-item--flat .menu-drawer__menu--childlist {
    width: 100%;
    padding-inline: 0;
  }

  .menu-drawer-container[open] .menu-drawer__animated-element {
    animation: menu-drawer-nav-open var(--drawer-animation-speed) ease-in-out;
    animation-delay: calc(var(--drawer-animation-speed) + (var(--menu-drawer-animation-index) - 1) * 0.1s);
    animation-fill-mode: backwards;
  }

  .menu-drawer__menu accordion-custom .details-content--no-animation {
    animation: none;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition: none;
  }

  .menu-drawer__menu details,
  .menu-drawer__menu-item,
  .menu-drawer__menu accordion-custom {
    width: 100%;
  }

  .menu-drawer__list-item--divider .menu-drawer__menu-item:not(.menu-drawer__menu-item--child) {
    min-height: calc(2 * var(--padding-lg) + var(--icon-size-xs));
  }

  .menu-drawer__menu-item--mainlist {
    min-height: calc(2 * var(--padding-lg) + var(--icon-size-xs));
    font-family: var(--menu-top-level-font-family);
    font-style: var(--menu-top-level-font-style);
    font-weight: var(--menu-top-level-font-weight);
    font-size: var(--menu-top-level-font-size);
    line-height: var(--menu-top-level-font-line-height);
    text-transform: var(--menu-top-level-font-case);
    color: var(--menu-top-level-font-color);
    justify-content: space-between;

    &:hover {
      color: var(--menu-top-level-font-color);
    }
  }

  .menu-drawer__menu-item--parent {
    font-family: var(--menu-parent-font-family);
    font-style: var(--menu-parent-font-style);
    font-weight: var(--menu-parent-font-weight);
    font-size: var(--menu-parent-font-size);
    line-height: var(--menu-parent-font-line-height);
    text-transform: var(--menu-parent-font-case);
    color: var(--menu-parent-font-color);

    &:hover {
      color: var(--menu-parent-font-color);
    }
  }

  .menu-drawer__menu-item--child {
    font-family: var(--menu-child-font-family);
    font-style: var(--menu-child-font-style);
    font-weight: var(--menu-child-font-weight);
    font-size: var(--menu-child-font-size);
    line-height: var(--menu-child-font-line-height);
    text-transform: var(--menu-child-font-case);
    color: var(--menu-child-font-color);

    &:hover {
      color: var(--menu-child-font-color);
    }
  }

  .menu-drawer__menu--childlist summary.menu-drawer__menu-item {
    display: flex;
    width: 100%;
    padding-inline-end: 0;
  }

  .menu-drawer__list-item--deep .menu-drawer__menu,
  .menu-drawer__menu--grandchildlist {
    padding-inline: 0;
  }

  .menu-drawer__list-item--deep .menu-drawer__menu {
    padding-block-end: 0.5rem;
  }

  .menu-drawer__list-item--deep.menu-drawer__list-item--divider .menu-drawer__menu {
    padding-block-end: 0.3rem;
  }

  .menu-drawer__list-item--flat.menu-drawer__list-item--divider .menu-drawer__menu--grandchildlist {
    padding-block-end: 0.5rem;
  }

  .menu-drawer__menu-item {
    display: flex;
    padding: var(--padding-2xs) 0;
    position: relative;
    text-decoration: none;
    justify-content: space-between;
    align-items: center;
  }

  .menu-drawer__menu-item:has(> .menu-drawer__link-image) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: var(--padding-3xs);
    padding: 0;
  }

  .menu-drawer__link-image {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  /* Fix alignment for collection image mode links without images in drawer */

  /* Target menu items in grids that have images */
  .menu-drawer__menu--grid:has(.menu-drawer__link-image) .menu-drawer__menu-item:not(:has(> .menu-drawer__link-image)) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: var(--padding-3xs);
    padding: 0;
  }

  .menu-drawer__menu--grid:has(.menu-drawer__link-image)
    .menu-drawer__menu-item:not(:has(> .menu-drawer__link-image))::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--color-foreground-muted);
    opacity: 0.1;
    border-radius: var(--menu-image-border-radius);
  }

  .menu-drawer__close-button {
    position: relative;
    right: auto;
    top: auto;
    width: fit-content;
    height: fit-content;
    color: inherit;
    padding: var(--padding-lg);
  }

  .menu-drawer__back-button {
    display: flex;
    width: 100%;
    padding: var(--padding-md) var(--padding-xl);
    border: none;
    align-items: center;
    color: var(--color-foreground);
    background-color: transparent;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    overflow-x: hidden;
    line-height: 1.2;
    box-shadow: none;
  }

  .menu-drawer__menu-item-text {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /** Styles when the country selector is hidden */
  .menu-drawer .language-selector:not(.menu-drawer__submenu *) {
    width: fit-content;
    padding-inline-start: 0;

    .localization-form__select {
      text-align: left;
    }
  }

  .menu-drawer__menu-item > .svg-wrapper {
    width: fit-content;
    height: fit-content;
    margin: 0;
    padding-block: var(--padding-lg);
    padding-inline-start: var(--padding-xl);
    flex-shrink: 0;
  }

  .menu-drawer__list-item--divider .menu-drawer__menu-item > .svg-wrapper {
    padding-block: var(--padding-md);
  }

  .menu-drawer svg {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .menu-drawer__submenu {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100dvh;
    left: 0;
    background-color: var(--color-background);
    z-index: var(--layer-flat);
    transform: translateX(-5%);
    visibility: hidden;
    overflow-y: auto;
    opacity: 0;
  }

  .menu-drawer__back-button > .svg-wrapper {
    margin-right: var(--padding-md);
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .menu-drawer__utility-links {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-block: auto var(--padding-sm);
    margin-inline-start: var(--padding-xl);
    background-color: rgb(var(--color-foreground) 0.03);
  }

  .menu-drawer__account {
    display: inline-flex;
    align-items: center;
    gap: var(--gap-xs);
    text-decoration: none;
    height: 44px;
    font-size: 1.4rem;
    color: rgb(var(--color-foreground));
  }

  .menu-drawer__account svg {
    height: var(--icon-size-sm);
    width: var(--icon-size-sm);
  }

  .menu-drawer__account shop-user-avatar {
    --shop-avatar-size: 2.4rem;

    margin-right: 0.55rem;
    margin-left: -0.45rem;
  }

  .menu-drawer__link-image,
  .menu-drawer__featured-product-image,
  .menu-drawer__featured-collection-image,
  .menu-drawer__featured-collection-link::before {
    border-radius: var(--menu-image-border-radius);
  }

  @keyframes menu-drawer-nav-open {
    0% {
      visibility: hidden;
      opacity: 0;
      transform: translateX(-0.5rem);
    }

    100% {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes menu-drawer-subnav-open {
    0% {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }

    100% {
      visibility: hidden;
      opacity: 0;
      transform: translateX(-1rem);
    }
  }

  /* Drawer Localization Styles */
  .drawer-localization__button .icon-flag {
    width: var(--menu-localization-font-size, var(--icon-size-sm));
    height: var(--menu-localization-font-size, var(--icon-size-sm));
    clip-path: circle(50%); /* stylelint-disable-line */
    background-position: center;
    background-size: cover;
    margin-inline-end: 4px;
    position: relative;
  }

  .drawer-localization__button .icon-flag::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 var(--size-shadow) var(--color-shadow);
    border-radius: 50%;
  }

  .drawer-localization .country-filter {
    padding-block: 8px;
  }

  .drawer-localization .drawer-localization__button {
    display: flex;
    padding: 0;
    position: relative;
    text-decoration: none;
    height: 44px;

    &:hover {
      color: var(--color-foreground);
    }
  }

  .drawer-localization .drawer-localization__button .icon-caret {
    width: fit-content;
    height: fit-content;
    margin: 0;
    padding: var(--padding-xl) var(--padding-xl) var(--padding-xl) var(--padding-xs);
  }

  .menu-drawer__localization:not(drawer-localization-component) .language-selector {
    font-family: var(--menu-localization-font);
    font-size: var(--menu-localization-font-size);
  }

  .menu-drawer__localization .language-selector.h5 {
    padding-inline-start: 0;
  }

  .drawer-localization {
    display: contents;
    color: var(--color-foreground);
  }

  .drawer-localization localization-form-component {
    position: relative;
    height: 100%;
  }

  .drawer-localization .mobile-localization,
  .drawer-localization .drawer-localization__button--label {
    display: flex;
    gap: var(--gap-xs);
    margin-block: 0;
    align-items: center;
  }

  .drawer-localization__button--label.h6 {
    font-family: var(--menu-localization-font);
  }

  .drawer-localization img {
    width: var(--icon-size-sm);
  }

  .drawer-localization .localization-button__icon,
  .drawer-localization .localization-button__icon svg {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .drawer-localization summary.is-disabled {
    pointer-events: none;
  }

  .drawer-localization .localization-wrapper {
    width: 100%;
  }

  .drawer-localization .localization-form {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .drawer-localization .localization-form > * {
    padding-inline: var(--padding-xl);
  }

  .drawer-localization .language-selector .svg-wrapper.icon-caret {
    transform: translateY(-50%) rotate(0deg);
  }

  .drawer-localization .language-selector .svg-wrapper.icon-caret svg {
    transform: none;
  }
/* END_SNIPPET:header-drawer */

/* START_SNIPPET:image (INDEX:85) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:jumbo-text (INDEX:86) */
.jumbo-text__container {
    width: 100%;
  }

  footer .jumbo-text__container {
    pointer-events: none;
  }

  jumbo-text {
    display: block;
    font-family: var(--font-family, inherit);
    font-style: var(--font-style, normal);
    color: var(--color, inherit);
    font-weight: var(--font-weight, inherit);
    letter-spacing: var(--letter-spacing, -0.02em);
    line-height: var(--line-height, 1);
    opacity: 0;
    visibility: hidden;
    text-align: var(--text-align);
    text-box: var(--text-trim, trim-end cap text);
    text-transform: var(--text-transform, none);
    transition: opacity 0.3s ease;
    width: 100%;
    margin-left: var(--margin-left-nudge, 0);
    margin-right: var(--margin-right-nudge, 0);
    overflow: visible;
  }

  jumbo-text.ready {
    opacity: 1;
    visibility: visible;
  }

  jumbo-text[data-cap-text='true'] {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    text-box-edge: cap text;
  }

  .jumbo-text-line {
    display: inline-flex;
    white-space: pre;
  }

  @media (prefers-reduced-motion: no-preference) {
    /* Blur effect */
    .ready[data-text-effect='blur'] {
      filter: blur(20px);
      opacity: 0.5;
      scale: 1.05;
      transition: filter 1.6s var(--animation-timing-fade-in), opacity 1.3s var(--animation-timing-fade-in),
        scale 1.6s var(--animation-timing-fade-in);
    }

    .jumbo-text-visible[data-text-effect='blur'] {
      filter: blur(0);
      opacity: 1;
      scale: 1;
    }

    /* Reveal effect */
    .ready[data-text-effect='reveal'] {
      overflow: hidden;
    }

    .ready[data-text-effect='reveal'] .jumbo-text-line {
      transform: translateY(100%);
    }

    .jumbo-text-visible[data-text-effect='reveal'] .jumbo-text-line {
      transition: transform 0.5s var(--animation-timing-fade-in) calc(var(--line-index) * 0.05s);
      transform: translateY(0);
    }

    .jumbo-text-visible[data-text-effect='reveal'] {
      overflow: visible;
      transition: overflow 0s linear 0.75s;
    }
  }
/* END_SNIPPET:jumbo-text */

/* START_SNIPPET:media (INDEX:90) */
.media-block {
    overflow: hidden;
    position: relative;

    @media screen and (min-width: 750px) {
      min-height: var(--media-height);
    }
  }

  .media-block__media {
    height: var(--media-height-mobile, auto);
    object-fit: var(--image-position, 'cover');
    object-position: center center;
    width: 100%;

    @media screen and (min-width: 750px) {
      height: 100%;
      position: absolute;
    }
  }

  deferred-media[class].media-block__media
    :is(.deferred-media__poster-button img, .deferred-media__poster-button ~ video) {
    object-fit: var(--video-position, 'cover');
  }

  /* This is to support corner radius on video and align the video to the center of the block */
  .media-block__placeholder {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    position: relative;
  }

  .media-block__media--video {
    display: flex;
    align-items: center;
    justify-content: center;

    @media screen and (max-width: 749px) {
      --media-height-mobile: auto;
    }
  }
/* END_SNIPPET:media */

/* START_SNIPPET:sorting (INDEX:96) */
.sorting-filter__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--drawer-padding) 0;
    padding-block: var(--padding-sm);
    margin-inline-end: var(--margin-md);
    position: relative;
  }

  .sorting-filter__container .facets__label {
    font-size: var(--font-h4--size);
  }

  .sorting-filter__select-wrapper {
    display: flex;
    position: relative;
    border-radius: var(--variant-picker-button-radius);
    align-items: center;
    overflow: clip;
    padding: var(--padding-2xs) var(--padding-xs);
  }

  .sorting-filter__select-wrapper:has(:focus-visible) {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .sorting-filter__select-wrapper:has(:focus-visible) .sorting-filter__select {
    outline: none;
  }

  .sorting-filter__container .sorting-filter__select {
    appearance: none;
    border: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    padding-inline-end: var(--icon-size-2xs);
    text-align: right;

    /* Needed for Safari */
    text-align-last: right;
  }

  .sorting-filter__select .icon {
    position: absolute;
    right: var(--padding-md);
    top: 50%;
    transform: translateY(-50%);
    width: var(--icon-size-2xs);
    height: var(--icon-size-2xs);
    pointer-events: none;
  }

  .sorting-filter {
    @media screen and (min-width: 750px) {
      z-index: var(--facets-upper-z-index);
    }
  }

  .sorting-filter__options {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    color: var(--color-foreground);
    z-index: var(--facets-upper-z-index);
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    background-color: var(--color-background);
    border-radius: var(--style-border-radius-popover);
    width: max-content;
    min-width: var(--facets-panel-min-width);
    min-height: 0;

    transition: grid-template-rows var(--animation-speed-slow) var(--animation-easing),
      opacity var(--animation-speed-slow) var(--animation-easing);
  }

  details[open] .sorting-filter__options {
    opacity: 1;
    grid-template-rows: 1fr;
  }

  .sorting-filter__options-inner {
    display: flex;
    flex-direction: column;
    grid-row: 1 / span 2;
    gap: var(--gap-sm);
    padding: calc(var(--drawer-padding) / 2);
    color: var(--color-foreground);
    overflow: clip;
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }

    @media screen and (min-width: 750px) {
      gap: 0;
    }
  }

  .sorting-filter__option {
    cursor: pointer;
    display: grid;
    grid-template-columns: var(--icon-size-sm) 1fr;
    gap: var(--margin-2xs);
    align-items: center;
    min-width: 180px;
    max-width: 16em;
    padding: var(--padding-2xs) calc(var(--drawer-padding) / 2) var(--padding-2xs) var(--padding-2xs);

    &:hover {
      border-radius: calc(var(--style-border-radius-popover) / 2);
      background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));
    }

    &:focus {
      border-radius: calc(var(--style-border-radius-popover) / 2);
    }
  }

  .sorting-filter__input {
    display: none;

    &:checked + .sorting-filter__checkmark + .sorting-filter__label {
      font-weight: 500;
    }
  }

  .sorting-filter__checkmark {
    visibility: hidden;
  }

  *:checked ~ .sorting-filter__checkmark {
    visibility: visible;
  }

  .sorting-filter__label {
    cursor: pointer;
    pointer-events: none;
  }

  .facets-toggle--no-filters .sorting-filter__select-wrapper {
    @media screen and (max-width: 749px) {
      padding-inline-start: 0;
    }
  }

  .facets-mobile-wrapper .sorting-filter .facets__panel {
    padding-inline: 0;
    position: relative;
  }

  .facets-mobile-wrapper .sorting-filter .facets__status {
    display: none;
  }

  .facets-mobile-wrapper:has(> :nth-child(2)) .sorting-filter .sorting-filter__options {
    left: 0;
    right: unset;
  }

  .facets-mobile-wrapper .sorting-filter .facets__label {
    margin-inline-end: var(--margin-2xs);
    font-size: var(--font-paragraph--size);
    color: var(--color-foreground-muted);
  }

  .facets-toggle .sorting-filter__container {
    @media screen and (max-width: 749px) {
      padding: 0;
    }
  }

  .facets-toggle .sorting-filter__container .facets__label {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets-toggle .sorting-filter::before {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets--drawer .sorting-filter {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }
/* END_SNIPPET:sorting */