:root {
  --dnb-ink: #101416;
  --dnb-paper: #f5f1e8;
  --dnb-paper-strong: #ece2d2;
  --dnb-accent: #ef6b2e;
  --dnb-accent-alt: #6cc3b2;
  --dnb-line: rgba(16, 20, 22, 0.12);
  --dnb-shell: min(1240px, calc(100vw - 2rem));
  --dnb-shadow: 0 18px 48px rgba(16, 20, 22, 0.08);
  /* Commerce aliases keep the WooCommerce layer on the same token system. */
  --text: var(--dnb-ink);
  --muted: rgba(16, 20, 22, 0.68);
  --accent: var(--dnb-accent);
  --surface-strong: var(--dnb-ink);
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.35rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #efe5d5 0%, var(--dnb-paper) 40%, #fbf8f1 100%);
  color: var(--dnb-ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-shell {
  width: var(--dnb-shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(245, 241, 232, 0.92);
  border-bottom: 1px solid var(--dnb-line);
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.9rem 1.5rem;
  align-items: center;
  padding: 0.8rem 0 1rem;
}

.site-branding__name,
.site-footer__title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-branding {
  display: flex;
  align-items: center;
  justify-self: center;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo-link img {
  width: auto;
  max-width: min(100%, 220px);
  max-height: 76px;
}

.site-navigation--desktop {
  display: block;
  justify-self: start;
  min-width: 0;
}

.site-navigation--desktop .primary-menu {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.primary-menu,
.footer-menu {
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.primary-menu > li {
  position: relative;
}

.primary-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.primary-menu .sub-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  display: grid;
  gap: 0.75rem;
  min-width: 220px;
  margin: 0;
  padding: 1rem;
  list-style: none;
  border: 1px solid rgba(16, 20, 22, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 40px rgba(16, 20, 22, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 40;
}

.primary-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 1.25rem;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(16, 20, 22, 0.08);
  border-left: 1px solid rgba(16, 20, 22, 0.08);
  transform: rotate(45deg);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-menu .sub-menu a {
  display: block;
  font-weight: 600;
  line-height: 1.3;
}

.primary-menu a,
.utility-link,
.section-link {
  position: relative;
  font-weight: 600;
}

.primary-menu a::after,
.utility-link::after,
.section-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: var(--dnb-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.primary-menu a:hover::after,
.utility-link:hover::after,
.section-link:hover::after {
  transform: scaleX(1);
}

.site-header__utilities {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: end;
  justify-self: end;
}

.header-search {
  min-width: min(26vw, 320px);
}

.header-search--header {
  grid-column: 1 / -1;
  width: min(100%, 760px);
  justify-self: center;
}

.header-search input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--dnb-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.site-header__menu {
  position: relative;
  display: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid var(--dnb-line);
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.menu-toggle::-webkit-details-marker {
  display: none;
}

.site-header__panel {
  display: none;
  grid-column: 1 / -1;
  margin-top: 0.2rem;
  padding: 1rem 0 0.35rem;
  border-top: 1px solid rgba(16, 20, 22, 0.08);
}

.site-header__menu[open] ~ .site-header__panel,
.site-header__panel.is-open {
  display: grid;
}

.site-navigation--panel {
  display: block;
}

.site-navigation--panel .primary-menu {
  justify-content: flex-start;
}

.utility-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
}

.utility-link__icon--account {
  width: 1.28rem;
  height: 1.28rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.utility-link__icon--cart {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

/* A shorter, wider desktop hero gives the opening message room to breathe
   without pushing the catalogue too far below the fold. */
@media (min-width: 681px) {
  .hero-band {
    padding: 2.5rem 0 1.5rem;
  }

  .hero-band__banner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
    grid-template-areas:
      "title title"
      "eyebrow eyebrow"
      "copy copy"
      "genres genres"
      "actions actions";
    align-items: end;
    gap: 0.85rem 2rem;
    min-height: 0;
    padding: clamp(1.65rem, 2.6vw, 2.35rem);
  }

  .hero-band__banner > .eyebrow {
    grid-area: eyebrow;
    margin: 0;
  }

  .hero-band__banner > h1 {
    grid-area: title;
    max-width: none;
    font-size: clamp(2.6rem, 4.2vw, 4.6rem);
  }

  .hero-band__text {
    grid-area: copy;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero-band__genres {
    grid-area: genres;
    margin-top: 0.25rem;
  }

  .hero-band__actions {
    grid-area: actions;
    justify-content: stretch;
    justify-self: stretch;
    margin: 0.25rem 0 0;
  }
}

/* On wide desktop screens the banner is a single, concise announcement.
   Let the headline and update copy use the whole visual width; smaller
   screens retain the more compact responsive composition above. */
@media (min-width: 1101px) {
  .hero-band {
    padding: 2rem 0 1.25rem;
  }

  .hero-band__banner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "eyebrow"
      "copy"
      "genres"
      "actions";
    gap: 0.65rem;
    padding: clamp(1.5rem, 2vw, 2rem) clamp(2rem, 2.7vw, 3rem);
  }

  .hero-band__banner > h1 {
    max-width: none;
    font-size: clamp(3.15rem, 7vw, 8rem);
    letter-spacing: -0.055em;
    white-space: nowrap;
  }

  .hero-band__text {
    width: 100%;
    max-width: none;
    font-size: clamp(1rem, 1.35vw, 1.22rem);
  }

  .hero-band__genres {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .hero-genre {
    display: grid;
    align-content: center;
    justify-content: stretch;
    min-height: 4.35rem;
  }

  .hero-genre__meta {
    margin-top: 0.15rem;
  }

  .hero-band__actions {
    justify-self: stretch;
    margin-top: 0.25rem;
  }
}

/* My Account has two different WooCommerce structures: a guest login/register
   view and a signed-in dashboard.  Keep their layout rules separate so a nested
   WooCommerce wrapper cannot trap the dashboard in the navigation column. */
@media (min-width: 981px) {
  .woocommerce-account .entry-content > .woocommerce {
    display: block;
  }

  .woocommerce-account .woocommerce-MyAccount {
    display: grid;
    grid-template-columns: minmax(14.5rem, 17rem) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: start;
    width: 100%;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    grid-column: 1;
    width: 100%;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    grid-column: 2;
    width: 100%;
    min-width: 0;
  }

  body.woocommerce-account:not(.logged-in) .entry-content > .woocommerce {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 32rem));
    justify-content: center;
    align-items: start;
    gap: 2rem clamp(1.5rem, 3vw, 3rem);
  }

  body.woocommerce-account:not(.logged-in) .entry-content > .woocommerce > h1,
  body.woocommerce-account:not(.logged-in) .entry-content > .woocommerce > .woocommerce-notices-wrapper,
  body.woocommerce-account:not(.logged-in) .entry-content > .woocommerce > .woocommerce-info {
    grid-column: 1 / -1;
  }

  body.woocommerce-account:not(.logged-in) .entry-content > .woocommerce > .woocommerce-form-login,
  body.woocommerce-account:not(.logged-in) .entry-content > .woocommerce > .woocommerce-form-register {
    float: none;
    width: 100%;
    margin: 0;
  }
}

.site-header__utilities--compact .utility-link--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(16, 20, 22, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.site-header__utilities--compact .utility-link--cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0;
}

.site-header__utilities--compact .utility-link--cart > span.utility-link__icon {
  display: none;
}

.cart-count {
  display: inline-flex;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.4rem;
  margin-left: 0.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--dnb-accent);
  color: #fff;
  font-size: 0.8rem;
}

.utility-link__label,
.cart-summary__text {
  display: none;
  white-space: nowrap;
}

@media (min-width: 1101px) {
  .site-header__utilities--compact {
    gap: 0.8rem;
  }

  .site-header__utilities--compact .utility-link--account {
    width: auto;
    min-width: 0;
    gap: 0.4rem;
    padding: 0 0.7rem;
  }

  .utility-link__label {
    display: inline;
    font-size: 0.82rem;
  }

  .site-header__utilities--compact .utility-link--cart {
    padding-right: 0.35rem;
    border-left: 1px solid rgba(16, 20, 22, 0.12);
    border-radius: 0;
    background: transparent;
  }

  .cart-summary__text {
    display: inline-flex;
    gap: 0.2rem;
    align-items: center;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .cart-summary__total {
    font-weight: 800;
  }
}

.hero-band {
  padding: 4rem 0 2rem;
}

.hero-band__inner {
  display: block;
}

.hero-band__banner {
  position: relative;
  overflow: hidden;
  padding: 2.2rem;
  border-radius: 28px;
  box-shadow: var(--dnb-shadow);
  background:
    radial-gradient(circle at top right, rgba(108, 195, 178, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(239, 107, 46, 0.12), transparent 36%),
    linear-gradient(135deg, #111718 0%, #1b2527 100%);
  color: #f8f2e8;
}

.hero-band__banner::after {
  content: "";
  position: absolute;
  inset: auto -8% -20% auto;
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 195, 178, 0.16), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--dnb-accent-alt);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-band h1,
.section-heading h2,
.value-card h3,
.archive-title {
  margin: 0;
  line-height: 1.05;
}

.hero-band h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 12ch;
}

.hero-band__text {
  width: 100%;
  max-width: none;
  font-size: 1.05rem;
}

.hero-band__genres {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.hero-genre {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  min-height: 5.1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(16, 20, 22, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  color: #101416;
  font-weight: 800;
}

.hero-genre:hover,
.hero-genre:focus {
  border-color: rgba(108, 195, 178, 0.75);
  background: #fff;
  color: #101416;
  transform: translateY(-1px);
}

.hero-genre__name,
.hero-genre__meta {
  display: block;
}

.hero-genre__meta {
  color: rgba(16, 20, 22, 0.7);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-band__actions .button {
  width: 100%;
  min-height: 5.1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(16, 20, 22, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  color: #101416;
  font-weight: 800;
}

.hero-band__actions .button:hover,
.hero-band__actions .button:focus {
  border-color: rgba(108, 195, 178, 0.75);
  background: #fff;
  color: #101416;
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button--primary {
  background: var(--dnb-accent);
  color: #fff;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.hero-stat__label,
.genre-card__meta {
  color: rgba(16, 20, 22, 0.7);
}

.home-section {
  padding: 2rem 0 3rem;
}

.home-section--contrast {
  background:
    linear-gradient(180deg, rgba(16, 20, 22, 0.04), rgba(16, 20, 22, 0.01)),
    linear-gradient(135deg, rgba(108, 195, 178, 0.08), rgba(239, 107, 46, 0.1));
  border-top: 1px solid rgba(16, 20, 22, 0.08);
  border-bottom: 1px solid rgba(16, 20, 22, 0.08);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.genre-grid,
.value-grid,
.post-grid {
  display: grid;
  gap: 1rem;
}

.genre-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.genre-card,
.value-card,
.post-card {
  padding: 1.4rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(16, 20, 22, 0.08);
  box-shadow: var(--dnb-shadow);
}

.genre-card__name {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

.value-card__heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.value-card__heading h3 {
  margin: 0 0 0.75rem;
}

.value-card__icon {
  display: inline-grid;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  place-items: center;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  color: #187f68;
  background: rgba(108, 195, 178, 0.16);
  font-size: 0.95rem;
  line-height: 1;
}

.value-card p {
  margin: 0;
}

.value-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
}

.value-card__links .section-link {
  display: inline-flex;
}

.value-card--accent {
  background:
    linear-gradient(180deg, rgba(17, 23, 24, 0.02), rgba(17, 23, 24, 0)),
    rgba(255, 255, 255, 0.82);
}

.value-card--links .value-card__links {
  gap: 0.65rem;
}

.value-card--contact {
  background:
    radial-gradient(circle at top right, rgba(108, 195, 178, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.8);
}

.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--dnb-line);
  background: rgba(255, 255, 255, 0.36);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(220px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.site-footer__brand,
.site-footer__nav,
.site-footer__meta {
  display: grid;
  gap: 0.9rem;
}

.site-footer__brand p,
.site-footer__meta p {
  margin: 0;
}

.site-footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__payment {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-height: 2rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(16, 20, 22, 0.15);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--dnb-ink);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.site-footer__payment svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__payment--square {
  color: #1f2933;
}

.site-footer__payment--paypal {
  color: #003087;
  font-style: italic;
}

.site-footer__payment--paypal span {
  color: #009cde;
}

.site-footer__payment--apple {
  color: #171717;
}

.site-footer__payment--google b {
  color: #4285f4;
  font-size: 0.92rem;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
}

.footer-menu li {
  min-width: 0;
}

.footer-menu a {
  color: rgba(16, 20, 22, 0.82);
  font-weight: 600;
}

.site-footer__trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem 1rem;
  padding-top: .3rem;
}

.site-footer__trust-title {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(16, 20, 22, .56);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.site-footer__trust a {
  color: rgba(16, 20, 22, .82);
  font-size: .9rem;
  font-weight: 600;
}

.shop-shell,
.archive-shell {
  padding: 2rem 0 3rem;
}

.page-shell {
  padding: 2rem 0 3rem;
}

.page-panel {
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 20, 22, 0.08);
  box-shadow: var(--dnb-shadow);
}

.page-content {
  color: rgba(16, 20, 22, 0.82);
}

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

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

.shop-shell {
  display: grid;
  gap: 1.5rem;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.catalogue-sidebar-desktop {
  display: block;
}

.catalogue-filters-shell {
  display: none;
}

.catalogue-layout__content {
  min-width: 0;
}

.catalogue-sidebar {
  position: sticky;
  top: 8.5rem;
  display: grid;
  gap: 1.1rem;
}

.catalogue-sidebar__section {
  padding: 1.25rem 1.2rem;
  border: 1px solid rgba(16, 20, 22, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 247, 240, 0.88));
  box-shadow: var(--dnb-shadow);
}

.catalogue-sidebar__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--dnb-accent-alt);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.catalogue-sidebar__title,
.catalogue-sidebar__note-title {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  line-height: 1.15;
}

.catalogue-sidebar__text,
.catalogue-sidebar__note p {
  margin: 0;
  color: rgba(16, 20, 22, 0.68);
  font-size: 0.94rem;
  line-height: 1.55;
}

.catalogue-sidebar__all-link,
.catalogue-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.catalogue-sidebar__group-title {
  margin: 0.95rem 0 0.65rem;
  color: rgba(16, 20, 22, 0.54);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalogue-sidebar__details {
  display: grid;
  gap: 0.8rem;
}

.catalogue-sidebar__details-summary {
  cursor: pointer;
  list-style: none;
  color: rgba(16, 20, 22, 0.54);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalogue-sidebar__details-summary::-webkit-details-marker {
  display: none;
}

.catalogue-sidebar__details-summary::after {
  content: "+";
  float: right;
  color: rgba(16, 20, 22, 0.46);
}

.catalogue-sidebar__details[open] .catalogue-sidebar__details-summary::after {
  content: "-";
}

.catalogue-sidebar__details-body {
  display: grid;
}

.catalogue-sidebar__select-wrap {
  display: grid;
  gap: 0.65rem;
}

.catalogue-sidebar__filter-form {
  display: grid;
  gap: 1.1rem;
}

.catalogue-sidebar__filter-block {
  display: grid;
}

.catalogue-sidebar__actions {
  display: grid;
  gap: 0.85rem;
}

.catalogue-sidebar__select-label {
  color: rgba(16, 20, 22, 0.54);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalogue-sidebar__select {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(16, 20, 22, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dnb-ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.catalogue-sidebar__select:focus {
  outline: 2px solid rgba(108, 195, 178, 0.45);
  outline-offset: 2px;
}

.catalogue-sidebar__price-filter {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(16, 20, 22, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.catalogue-sidebar__price-range {
  width: 100%;
  accent-color: var(--dnb-ink);
}

.catalogue-sidebar__price-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(16, 20, 22, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
}

.catalogue-sidebar__price-values strong {
  color: var(--dnb-ink);
  font-size: 1rem;
}

.catalogue-sidebar__apply {
  width: 100%;
  min-height: 3rem;
  padding: 0 1.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--dnb-ink);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--dnb-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.catalogue-sidebar__apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(16, 20, 22, 0.14);
}

.catalogue-sidebar__apply:active {
  transform: translateY(0);
  box-shadow: var(--dnb-shadow);
}

.catalogue-sidebar__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  background: rgba(16, 20, 22, 0.06);
  color: var(--dnb-ink);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.catalogue-sidebar__clear:hover {
  background: rgba(16, 20, 22, 0.1);
  transform: translateY(-1px);
}

.catalogue-filter-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(16, 20, 22, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--dnb-ink);
  font-weight: 700;
  box-shadow: var(--dnb-shadow);
  cursor: pointer;
  list-style: none;
}

.catalogue-filter-toggle::-webkit-details-marker {
  display: none;
}

.catalogue-sidebar__all-link {
  margin-bottom: 0.7rem;
  background: rgba(16, 20, 22, 0.06);
}

.catalogue-sidebar__list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalogue-sidebar__link:hover,
.catalogue-sidebar__all-link:hover {
  background: rgba(16, 20, 22, 0.06);
  transform: translateX(2px);
}

.catalogue-sidebar__link.is-current,
.catalogue-sidebar__all-link.is-current {
  background: var(--dnb-ink);
  color: #fff;
}

.catalogue-sidebar__count {
  color: rgba(16, 20, 22, 0.55);
  font-size: 0.82rem;
  font-weight: 700;
}

.catalogue-sidebar__link.is-current .catalogue-sidebar__count,
.catalogue-sidebar__all-link.is-current .catalogue-sidebar__count {
  color: rgba(255, 255, 255, 0.72);
}

.catalogue-sidebar__note {
  background:
    radial-gradient(circle at top right, rgba(108, 195, 178, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.8);
}

.shop-shell .woocommerce-breadcrumb {
  margin-bottom: 1rem;
  color: rgba(16, 20, 22, 0.58);
}

.catalogue-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.1rem 0 0.45rem;
}

.collection-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 1.75rem;
  align-items: end;
  margin-bottom: 2rem;
  padding: 1.65rem 1.85rem;
  border: 1px solid rgba(16, 20, 22, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(108, 195, 178, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 226, 210, 0.8));
  box-shadow: var(--dnb-shadow);
}

.collection-hero__title {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.collection-hero__description {
  max-width: 52ch;
  color: rgba(16, 20, 22, 0.78);
  font-size: 1.02rem;
  line-height: 1.6;
}

.collection-hero__description p:last-child {
  margin-bottom: 0;
}

.collection-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: end;
  align-items: center;
}

.collection-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 1.05rem;
  border-radius: 999px;
  background: rgba(16, 20, 22, 0.92);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.collection-pill--muted {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dnb-ink);
  border: 1px solid rgba(16, 20, 22, 0.08);
}

.archive-header {
  margin-bottom: 1.5rem;
}

.post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card__title {
  margin: 1rem 0 0.5rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 1rem;
}

.catalogue-toolbar .woocommerce-result-count,
.catalogue-toolbar .woocommerce-ordering {
  margin: 0;
}

.woocommerce .woocommerce-result-count {
  color: rgba(16, 20, 22, 0.66);
  font-weight: 600;
}

.woocommerce .woocommerce-notices-wrapper:empty,
.woocommerce .widget-area,
.woocommerce-page .widget-area,
.woocommerce .sidebar,
.woocommerce-page .sidebar {
  display: none !important;
}

.woocommerce .woocommerce-ordering select,
.woocommerce div.product form.cart .variations select,
.woocommerce .quantity .qty,
.woocommerce #reviews #comment {
  border: 1px solid rgba(16, 20, 22, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.85rem 1rem;
  color: var(--dnb-ink);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce ul.products li.product a img {
  margin: 0 !important;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.dnb-product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(16, 20, 22, 0.08);
  box-shadow: var(--dnb-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.woocommerce ul.products li.product:hover .dnb-product-card {
  transform: translateY(-4px);
  border-color: rgba(16, 20, 22, 0.14);
  box-shadow: 0 24px 46px rgba(16, 20, 22, 0.12);
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.015);
  filter: saturate(1.04);
}

.dnb-product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-height: 1.75rem;
  margin-bottom: 0.25rem;
}

.dnb-product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.dnb-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dnb-badge__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dnb-badge--sale {
  background: rgba(239, 107, 46, 0.16);
  color: #a94417;
}

.dnb-badge--new {
  background: rgba(108, 195, 178, 0.18);
  color: #17685b;
}

.dnb-badge--grade {
  background: rgba(83, 191, 39, 0.16);
  color: #2f8d12;
  box-shadow: none;
}

.woocommerce ul.products li.product > a:first-child {
  display: grid;
  gap: 1.15rem;
}

.dnb-product-card__image-link {
  display: block;
  position: relative;
  z-index: 1;
}

.dnb-product-card__title-link {
  display: block;
}

.dnb-product-card__body {
  display: grid;
  gap: 0.85rem;
  flex: 1 1 auto;
  align-content: start;
}

.dnb-product-card__actions {
  margin-top: auto;
  display: grid;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1.04rem !important;
  line-height: 1.32;
  min-height: 4.05rem;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-wrap: balance;
}

.woocommerce ul.products li.product > a:first-child .attachment-woocommerce_thumbnail,
.woocommerce ul.products li.product > a:first-child img {
  margin-bottom: 0.15rem !important;
}

.woocommerce ul.products li.product .price {
  margin: 0 !important;
  color: var(--dnb-ink) !important;
  font-size: 1.4rem !important;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.dnb-product-card__meta {
  display: grid;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(16, 20, 22, 0.07);
}

.dnb-product-card__taxonomy,
.dnb-product-card__sku {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(16, 20, 22, 0.68);
}

.dnb-product-card__taxonomy a {
  color: inherit;
}

.woocommerce ul.products li.product .button {
  width: 100%;
  margin-top: 0.35rem !important;
  border-radius: 999px;
  background: var(--dnb-ink);
  color: #fff;
  text-align: center;
  padding: 0.95rem 1.1rem;
  letter-spacing: 0.01em;
}

.dnb-preview-trigger {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(248, 252, 246, 0.9);
  color: var(--dnb-ink);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(16, 20, 22, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 3;
  pointer-events: auto;
}

.dnb-preview-trigger:hover {
  transform: translate(-50%, -50%) scale(1.04);
  background: rgba(255, 255, 255, 0.96);
}

.dnb-preview-trigger__icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-left: 0.18rem;
}

.dnb-product-card__open-record {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.35rem;
  color: #17685b;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

/* The player plugin supplies the button; these labels distinguish listening
   from opening the product without changing the plugin's playback behaviour. */
.dnb-listen-control::after {
  content: 'Play preview';
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  z-index: 4;
  transform: translateX(-50%);
  padding: 0.18rem 0.42rem;
  border-radius: 4px;
  background: rgba(16, 20, 22, 0.88);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.dnb-listen-control {
  position: relative;
}

.dnb-product-card.is-preview-active .dnb-listen-control::after {
  content: 'Playing preview';
  background: #17685b;
}

.dnb-product-card__media:has(.dnb-listen-control) {
  margin-bottom: 1.2rem;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 0.75rem;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 0.45rem;
  padding: 0.45rem;
  border: 1px solid rgba(16, 20, 22, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a {
  min-width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--dnb-ink);
  font-weight: 700;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--dnb-ink);
  color: #fff;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: rgba(16, 20, 22, 0.08);
}

.woocommerce div.product {
  display: grid;
  gap: 2rem;
}

.dnb-single-product {
  gap: 2.25rem !important;
}

.dnb-single-product__backtrack {
  margin-bottom: -1rem;
}

.dnb-single-product__backlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 20, 22, 0.08);
  box-shadow: var(--dnb-shadow);
  color: var(--dnb-ink);
  font-weight: 700;
  text-decoration: none;
}

.dnb-single-product__backlink:hover,
.dnb-single-product__backlink:focus-visible {
  border-color: rgba(108, 195, 178, 0.32);
}

.dnb-single-product__hero {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.75rem;
  align-items: flex-start;
}

.dnb-single-product__gallery,
.dnb-single-product__summary {
  min-width: 0;
}

.dnb-single-product__gallery {
  /* 58% reduced by 20%: keeps artwork prominent without pushing purchase
     information below the initial desktop viewport. */
  flex: 0 1 46.4%;
}

.dnb-single-product__summary {
  flex: 0 1 53.6%;
  position: sticky;
  top: 8.5rem;
}

.dnb-single-product__gallery .onsale,
.dnb-single-product__gallery .woocommerce-product-gallery__trigger {
  z-index: 2;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.woocommerce div.product div.images {
  padding: 1.25rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(16, 20, 22, 0.08);
  box-shadow: var(--dnb-shadow);
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: auto;
  margin: 0;
}

.woocommerce div.product div.images img,
.woocommerce div.product div.images .woocommerce-product-gallery__image a {
  border-radius: 22px;
}

.woocommerce div.product div.summary {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 20, 22, 0.08);
  box-shadow: var(--dnb-shadow);
}

.dnb-single-grade {
  margin-bottom: 0.1rem;
}

.dnb-single-grade .dnb-badge--grade {
  background: rgba(108, 195, 178, 0.18);
  color: #17685b;
}

.woocommerce div.product .product_title {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.dnb-single-catalogue-number {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  width: fit-content;
  margin: .45rem 0 .1rem !important;
  padding: .55rem .7rem;
  border: 1px solid rgba(16, 20, 22, .1);
  border-radius: .6rem;
  background: rgba(247, 250, 247, .84);
  color: var(--dnb-ink);
}

.dnb-single-catalogue-number span {
  color: rgba(16, 20, 22, .6);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dnb-single-catalogue-number strong {
  font-size: .94rem;
  letter-spacing: .03em;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--dnb-ink) !important;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.has-popwave-player.single-product .woocommerce div.product audio {
  display: none;
}

.woocommerce div.product audio {
  display: block;
  width: 100%;
  margin: 0.3rem 0 0.25rem;
  border-radius: 999px;
  background: rgba(16, 20, 22, 0.05);
  box-shadow: inset 0 0 0 1px rgba(16, 20, 22, 0.06);
}

.woocommerce div.product .yith-wcwl-add-to-wishlist,
.woocommerce div.product .tinv-wraper {
  margin: 0;
  color: rgba(16, 20, 22, 0.74);
  font-weight: 600;
}

.woocommerce div.product .yith-wcwl-add-to-wishlist a,
.woocommerce div.product .tinv-wraper a {
  color: inherit;
}

.woocommerce div.product .stock {
  margin: 0;
  color: #7c7711;
  font-weight: 700;
}

.woocommerce div.product form.cart {
  display: grid;
  gap: 0.8rem;
  margin: 0.1rem 0 0.35rem;
}

.woocommerce div.product form.cart .button,
.woocommerce div.product .single_add_to_cart_button {
  min-height: 3.2rem;
  border-radius: 999px;
  background: var(--dnb-ink);
  color: #fff;
  font-weight: 800;
}

.dnb-single-product__reference {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 1.75rem;
}

.dnb-purchase-info,
.release-facts {
  display: grid;
  align-content: start;
  gap: .9rem;
  margin: 0;
  padding: clamp(1.35rem, 2.4vw, 1.9rem);
  border: 1px solid rgba(16, 20, 22, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--dnb-shadow);
}

.dnb-reference-card__title,
.release-facts__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1;
}

.dnb-purchase-info__condition,
.dnb-purchase-info__delivery {
  display: grid;
  gap: 0.35rem;
}

.dnb-purchase-info__delivery {
  padding-top: .9rem;
  border-top: 1px solid rgba(16, 20, 22, .1);
}

.dnb-purchase-info__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 20, 22, 0.62) !important;
}

.dnb-purchase-info__grade {
  margin: 0 !important;
  color: var(--dnb-ink) !important;
  font-size: 1.15rem !important;
  font-weight: 800;
}

.dnb-purchase-info p {
  margin: 0;
  color: rgba(16, 20, 22, 0.78);
  font-size: 0.91rem;
  line-height: 1.45;
}

.dnb-purchase-info__note { color: var(--dnb-ink) !important; font-weight: 600; }

.dnb-purchase-info a {
  display: inline-flex;
  width: fit-content;
  color: #17685b;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.woocommerce div.product .product_meta,
.woocommerce div.product .woocommerce-product-details__short-description {
  display: none;
}

.dnb-product-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: -0.15rem;
}

.dnb-product-nav__card {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 20, 22, 0.08);
  box-shadow: 0 14px 28px rgba(16, 20, 22, 0.08);
  color: var(--dnb-ink);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dnb-product-nav__card:hover,
.dnb-product-nav__card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(16, 20, 22, 0.11);
  border-color: rgba(108, 195, 178, 0.32);
}

.dnb-product-nav__meta {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 20, 22, 0.58);
}

.dnb-product-nav__title {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.dnb-product-nav__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.dnb-product-nav__price {
  font-size: 0.9rem;
  font-weight: 800;
}

.dnb-product-nav__arrow {
  font-size: 0.92rem;
  color: rgba(16, 20, 22, 0.72);
}

.release-facts__title {
  margin-bottom: .15rem;
}

.release-facts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem 1rem;
}

.release-fact {
  display: grid;
  gap: 0.25rem;
}

.release-fact--wide {
  grid-column: 1 / -1;
}

.release-fact__label {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 20, 22, 0.6);
}

.release-fact__value,
.release-fact__value a {
  color: var(--dnb-ink);
  font-weight: 600;
}

.release-fact__value a {
  text-decoration: underline;
  text-decoration-color: rgba(239, 107, 46, 0.4);
  text-underline-offset: 0.12em;
}

@media (max-width: 560px) {
  .release-facts__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  .dnb-single-product__reference {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 1rem;
  }
}

.dnb-single-description {
  padding: 1.75rem 1.9rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 20, 22, 0.08);
  box-shadow: var(--dnb-shadow);
}

.dnb-single-description__title {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.dnb-single-description__content {
  color: rgba(16, 20, 22, 0.86);
  font-size: 1rem;
  line-height: 1.72;
}

.dnb-single-description__content p {
  margin: 0 0 1rem;
}

.dnb-single-description__content br + br {
  display: block;
  content: "";
  margin-top: 0.65rem;
}

.dnb-single-description__content > *:first-child {
  margin-top: 0;
}

.dnb-single-description__content > *:last-child {
  margin-bottom: 0;
}

.dnb-discovery-shelves {
  display: grid;
  gap: 1.5rem;
}

.dnb-discovery-shelf {
  padding: 1.8rem 1.9rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 20, 22, 0.08);
  box-shadow: var(--dnb-shadow);
}

.dnb-discovery-shelf__header {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.dnb-discovery-shelf__intro {
  margin: 0;
  max-width: 58ch;
  color: rgba(16, 20, 22, 0.7);
  font-size: 0.96rem;
  line-height: 1.55;
}

.dnb-discovery-shelf__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.dnb-discovery-shelf__link {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(108, 195, 178, 0.16);
  color: #17685b;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.dnb-discovery-shelf__link:hover,
.dnb-discovery-shelf__link:focus-visible {
  background: rgba(108, 195, 178, 0.24);
}

.dnb-discovery-shelf__title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
}

.dnb-discovery-shelf__products {
  position: relative;
}

.dnb-discovery-shelf__products::before {
  content: "";
  display: block;
  width: 84px;
  height: 2px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(108, 195, 178, 0.9), rgba(239, 107, 46, 0.35));
}

.dnb-discovery-shelf__empty {
  margin: 0;
  color: rgba(16, 20, 22, 0.72);
}

.dnb-discovery-shelf__products ul.products {
  margin-top: 0 !important;
}

.dnb-single-product__related .related > h2,
.dnb-single-product__related .upsells > h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.dnb-single-product__related {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 1.75rem 1.9rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 20, 22, 0.08);
  box-shadow: var(--dnb-shadow);
}

.dnb-related-intro {
  display: grid;
  gap: 0.45rem;
}

.dnb-related-intro__title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
}

.dnb-related-intro__text {
  margin: 0;
  max-width: 60ch;
  color: rgba(16, 20, 22, 0.7);
  font-size: 0.96rem;
  line-height: 1.55;
}

.dnb-single-product__related .related,
.dnb-single-product__related .upsells {
  padding-top: 0.15rem;
}

.dnb-single-product__related ul.products {
  margin-top: 0.5rem !important;
}

.dnb-single-product__related .related > h2,
.dnb-single-product__related .upsells > h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.woocommerce-cart .entry-content > .woocommerce,
.woocommerce-checkout .entry-content > .woocommerce,
.woocommerce-account .entry-content > .woocommerce {
  display: grid;
  gap: 1.5rem;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table,
.woocommerce-account table.shop_table,
.woocommerce form.checkout_coupon,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout #customer_details > div,
.woocommerce-checkout #order_review,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 20, 22, 0.08);
  box-shadow: var(--dnb-shadow);
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table,
.woocommerce-account table.shop_table {
  border-collapse: separate;
  border-spacing: 0;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td,
.woocommerce-account table.shop_table th,
.woocommerce-account table.shop_table td {
  border-color: rgba(16, 20, 22, 0.08);
}

.woocommerce-cart .cart-collaterals,
.woocommerce-checkout .woocommerce-checkout-review-order,
.woocommerce-checkout #customer_details {
  display: grid;
  gap: 1.5rem;
}

.woocommerce-checkout #payment {
  border-radius: 20px;
  background: rgba(16, 20, 22, 0.04);
}

.woocommerce-checkout #payment div.payment_box {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.woocommerce-cart .coupon,
.woocommerce form .form-row {
  display: grid;
  gap: 0.6rem;
}

.woocommerce-cart .coupon {
  align-items: end;
}

.woocommerce .quantity .qty,
.woocommerce-cart .coupon .input-text,
.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-account .input-text,
.woocommerce-account select {
  min-height: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(16, 20, 22, 0.12);
  background: #fff;
}

@media (max-width: 980px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header__bar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.65rem 0 0.85rem;
  }

  .site-branding {
    grid-column: 2;
    justify-self: center;
    min-width: 0;
  }

  .site-navigation--desktop {
    display: none;
  }

  .site-header__menu {
    display: block;
  }

  .custom-logo-link img {
    max-width: min(100%, 150px);
    max-height: 42px;
  }

  .primary-menu,
  .site-footer__inner,
  .hero-band__inner,
  .genre-grid,
  .value-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .primary-menu {
    display: grid;
    padding-top: 0.75rem;
    justify-content: start;
  }

  .site-navigation--desktop .primary-menu .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 0.4rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.72);
  }

  .primary-menu .sub-menu::before {
    display: none;
  }

  .site-navigation--panel .primary-menu .sub-menu {
    display: none;
  }

  .header-search,
  .header-search--header {
    min-width: 100%;
  }

  .header-search--header {
    grid-column: 1 / -1;
  }

  .site-header__utilities--compact {
    gap: 0.55rem;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .collection-hero,
  .footer-menu {
    grid-template-columns: 1fr;
  }

  /* Portrait tablets have room for two square product cards. Keeping a
     single wide card leaves an unnecessary empty column beside each sleeve. */
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dnb-single-product__hero {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dnb-single-product__gallery,
  .dnb-single-product__summary {
    flex: none;
  }

  .dnb-single-product__summary {
    position: static;
  }

  .dnb-product-nav {
    grid-template-columns: 1fr;
  }

  .catalogue-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary,
  .dnb-single-description,
  .dnb-discovery-shelf {
    padding: 1.15rem;
    border-radius: 22px;
  }

  .woocommerce div.product .product_title {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }
}

.woocommerce-cart .entry-content > .woocommerce,
.woocommerce-checkout .entry-content > .woocommerce,
.woocommerce-account .entry-content > .woocommerce {
  display: grid;
  gap: 1.5rem;
}

.woocommerce-cart .entry-content > .woocommerce > h1,
.woocommerce-checkout .entry-content > .woocommerce > h1,
.woocommerce-account .entry-content > .woocommerce > h2,
.woocommerce-account .entry-content > .woocommerce > h3 {
  margin: 0;
}

.woocommerce-notices-wrapper {
  display: grid;
  gap: 0.85rem;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin: 0 0 0.5rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(14, 18, 19, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(18, 23, 20, 0.08);
}

.woocommerce-message {
  border-left: 4px solid var(--accent);
}

.woocommerce-error {
  border-left: 4px solid #d64a4a;
}

.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-account .woocommerce,
.woocommerce-checkout .woocommerce-checkout,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(14, 18, 19, 0.08);
  border-radius: calc(var(--radius-lg) + 0.1rem);
  box-shadow: 0 22px 60px rgba(18, 23, 20, 0.08);
}

.woocommerce-cart-form,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-account .woocommerce {
  padding: clamp(1.25rem, 2vw, 2rem);
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout-review-order-table,
.woocommerce-account table.shop_table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: transparent;
  border: 0;
}

.woocommerce-cart table.shop_table thead th,
.woocommerce-checkout-review-order-table thead th,
.woocommerce-account table.shop_table thead th {
  padding: 0 0 1rem;
  border: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.woocommerce-cart table.shop_table tbody td,
.woocommerce-cart table.shop_table tbody th,
.woocommerce-cart table.shop_table tfoot td,
.woocommerce-cart table.shop_table tfoot th,
.woocommerce-checkout-review-order-table tbody td,
.woocommerce-checkout-review-order-table tbody th,
.woocommerce-checkout-review-order-table tfoot td,
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-account table.shop_table tbody td,
.woocommerce-account table.shop_table tbody th {
  padding: 1rem 0;
  border-color: rgba(14, 18, 19, 0.08);
}

.woocommerce-cart .product-remove {
  width: 2.5rem;
}

.woocommerce-cart .product-remove .remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #b53131 !important;
  background: rgba(181, 49, 49, 0.08);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.woocommerce-cart .product-remove .remove:hover,
.woocommerce-cart .product-remove .remove:focus {
  background: rgba(181, 49, 49, 0.16);
  transform: scale(1.04);
}

.woocommerce-cart .product-thumbnail img,
.woocommerce-account .product-thumbnail img {
  width: 64px;
  border-radius: var(--radius-sm);
}

.woocommerce-cart .product-name a,
.woocommerce-account .product-name a,
.woocommerce-checkout-review-order-table .product-name a {
  color: var(--text);
  font-weight: 700;
}

.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal,
.woocommerce-cart .product-quantity,
.woocommerce-checkout-review-order-table .product-total,
.woocommerce-account .woocommerce-Price-amount {
  font-weight: 700;
}

.woocommerce-cart .quantity .qty {
  min-width: 4.5rem;
  min-height: 3rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(14, 18, 19, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.woocommerce-cart .actions {
  padding-top: 1.5rem;
}

.woocommerce-cart .actions > .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.woocommerce-cart .coupon label,
.woocommerce-checkout .checkout_coupon label {
  display: none;
}

.woocommerce-cart .coupon .input-text,
.woocommerce-checkout .checkout_coupon .input-text,
.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout form .form-row select,
.woocommerce-account form .form-row input.input-text,
.woocommerce-account form .form-row textarea,
.woocommerce-account form .form-row select {
  width: 100%;
  min-height: 3.3rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(14, 18, 19, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 1px 2px rgba(14, 18, 19, 0.04);
}

.woocommerce-checkout form .form-row textarea,
.woocommerce-account form .form-row textarea {
  min-height: 7rem;
}

.woocommerce-cart .coupon .button,
.woocommerce-cart .actions .button,
.woocommerce-checkout .checkout_coupon .button,
.woocommerce-checkout #place_order,
.woocommerce-account .button,
.woocommerce-MyAccount-content .button,
.woocommerce-form-login .button,
.woocommerce-form-register .button {
  min-height: 3.2rem;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--surface-strong);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(14, 18, 19, 0.18);
}

.woocommerce-cart .actions .button[name='update_cart'] {
  background: rgba(14, 18, 19, 0.12);
  color: var(--text);
  box-shadow: none;
}

.woocommerce-cart .actions .button:disabled,
.woocommerce-cart .actions .button[disabled] {
  opacity: 0.45;
}

.cart-collaterals {
  padding: clamp(1.25rem, 2vw, 2rem);
}

.cart-collaterals .cart_totals,
.woocommerce-checkout #order_review {
  width: 100%;
}

.cart-collaterals .cart_totals h2,
.woocommerce-checkout #order_review_heading,
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.cart_totals table.shop_table td,
.cart_totals table.shop_table th,
.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-review-order-table th {
  vertical-align: top;
}

.cart_totals .shipping-calculator-button,
.cart_totals .woocommerce-shipping-calculator > p,
.woocommerce-checkout .woocommerce-shipping-methods,
.woocommerce-cart .woocommerce-shipping-destination {
  color: var(--muted);
}

.cart_totals .wc-proceed-to-checkout {
  margin-bottom: 0;
}

.cart_totals .wc-proceed-to-checkout .checkout-button {
  margin-bottom: 0;
  min-height: 3.4rem;
  border-radius: 999px;
  background: var(--surface-strong);
  box-shadow: 0 16px 34px rgba(14, 18, 19, 0.18);
}

.woocommerce-checkout .woocommerce-checkout {
  display: grid;
  gap: 1.5rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.woocommerce-checkout .checkout_coupon {
  margin: 0;
  padding: 1.2rem;
  border-radius: calc(var(--radius-lg) + 0.1rem);
  border: 1px solid rgba(14, 18, 19, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(18, 23, 20, 0.08);
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  margin-bottom: 0;
}

.woocommerce-checkout .col2-set {
  display: grid;
  gap: 1.5rem;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.woocommerce-checkout .form-row {
  margin-bottom: 1rem;
}

.woocommerce-checkout #ship-to-different-address {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
}

.woocommerce-checkout #ship-to-different-address label {
  margin: 0;
}

.woocommerce-checkout #order_review_heading {
  padding: 1.35rem 1.5rem 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 0;
}

.woocommerce-checkout #order_review {
  margin: 0;
}

.woocommerce-checkout-review-order-table {
  margin-bottom: 1.25rem;
}

.woocommerce-checkout-payment {
  padding-top: 1rem;
  border-top: 1px solid rgba(14, 18, 19, 0.08);
}

.woocommerce-checkout #payment ul.payment_methods {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods > li {
  margin: 0 0 0.8rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(14, 18, 19, 0.04);
}

.woocommerce-checkout #payment div.payment_box {
  margin-top: 0.8rem;
  border-radius: 0.85rem;
  background: #fff;
  color: var(--text);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #fff;
}

.woocommerce-checkout #place_order {
  width: 100%;
  min-height: 3.5rem;
}

.woocommerce-account .woocommerce {
  display: grid;
  gap: 1.5rem;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  color: var(--text);
  font-weight: 700;
  background: rgba(14, 18, 19, 0.04);
}

.woocommerce-MyAccount-navigation .is-active a {
  background: var(--surface-strong);
  color: #fff;
}

.woocommerce-MyAccount-content,
.woocommerce-account .addresses .title,
.woocommerce-account .woocommerce-Address,
.woocommerce-account .woocommerce-order,
.woocommerce-account .woocommerce-orders-table,
.woocommerce-account .woocommerce-pagination {
  background: rgba(255, 255, 255, 0.94);
  border-radius: calc(var(--radius-lg) + 0.1rem);
}

.woocommerce-MyAccount-content {
  padding: clamp(1.25rem, 2vw, 2rem);
  border: 1px solid rgba(14, 18, 19, 0.08);
  box-shadow: 0 22px 60px rgba(18, 23, 20, 0.08);
}

/* YITH wishlist endpoint: use the full account panel rather than a narrow centred table. */
.woocommerce-MyAccount-content #yith-wcwl-form,
.woocommerce-MyAccount-content .wishlist_table,
.woocommerce-MyAccount-content .wishlist_manage_table {
  width: 100% !important;
  max-width: none !important;
}

.woocommerce-MyAccount-content #yith-wcwl-form .wishlist-title,
.woocommerce-MyAccount-content #yith-wcwl-form .wishlist-title h2,
.woocommerce-MyAccount-content #yith-wcwl-form .wishlist-title h3 {
  text-align: left;
}

.woocommerce-MyAccount-content #yith-wcwl-form .wishlist-title {
  margin: 0 0 1.25rem;
}

.woocommerce-MyAccount-content #yith-wcwl-form .wishlist_manage_table {
  margin: 0;
  table-layout: auto;
}

.woocommerce-MyAccount-content #yith-wcwl-form .wishlist_manage_table th,
.woocommerce-MyAccount-content #yith-wcwl-form .wishlist_manage_table td {
  padding: 1rem;
  text-align: left;
  vertical-align: middle;
}

.woocommerce-MyAccount-content #yith-wcwl-form .wishlist_manage_table .wishlist-name {
  width: 52%;
}

.woocommerce-account .addresses .title,
.woocommerce-account .woocommerce-Address {
  padding: 1.2rem;
}

.woocommerce-account .addresses .title h3,
.woocommerce-account .woocommerce-column__title {
  margin: 0 0 0.75rem;
}

.woocommerce-account .woocommerce-Address address {
  margin-bottom: 0;
  color: var(--muted);
}

.woocommerce-account .woocommerce-order-details,
.woocommerce-account .woocommerce-customer-details {
  margin-top: 1.5rem;
}

.woocommerce-account .woocommerce-Button,
.woocommerce-account .woocommerce-button {
  border-radius: 999px;
}

.woocommerce-MyAccount-content p:first-child {
  margin-top: 0;
}

.woocommerce-MyAccount-content p:last-child {
  margin-bottom: 0;
}

.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  padding: 1.5rem;
  border-radius: calc(var(--radius-lg) + 0.1rem);
  border: 1px solid rgba(14, 18, 19, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(18, 23, 20, 0.08);
}

.woocommerce-account .woocommerce-form-login h2,
.woocommerce-account .woocommerce-form-register h2 {
  margin-top: 0;
}

.woocommerce-cart .wc-empty-cart-message,
.woocommerce-cart .return-to-shop,
.woocommerce-account .woocommerce-info {
  background: rgba(255, 255, 255, 0.94);
  border-radius: calc(var(--radius-lg) + 0.1rem);
}

@media (min-width: 981px) {
  .woocommerce-checkout .col2-set {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
  }

  .woocommerce-account .woocommerce {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    align-items: start;
  }

  .cart-collaterals {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  .woocommerce-cart-form,
  .cart-collaterals,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review,
  .woocommerce-account .woocommerce,
  .woocommerce-MyAccount-content {
    padding: 1rem;
  }

  .woocommerce-cart .entry-content > .woocommerce,
  .woocommerce-checkout .entry-content > .woocommerce,
  .woocommerce-account .entry-content > .woocommerce,
  .woocommerce-cart .cart-collaterals,
  .woocommerce-checkout .woocommerce-checkout,
  .woocommerce-checkout #customer_details,
  .woocommerce-account .woocommerce {
    gap: 1rem;
  }

  .woocommerce-cart .actions {
    padding-top: 1rem;
  }

  .woocommerce-checkout .form-row {
    margin-bottom: 0.8rem;
  }

  .woocommerce-cart .actions > .coupon {
    flex-direction: column;
    align-items: stretch;
  }

  .woocommerce-cart .actions > .coupon .button,
  .woocommerce-cart .actions .button[name='update_cart'],
  .woocommerce-checkout .checkout_coupon .button {
    width: 100%;
  }

  .woocommerce-cart table.shop_table thead {
    display: none;
  }

  .woocommerce-cart table.shop_table tr,
  .woocommerce-account table.shop_table tr {
    display: grid;
    gap: 0.45rem;
    padding: 1rem 0;
  }

  .woocommerce-cart table.shop_table td,
  .woocommerce-account table.shop_table td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    text-align: right !important;
  }

  .woocommerce-cart table.shop_table td::before,
  .woocommerce-account table.shop_table td::before {
    content: attr(data-title);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .woocommerce-cart table.shop_table td.product-remove::before,
  .woocommerce-cart table.shop_table td.product-thumbnail::before,
  .woocommerce-account table.shop_table td.product-thumbnail::before {
    display: none;
  }

  .woocommerce-cart table.shop_table td.product-name,
  .woocommerce-account table.shop_table td.product-name {
    display: block;
    text-align: left !important;
  }

  .woocommerce-cart .product-thumbnail,
  .woocommerce-account .product-thumbnail {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .woocommerce-cart-form,
  .cart-collaterals,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review,
  .woocommerce-account .woocommerce,
  .woocommerce-MyAccount-content,
  .woocommerce-account .woocommerce-form-login,
  .woocommerce-account .woocommerce-form-register {
    padding: 0.85rem;
    border-radius: 18px;
  }

  .woocommerce-cart table.shop_table tr,
  .woocommerce-account table.shop_table tr {
    gap: 0.35rem;
    padding: 0.8rem 0;
  }

  .woocommerce-cart table.shop_table tbody td,
  .woocommerce-cart table.shop_table tbody th,
  .woocommerce-cart table.shop_table tfoot td,
  .woocommerce-cart table.shop_table tfoot th,
  .woocommerce-checkout-review-order-table tbody td,
  .woocommerce-checkout-review-order-table tbody th,
  .woocommerce-checkout-review-order-table tfoot td,
  .woocommerce-checkout-review-order-table tfoot th,
  .woocommerce-account table.shop_table tbody td,
  .woocommerce-account table.shop_table tbody th {
    padding: 0.7rem 0;
  }

  .woocommerce-cart .product-thumbnail img,
  .woocommerce-account .product-thumbnail img {
    width: 52px;
  }

  .woocommerce-cart .product-remove {
    width: auto;
  }

  .woocommerce-cart .actions > .coupon {
    gap: 0.6rem;
  }

  .woocommerce-checkout #order_review_heading {
    padding: 1rem 1rem 0;
  }

  .woocommerce-checkout #payment ul.payment_methods > li {
    margin-bottom: 0.6rem;
    padding: 0.8rem;
  }

  .woocommerce-MyAccount-navigation a {
    padding: 0.8rem 0.9rem;
  }
}

/* Commerce needs a little more room than the site header before it becomes a
   true two-column layout. This prevents the tablet landscape dead space. */
@media (min-width: 981px) and (max-width: 1200px) {
  .woocommerce-checkout .col2-set,
  .woocommerce-account .woocommerce {
    grid-template-columns: minmax(0, 1fr);
  }

  .woocommerce-checkout .col2-set,
  .woocommerce-account .woocommerce,
  .woocommerce-checkout .woocommerce-checkout,
  .woocommerce-cart .cart-collaterals {
    gap: 1.25rem;
  }

  .woocommerce-cart .cart-collaterals .cart_totals {
    width: min(100%, 46rem);
    margin-inline: auto;
  }
}

@media (max-width: 1200px) {
  .woocommerce-cart .cart-collaterals {
    padding: clamp(1rem, 3vw, 1.5rem);
  }

  .woocommerce-cart .cart-collaterals .cart_totals {
    width: min(100%, 46rem);
    margin-inline: auto;
  }

  .woocommerce-checkout #order_review_heading {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .woocommerce-checkout #payment ul.payment_methods > li {
    min-height: 0 !important;
  }
}

@media (max-width: 980px) {
  .woocommerce-cart .cart_totals table.shop_table tr {
    display: grid;
    grid-template-columns: minmax(7.5rem, 0.55fr) minmax(0, 1.45fr);
    gap: 0.8rem;
    padding: 0.85rem 0;
  }

  .woocommerce-cart .cart_totals table.shop_table th,
  .woocommerce-cart .cart_totals table.shop_table td {
    display: block;
    width: auto;
    padding: 0;
    text-align: left !important;
  }

  .woocommerce-cart .cart_totals table.shop_table td::before {
    display: none;
  }

  .woocommerce-cart table.shop_table td.product-name::before {
    display: none;
  }

  .woocommerce-cart table.shop_table td.product-name {
    padding-top: 0.15rem;
  }

  .woocommerce-cart-form table.shop_table tbody tr.woocommerce-cart-form__cart-item {
    grid-template-columns: 3rem minmax(0, 1fr);
    grid-template-areas:
      "remove thumbnail"
      "name name"
      "price price"
      "quantity quantity"
      "subtotal subtotal";
    gap: 0;
  }

  .woocommerce-cart-form table.shop_table td.product-remove { grid-area: remove; }
  .woocommerce-cart-form table.shop_table td.product-thumbnail { grid-area: thumbnail; }
  .woocommerce-cart-form table.shop_table td.product-name { grid-area: name; }
  .woocommerce-cart-form table.shop_table td.product-price { grid-area: price; }
  .woocommerce-cart-form table.shop_table td.product-quantity { grid-area: quantity; }
  .woocommerce-cart-form table.shop_table td.product-subtotal { grid-area: subtotal; }

  .woocommerce-cart-form table.shop_table td.product-remove,
  .woocommerce-cart-form table.shop_table td.product-thumbnail {
    align-self: center;
    border-bottom: 0;
  }

  .woocommerce-cart-form .actions {
    display: grid;
    gap: 0.75rem;
  }

  .woocommerce-cart-form .actions .coupon {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    width: 100%;
  }

  .woocommerce-cart-form .actions .coupon .input-text {
    width: 100% !important;
    margin: 0 !important;
  }

  .woocommerce-cart-form .actions .coupon .button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 8.5rem;
    margin: 0 !important;
    padding-inline: 1rem;
    background: var(--surface-strong) !important;
    color: #fff !important;
  }

  .woocommerce-cart-form .actions .button[name='update_cart'] {
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  .woocommerce-cart-form .actions .coupon {
    grid-template-columns: 1fr;
  }

  .woocommerce-cart-form .actions .coupon .button {
    width: 100% !important;
  }
}

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

  .catalogue-sidebar-desktop {
    display: none;
  }

  .catalogue-filters-shell {
    display: block;
  }

  .catalogue-sidebar {
    position: static;
    display: none;
  }

  .catalogue-filter-toggle {
    display: inline-flex;
    margin-bottom: 0.85rem;
  }

  .catalogue-filters-shell[open] .catalogue-sidebar {
    display: grid;
  }

  .catalogue-filters-shell[open] .catalogue-filter-toggle {
    margin-bottom: 1rem;
  }
}

@media (min-width: 981px) {
  .site-header__menu,
  .site-header__panel {
    display: none !important;
  }

  .site-branding {
    grid-column: 2;
  }

  .site-header__utilities--compact {
    grid-column: 3;
  }

  .header-search--header {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1101px) {
  .catalogue-sidebar-desktop {
    display: block;
  }

  .catalogue-filters-shell {
    display: none !important;
  }

  .catalogue-filter-toggle {
    display: none !important;
  }

  .catalogue-sidebar {
    display: grid !important;
  }
}

@media (max-width: 640px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .site-header__bar {
    gap: 0.6rem;
  }

  .menu-toggle {
    min-height: 2.55rem;
    padding: 0 0.9rem;
  }

  .custom-logo-link img {
    max-width: min(100%, 132px);
    max-height: 38px;
  }

  .site-header__utilities--compact .utility-link--icon,
  .site-header__utilities--compact .utility-link--cart {
    width: 2.35rem;
    min-width: 2.35rem;
    min-height: 2.35rem;
  }

  .site-header__utilities--compact .cart-count {
    position: absolute;
    top: -0.2rem;
    right: -0.2rem;
    margin-left: 0;
    min-width: 1.2rem;
    height: 1.2rem;
    padding: 0 0.25rem;
    font-size: 0.68rem;
  }
}

@media (min-width: 981px) and (max-width: 1200px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Cart and checkout consolidation (0.9.22).
   Earlier commerce rules styled both parent and child checkout nodes as cards.
   These final rules deliberately give each checkout area one surface only. */
.woocommerce-checkout #customer_details > div,
.woocommerce-checkout #order_review_heading {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  gap: 1.1rem;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout .woocommerce-checkout-review-order,
.woocommerce-cart .cart-collaterals {
  gap: 1rem;
}

.woocommerce-checkout .form-row {
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.woocommerce-checkout .form-row label {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-checkout .checkout_coupon {
  box-shadow: none;
}

.woocommerce-checkout .checkout_coupon {
  padding: 1rem;
}

.woocommerce-checkout .checkout_coupon .form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.65rem;
  margin: 0;
}

.woocommerce-checkout .checkout_coupon .form-row-first {
  flex: 1 1 14rem;
}

.woocommerce-checkout .checkout_coupon .form-row-last {
  flex: 0 0 auto;
}

.woocommerce-checkout #payment {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods {
  display: grid;
  gap: 0.65rem;
}

.woocommerce-checkout #payment ul.payment_methods > li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(14, 18, 19, 0.1);
  background: #fff;
}

.woocommerce-checkout #payment ul.payment_methods > li:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(211, 224, 67, 0.23);
}

.woocommerce-checkout #payment ul.payment_methods label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  font-weight: 700;
}

.woocommerce-checkout #payment div.payment_box {
  grid-column: 1 / -1;
  margin: 0.2rem 0 0;
  padding: 0.8rem;
  border: 1px solid rgba(14, 18, 19, 0.08);
  box-shadow: none;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review {
  max-width: none;
}

@media (min-width: 681px) {
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.9rem;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row {
    float: none;
    width: auto;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1201px) {
  .woocommerce-checkout .woocommerce-checkout {
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
    column-gap: 1.5rem;
    align-items: start;
  }

  .woocommerce-checkout #customer_details {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: 2;
  }

  .woocommerce-checkout #order_review_heading {
    margin: 0;
  }

  .woocommerce-checkout #order_review {
    position: sticky;
    top: 6.5rem;
  }
}

@media (max-width: 640px) {
  .woocommerce-checkout .checkout_coupon .form-row,
  .woocommerce-checkout .checkout_coupon .form-row-first,
  .woocommerce-checkout .checkout_coupon .form-row-last {
    display: grid;
    flex-basis: 100%;
    width: 100%;
  }

  .woocommerce-checkout .checkout_coupon .button {
    width: 100%;
  }

  .woocommerce-cart-form table.shop_table tbody tr.woocommerce-cart-form__cart-item {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    grid-template-areas:
      "remove thumbnail"
      "name name"
      "quantity subtotal";
    gap: 0.35rem 0.75rem;
  }

  .woocommerce-cart-form table.shop_table td.product-price {
    display: none;
  }

  .woocommerce-cart-form table.shop_table td.product-quantity,
  .woocommerce-cart-form table.shop_table td.product-subtotal {
    align-items: center;
  }
}

/* Desktop cart and checkout alignment (0.9.23). */
@media (min-width: 1201px) {
  .woocommerce-checkout .woocommerce-checkout {
    grid-template-columns: minmax(0, 1fr) minmax(25rem, 40rem);
    grid-template-rows: auto auto;
    column-gap: clamp(1.5rem, 3vw, 3rem);
    row-gap: 0.7rem;
  }

  .woocommerce-checkout #customer_details {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-width: 0;
  }

  .woocommerce-checkout #order_review_heading {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0;
    padding: 0;
  }

  .woocommerce-checkout #order_review {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin: 0;
  }

  .woocommerce-cart .cart-collaterals {
    width: min(100%, 44rem);
    margin-inline: auto;
  }

  .woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .woocommerce-cart-form .actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .woocommerce-cart-form .actions > .coupon {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    gap: 0.65rem;
  }

  .woocommerce-cart-form .actions > .coupon .input-text {
    width: min(100%, 18rem) !important;
    margin: 0 !important;
  }

  .woocommerce-cart-form .actions > .coupon .button,
  .woocommerce-cart-form .actions .button[name='update_cart'] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    margin: 0 !important;
    padding-inline: 1.25rem;
    background: var(--surface-strong) !important;
    color: #fff !important;
    white-space: nowrap;
  }

  .woocommerce-cart .add_gift_card_form {
    width: min(100%, 44rem);
    margin: 1.5rem auto 0;
  }

  .woocommerce-cart .add_gift_card_form #wc_gc_cart_redeem_form {
    display: flex;
    align-items: end;
    gap: 0.65rem;
  }

  .woocommerce-cart .add_gift_card_form #wc_gc_cart_redeem_form input[type='text'] {
    min-height: 3.2rem;
    margin: 0;
    border-radius: 0.9rem;
  }

  .woocommerce-cart .add_gift_card_form #wc_gc_cart_redeem_form button {
    min-height: 3.2rem;
    margin: 0;
    padding-inline: 1.25rem;
    border-radius: 999px;
    background: var(--surface-strong);
    color: #fff;
  }

  .woocommerce-cart-form .actions {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
  }

  .woocommerce-cart-form .actions > .coupon {
    display: flex !important;
    flex: 0 1 auto;
    flex-wrap: nowrap;
    align-items: center;
    width: auto;
  }

  .woocommerce-cart-form .actions > .coupon .input-text {
    flex: 0 1 18rem;
    width: 18rem !important;
  }

  .woocommerce-cart-form .actions > .coupon .button {
    flex: 0 0 auto;
    width: auto !important;
  }

  .woocommerce-cart-form .actions .button[name='update_cart'] {
    flex: 0 0 auto;
    margin-left: auto !important;
  }

  .woocommerce-cart .cart-collaterals,
  .woocommerce-cart .add_gift_card_form {
    width: 100%;
    max-width: none;
  }

  .woocommerce-cart-form table.shop_table thead tr,
  .woocommerce-cart-form table.shop_table tbody tr.woocommerce-cart-form__cart-item {
    display: grid;
    grid-template-columns: 2.75rem 4.5rem minmax(18rem, 1fr) 6.5rem 7rem 7rem;
    align-items: center;
    column-gap: 0.75rem;
  }

  .woocommerce-cart-form table.shop_table thead th,
  .woocommerce-cart-form table.shop_table tbody td {
    min-width: 0;
  }

  .woocommerce-cart-form table.shop_table .product-remove { grid-column: 1; }
  .woocommerce-cart-form table.shop_table .product-thumbnail { grid-column: 2; }
  .woocommerce-cart-form table.shop_table .product-name { grid-column: 3; }
  .woocommerce-cart-form table.shop_table .product-price { grid-column: 4; }
  .woocommerce-cart-form table.shop_table .product-quantity { grid-column: 5; }
  .woocommerce-cart-form table.shop_table .product-subtotal { grid-column: 6; }

  .woocommerce-cart-form table.shop_table td.product-name {
    display: block;
    padding-left: 0;
    text-align: left !important;
  }

  .woocommerce-cart-form table.shop_table td.product-thumbnail {
    justify-content: flex-start;
  }

  .woocommerce-cart .ppc-button-wrapper,
  .woocommerce-cart #ppc-button-ppcp-gateway,
  .woocommerce-cart #ppc-button-ppcp-gateway > div,
  .woocommerce-cart .ppcp-button-apm {
    width: 100% !important;
    max-width: none !important;
  }

  .woocommerce-cart #ppc-button-ppcp-gateway div[class^='item-'] {
    width: 100% !important;
    max-width: none !important;
    margin-top: 0.75rem;
  }

  .woocommerce-cart #ppc-button-ppcp-gateway div[class^='item-']:first-child {
    margin-top: 0;
  }

  .woocommerce-cart-form table.shop_table td.actions {
    padding: 0.75rem 0 0;
  }

  .woocommerce-cart-form .actions {
    min-height: 3.2rem;
    padding-top: 0;
  }
}

/* WooCommerce places notice icons absolutely, so reserve an icon column. */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  position: relative;
  padding-left: 3.3rem;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  left: 1.1rem;
  top: 1rem;
}

/* Desktop checkout: one clear billing column beside the order summary. */
@media (min-width: 1201px) {
  .woocommerce-checkout #customer_details {
    grid-template-columns: minmax(0, 1fr);
  }

  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout .woocommerce-additional-fields,
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    width: 100%;
  }

  .woocommerce-checkout .woocommerce-billing-fields > h3,
  .woocommerce-checkout .woocommerce-additional-fields > h3,
  .woocommerce-checkout #order_review_heading {
    text-align: left;
  }

  .woocommerce-checkout #order_review_heading {
    align-self: start;
  }
}

/* Desktop checkout reference layout (0.9.32).
   It follows the live store's practical two-column checkout, while keeping the
   bespoke theme's typography and colours. */
@media (min-width: 1201px) {
  .woocommerce-checkout .entry-content > .woocommerce {
    gap: 1.25rem;
  }

  .woocommerce-checkout .woocommerce-checkout {
    grid-template-columns: minmax(0, 1.18fr) minmax(27rem, 0.82fr);
    grid-template-rows: auto auto;
    column-gap: clamp(2rem, 3.5vw, 4rem);
    row-gap: 0.7rem;
    max-width: 66rem;
    margin-inline: auto;
  }

  .woocommerce-checkout #customer_details {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: 2;
  }

  .woocommerce-checkout #order_review_heading {
    grid-row: 1;
    margin: 0;
    padding: 1.35rem 1.45rem 0;
    border: 2px solid var(--accent);
    border-bottom: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    font-size: 1.15rem;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .woocommerce-checkout #order_review {
    grid-row: 2;
    margin: -0.7rem 0 0;
    padding: 0 1.45rem 1.45rem;
    border: 2px solid var(--accent);
    border-top: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }

  .woocommerce-checkout .woocommerce-billing-fields > h3,
  .woocommerce-checkout .woocommerce-additional-fields > h3 {
    margin: 0 0 0.8rem;
    font-size: 1.15rem;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 0.15rem;
  }

  .woocommerce-checkout .form-row {
    margin-bottom: 0.65rem;
  }

  .woocommerce-checkout .form-row label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .woocommerce-checkout form .form-row input.input-text,
  .woocommerce-checkout form .form-row select,
  .woocommerce-checkout form .form-row textarea {
    min-height: 3.1rem;
    padding: 0.8rem 0.9rem;
    border-radius: 0;
    border-color: rgba(14, 18, 19, 0.14);
    box-shadow: inset 0 1px 2px rgba(14, 18, 19, 0.025);
  }

  .woocommerce-checkout form .form-row textarea {
    min-height: 8.8rem;
    resize: vertical;
  }

  .woocommerce-checkout #ship-to-different-address {
    margin: 0.8rem 0;
  }

  .woocommerce-checkout #ship-to-different-address label {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .woocommerce-checkout-review-order-table {
    margin: 0 0 1rem;
  }

  .woocommerce-checkout-review-order-table thead th {
    padding-bottom: 0.65rem;
    color: var(--text);
    font-size: 0.78rem;
  }

  .woocommerce-checkout-review-order-table tbody td,
  .woocommerce-checkout-review-order-table tbody th,
  .woocommerce-checkout-review-order-table tfoot td,
  .woocommerce-checkout-review-order-table tfoot th {
    padding: 0.72rem 0;
  }

  .woocommerce-checkout #order_review .woocommerce-shipping-methods {
    display: grid;
    gap: 0.4rem;
    margin: 0.55rem 0 0;
    padding: 0;
  }

  .woocommerce-checkout #order_review .woocommerce-shipping-methods li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 0;
    padding: 0.7rem;
    border: 1px solid rgba(14, 18, 19, 0.1);
    background: #fff;
  }

  .woocommerce-checkout #order_review .woocommerce-shipping-methods label {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals {
    display: block;
    width: 100%;
  }

  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals th,
  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals th {
    padding-bottom: 0.35rem;
  }

  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals td {
    padding-top: 0;
  }

  .woocommerce-checkout .woocommerce-checkout-payment {
    padding-top: 0.9rem;
  }

  .woocommerce-checkout #payment ul.payment_methods > li {
    display: grid;
    grid-template-columns: 1.25rem minmax(0, 1fr);
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.8rem 0;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
  }

  .woocommerce-checkout #payment ul.payment_methods > li > input.input-radio {
    position: static;
    float: none;
    grid-column: 1;
    grid-row: 1;
    width: auto;
    margin: 0.27rem 0 0;
  }

  .woocommerce-checkout #payment ul.payment_methods > li > label {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    width: auto;
    min-width: 0;
  }

  .woocommerce-checkout #payment ul.payment_methods > li:has(input:checked) {
    border-color: rgba(14, 18, 19, 0.14);
    box-shadow: none;
  }

  .woocommerce-checkout #payment div.payment_box {
    grid-column: 2;
    grid-row: 2;
    width: auto;
    min-width: 0;
    padding: 0.75rem 0;
    border: 0;
    border-radius: 0;
  }

  .woocommerce-checkout #place_order {
    min-height: 3.45rem;
    border-radius: 0;
    background: var(--accent);
    color: var(--text);
    box-shadow: none;
    text-transform: uppercase;
  }
}

/* Phone commerce layout (0.9.35).  These rules deliberately sit last so they
   resolve the earlier, overlapping responsive checkout treatments. */
@media (max-width: 680px) {
  .woocommerce-cart .entry-content > .woocommerce,
  .woocommerce-checkout .entry-content > .woocommerce {
    gap: 1rem;
  }

  .woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review {
    padding: 1rem;
    border-radius: 1rem;
  }

  .woocommerce-checkout .woocommerce-checkout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    width: 100%;
    box-sizing: border-box;
  }

  .woocommerce-checkout #order_review_heading {
    margin: 0;
    padding: 0;
    font-size: 1.35rem;
    text-align: left;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    display: block;
  }

  .woocommerce-checkout .form-row {
    margin-bottom: 0.75rem;
  }

  .woocommerce-checkout form .form-row input.input-text,
  .woocommerce-checkout form .form-row select,
  .woocommerce-checkout form .form-row textarea {
    min-height: 3.2rem;
    border-radius: 0.7rem;
  }

  .woocommerce-checkout form .form-row textarea {
    min-height: 7.5rem;
  }

  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals {
    display: block;
  }

  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals th,
  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals th {
    padding-bottom: 0.35rem;
  }

  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals td {
    padding-top: 0;
  }

  .woocommerce-checkout #order_review .woocommerce-shipping-methods {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
  }

  .woocommerce-checkout #order_review .woocommerce-shipping-methods li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 0;
    padding: 0.75rem;
    border: 1px solid rgba(14, 18, 19, 0.1);
  }

  .woocommerce-checkout #order_review .woocommerce-shipping-methods label {
    flex: 1;
    line-height: 1.35;
  }

  .woocommerce-checkout #payment ul.payment_methods > li {
    display: grid;
    grid-template-columns: 1.25rem minmax(0, 1fr);
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.85rem 0;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
  }

  .woocommerce-checkout #payment ul.payment_methods > li > input.input-radio {
    position: static;
    float: none;
    grid-column: 1;
    grid-row: 1;
    margin: 0.27rem 0 0;
  }

  .woocommerce-checkout #payment ul.payment_methods > li > label {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-width: 0;
  }

  .woocommerce-checkout #payment div.payment_box {
    grid-column: 2;
    grid-row: 2;
    width: auto;
    margin: 0;
    padding: 0.6rem 0 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .woocommerce-checkout #place_order {
    min-height: 3.35rem;
  }

  .woocommerce-cart .cart-collaterals,
  .woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
    max-width: none;
  }

  .woocommerce-cart .add_gift_card_form,
  .woocommerce-cart .add_gift_card_form #wc_gc_cart_redeem_form {
    width: 100%;
  }

  .woocommerce-cart .add_gift_card_form #wc_gc_cart_redeem_form {
    display: grid;
    gap: 0.65rem;
  }

  .woocommerce-cart .add_gift_card_form #wc_gc_cart_redeem_form button,
  .woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    width: 100%;
  }

  .woocommerce-order .woocommerce-order-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    padding: 1rem;
  }

  .woocommerce-order .woocommerce-order-overview li {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
  }
}

/* Square's gateway markup contains its payment name, card-brand marks and
   hosted fields. Keep it out of the general payment-label flex treatment so
   the title does not collapse beside the logos and the secure fields remain
   full width. */
.woocommerce-checkout #payment li.payment_method_square_credit_card > label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
  line-height: 1.45;
  font-size: 0;
}

.woocommerce-checkout #payment li.payment_method_square_credit_card > label::before {
  content: "Credit / Debit Card - By Square";
  flex: 0 0 100%;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
}

.woocommerce-checkout #payment li.payment_method_square_credit_card > label img {
  display: inline-block;
  width: auto;
  max-width: 3.4rem;
  max-height: 2rem;
  margin: 0;
  vertical-align: middle;
}

.woocommerce-checkout #payment .payment_method_square_credit_card .payment_box,
.woocommerce-checkout #payment .payment_method_square_credit_card form {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.woocommerce-checkout #payment .payment_method_square_credit_card div.form-row {
  display: block;
  width: 100%;
  margin: 0 0 0.75rem;
  padding: 3px;
}

/* Square adds its optional saved-card control as a normal WooCommerce form
   row. It needs to remain a compact, visible checkbox row rather than inherit
   the full-width hosted-field layout above. */
.woocommerce-checkout #payment .payment_method_square_credit_card div.form-row:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.5rem 0 1.15rem;
  padding: 0.25rem 0;
}

.woocommerce-checkout #payment .payment_method_square_credit_card div.form-row:has(input[type="checkbox"]) input[type="checkbox"] {
  position: static;
  float: none;
  flex: 0 0 1.15rem;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
}

.woocommerce-checkout #payment .payment_method_square_credit_card div.form-row:has(input[type="checkbox"]) label {
  display: inline-flex;
  align-items: center;
  width: auto;
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.4;
}

.woocommerce-checkout #payment .payment_method_square_credit_card .wc-square-credit-card-hosted-field {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-height: 3.25rem;
}

/* Keep every non-Square payment option as one predictable control row: the
   radio button on the left, followed immediately by its gateway name. */
.woocommerce-checkout #payment ul.payment_methods > li:not(.payment_method_square_credit_card) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.7rem;
  row-gap: 0.7rem;
}

.woocommerce-checkout #payment ul.payment_methods > li:not(.payment_method_square_credit_card) > input.input-radio {
  position: static;
  float: none;
  flex: 0 0 1.25rem;
  width: 1.25rem;
  margin: 0;
}

.woocommerce-checkout #payment ul.payment_methods > li:not(.payment_method_square_credit_card) > label {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 0.65rem;
  width: auto;
  min-width: 0;
  margin: 0;
}

.woocommerce-checkout #payment ul.payment_methods > li:not(.payment_method_square_credit_card) > div.payment_box {
  flex: 1 0 100%;
  width: 100%;
  margin: 0;
}

/* Mobile repair pass (0.9.36). */
@media (max-width: 680px) {
  .woocommerce-cart-form table.shop_table tbody tr.woocommerce-cart-form__cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "remove remove"
      "name name"
      "quantity subtotal";
    gap: 0.75rem 1rem;
    padding: 1rem 0;
  }

  .woocommerce-cart-form table.shop_table td.product-remove {
    display: block;
    grid-area: remove;
    padding: 0;
  }

  .woocommerce-cart-form table.shop_table td.product-thumbnail,
  .woocommerce-cart-form table.shop_table td.product-price {
    display: none;
  }

  .woocommerce-cart-form table.shop_table td.product-name {
    display: block;
    grid-area: name;
    padding: 0;
    font-size: 1rem;
    line-height: 1.4;
  }

  .woocommerce-cart-form table.shop_table td.product-quantity,
  .woocommerce-cart-form table.shop_table td.product-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    min-width: 0;
    padding: 0.7rem 0;
    text-align: left !important;
  }

  .woocommerce-cart-form table.shop_table td.product-quantity { grid-area: quantity; }
  .woocommerce-cart-form table.shop_table td.product-subtotal { grid-area: subtotal; }

  .woocommerce-cart-form table.shop_table td.product-quantity::before,
  .woocommerce-cart-form table.shop_table td.product-subtotal::before {
    flex: 0 1 auto;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .woocommerce-cart-form table.shop_table .quantity .qty {
    min-width: 3.6rem;
    min-height: 2.8rem;
  }

  .woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals,
  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals {
    display: block;
  }

  .woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals th,
  .woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals td,
  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals th,
  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals th,
  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals th {
    padding-bottom: 0.45rem;
  }

  .woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals td,
  .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals td {
    padding-top: 0;
  }

  .woocommerce-cart .woocommerce-shipping-methods {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
  }

  .woocommerce-cart .woocommerce-shipping-methods li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 0;
    padding: 0.75rem;
    border: 1px solid rgba(14, 18, 19, 0.1);
  }

  .woocommerce-cart .woocommerce-shipping-methods label {
    flex: 1;
    line-height: 1.35;
  }

  .woocommerce-checkout #payment ul.payment_methods > li,
  .woocommerce-checkout #payment div.payment_box {
    min-height: 0 !important;
  }

  .woocommerce-checkout #payment ul.payment_methods > li:has(input:checked) {
    padding: 0.85rem 0;
    box-shadow: none;
  }

  .woocommerce-checkout #payment div.payment_box {
    padding: 0.55rem 0 0;
  }
}

@media (max-width: 480px) {
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    display: block;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-first,
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-last {
    width: 100%;
    float: none;
  }
}

/* Narrow cart summary: never make customers read shipping or prices in a
   half-width table cell. */
@media (max-width: 680px) {
  .woocommerce-cart-form table.shop_table tbody tr.woocommerce-cart-form__cart-item {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "remove"
      "name"
      "quantity"
      "subtotal";
  }

  .woocommerce-cart-form table.shop_table td.product-quantity,
  .woocommerce-cart-form table.shop_table td.product-subtotal {
    width: 100%;
  }

  .woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals,
  .woocommerce-cart .cart_totals table.shop_table tr.shipping {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    width: 100%;
  }

  .woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals th,
  .woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals td,
  .woocommerce-cart .cart_totals table.shop_table tr.shipping th,
  .woocommerce-cart .cart_totals table.shop_table tr.shipping td {
    grid-column: 1 !important;
    width: 100% !important;
    min-width: 0;
    padding-inline: 0 !important;
  }

  .woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals td,
  .woocommerce-cart .cart_totals table.shop_table tr.shipping td {
    padding-top: 0 !important;
  }

  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals,
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.shipping {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    width: 100%;
  }

  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals th,
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals td,
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.shipping th,
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.shipping td {
    display: block;
    grid-column: 1 !important;
    width: 100% !important;
    min-width: 0;
    padding-inline: 0 !important;
  }

  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals td,
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.shipping td {
    padding-top: 0 !important;
  }
}

/* WooCommerce's native table algorithm keeps the shipping cell at half width
   on some mobile browsers. Use a grid for the review only at phone widths. */
@media (max-width: 680px) {
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table,
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table thead,
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody,
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot {
    display: block;
    width: 100%;
  }

  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    width: 100%;
  }

  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table th,
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table td {
    display: block;
    min-width: 0;
  }

  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals,
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.shipping {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals th,
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals td,
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.shipping th,
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tr.shipping td {
    grid-column: 1;
  }
}

/* Live product search */
.header-search--header {
  position: relative;
  z-index: 50;
}

.header-search__results {
  position: absolute;
  top: calc(100% + .55rem);
  right: 0;
  left: 0;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 26, .12);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(17, 24, 26, .18);
  text-align: left;
}

.header-search__results.is-visible {
  display: block;
}

.header-search__status {
  margin: 0;
  padding: 1rem 1.125rem;
  color: #5f6468;
  font-size: .92rem;
}

.header-search__result {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  padding: .7rem 1rem;
  border-bottom: 1px solid rgba(17, 24, 26, .08);
  color: inherit;
  text-decoration: none;
}

.header-search__result:hover,
.header-search__result.is-active,
.header-search__result:focus-visible {
  background: #f4f2ec;
  outline: none;
}

.header-search__result img {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: .55rem;
  object-fit: cover;
}

.header-search__result-details {
  display: grid;
  min-width: 0;
  gap: .15rem;
}

.header-search__result-title {
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-search__result-price {
  font-weight: 700;
  white-space: nowrap;
}

.header-search__all-results {
  display: block;
  padding: .85rem 1rem;
  background: #11181a;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.header-search__all-results:hover,
.header-search__all-results:focus-visible {
  background: #f2652a;
  color: #fff;
  outline: none;
}

@media (max-width: 680px) {
  .header-search__results {
    border-radius: .85rem;
  }

  .header-search__result {
    grid-template-columns: 2.75rem minmax(0, 1fr) auto;
    gap: .6rem;
    padding: .65rem .8rem;
  }

  .header-search__result img {
    width: 2.75rem;
    height: 2.75rem;
  }

  .header-search__result-title {
    font-size: .9rem;
    line-height: 1.2;
    white-space: normal;
  }

  .header-search__result-price {
    font-size: .9rem;
  }
}

/* Guest My Account: one predictable layout across WooCommerce versions.
   Keep login and registration in a single readable column on every device. */
body.woocommerce-account:not(.logged-in) .page-panel {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding-inline: 0 !important;
}

body.woocommerce-account:not(.logged-in) .entry-content > .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  box-sizing: border-box !important;
  width: min(100%, 48rem) !important;
  margin: 0 auto !important;
  padding: clamp(1.25rem, 3vw, 2rem) !important;
  border: 1px solid rgba(14, 18, 19, .12) !important;
  border-top: 5px solid #69b241 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: 0 24px 60px rgba(18, 23, 20, .08) !important;
}

body.woocommerce-account:not(.logged-in) #customer_login {
  display: grid !important;
  grid-column: 1 / -1 !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: clamp(2rem, 4vw, 3rem) !important;
  width: 100% !important;
  margin: 0 auto !important;
}

body.woocommerce-account:not(.logged-in) #customer_login > .u-column1,
body.woocommerce-account:not(.logged-in) #customer_login > .u-column2,
body.woocommerce-account:not(.logged-in) #customer_login > .col-1,
body.woocommerce-account:not(.logged-in) #customer_login > .col-2 {
  box-sizing: border-box !important;
  justify-self: center !important;
  width: min(100%, 34rem) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  float: none !important;
}

body.woocommerce-account:not(.logged-in) #customer_login .woocommerce-form-login,
body.woocommerce-account:not(.logged-in) #customer_login .woocommerce-form-register {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.woocommerce-account:not(.logged-in) #customer_login h2 {
  margin: 0 0 1.25rem !important;
  color: #0e1213 !important;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem) !important;
  line-height: 1.15 !important;
}

body.woocommerce-account:not(.logged-in) #customer_login .form-row {
  margin: 0 0 1rem !important;
}

body.woocommerce-account:not(.logged-in) #customer_login label {
  color: #0e1213 !important;
  font-weight: 700 !important;
}

body.woocommerce-account:not(.logged-in) #customer_login .input-text,
body.woocommerce-account:not(.logged-in) #customer_login .button {
  min-height: 3rem !important;
  border-radius: 3px !important;
}

body.woocommerce-account:not(.logged-in) #customer_login .button {
  width: auto !important;
  padding-inline: 1.6rem !important;
  background: #69b241 !important;
  color: #fff !important;
}

@media (max-width: 760px) {
  body.woocommerce-account:not(.logged-in) .entry-content > .woocommerce {
    width: 100% !important;
    padding: 1rem !important;
    border-radius: 18px !important;
    border-top-width: 4px !important;
  }
}

.dnb-live-search-form {
  position: relative;
}

.dnb-live-search-form .header-search__results {
  top: calc(100% + .55rem);
  right: 0;
  left: 0;
}

.header-search__result-image {
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: .55rem;
  background: #f4f2ec;
  overflow: hidden;
}

.header-search__result-sku {
  overflow: hidden;
  color: rgba(16, 20, 22, .62);
  font-size: .82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-search__result-collector-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem .65rem;
  color: rgba(16, 20, 22, .7);
  font-size: .78rem;
  line-height: 1.25;
}

.header-search__result-availability {
  color: #2f6b21;
  font-weight: 700;
}

.header-search__result-availability.is-out-of-stock {
  color: #8b3d2e;
}
