/* ===== Navbar (mobile-first) ===== */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav {
  width: 100%;
  /* Appearance falls back to the Header section's cascade when the merchant
     leaves the Navbar's own colors unset: transparent surface lets the Header
     background show through, and text inherits the Header's --color-text. */
  background: var(--nav-surface, transparent);
  color: var(--nav-text, var(--color-text));
  border-bottom: 1px solid;
  border-color: var(--nav-border, var(--color-border-soft));
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px var(--container-pad);
  min-height: 60px;
  background: inherit;
}

/* Logo */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
}

/* Icon buttons */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  position: relative;
  transition: opacity 200ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__icon:hover {
  opacity: 0.6;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__account-icon {
  display: none;
}

/* Favorites icon: desktop-only (mobile uses the drawer foot link), badge anchor */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__favorites {
  display: none;
  position: relative;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__actions {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__cart {
  position: relative;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__badge {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand, var(--color-primary));
  color: var(--color-on-primary);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  /* Ring in the header's own background separates the badge from the icon */
  box-shadow: 0 0 0 2px var(--nav-bg, var(--color-surface));
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

/* ===== Mobile nav drawer ===== */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(360px, 86vw);
  background: var(--color-bg);
  transform: translateX(-100%);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  padding: var(--space-sm) var(--space-md) var(--space-md);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav--mobile-open .ethm-nav__menu {
  transform: translateX(0);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border-soft);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu-head .ethm-nav__icon {
  width: 32px;
  height: 32px;
  /* Hug the right padding edge so X lines up flush with the drawer edge,
     instead of sitting optically inset from the centered icon box. */
  justify-content: flex-end;
  margin-right: -2px;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu-items {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu-foot {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  border-top: 1px solid var(--color-border-soft);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu-account {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text);
  text-decoration: none;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu-count {
  margin-left: auto;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-container, #eeeeee);
  color: var(--color-text);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* Scrim behind the mobile drawer */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__scrim {
  position: fixed;
  inset: 0;
  background: rgba(26, 28, 28, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms ease, visibility 350ms;
  z-index: calc(var(--z-overlay) - 1);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav--mobile-open .ethm-nav__scrim {
  opacity: 1;
  visibility: visible;
}

/* ===== Desktop ===== */
@media (min-width: 1024px) {
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__bar {
    gap: var(--space-lg);
  }

  .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__hamburger {
    display: none;
  }

  .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__account-icon, .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__favorites {
    display: inline-flex;
  }

  .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__logo {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    flex-shrink: 0;
  }

  .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__logo-img {
    height: 32px;
  }

  .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__logo-text {
    font-size: 28px;
  }

  /* Menu becomes the centered inline nav */
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu {
    position: static;
    transform: none;
    width: auto;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    background: none;
    padding: 0;
    overflow: visible;
  }

  .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu-head, .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu-foot {
    display: none;
  }

  .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu-items {
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
    flex: initial;
  }

  .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__scrim {
    display: none;
  }

  .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__actions {
    gap: var(--space-xs);
  }
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__icon:focus-visible, .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__logo:focus-visible, .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu-account:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__menu, .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__scrim, .cc_pSmp65GtZr_ummO9nJuNC .ethm-nav__icon {
    transition: none;
  }
}

/* ====================================================================
   Cart drawer + cart modules (sub-component CSS — owned here so it ships)
   ==================================================================== */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 28, 0.4);
  animation: cc_pSmp65GtZr_ethm-fade-in 300ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(440px, 100vw);
  background: var(--color-surface);
  box-shadow: var(--shadow-float);
  display: flex;
  flex-direction: column;
  animation: cc_pSmp65GtZr_ethm-slide-in-right 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--space-sm);
  border-bottom: 1px solid var(--color-border-soft);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-body-lg);
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin: 0;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__count {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  padding: 4px;
  transition: opacity 150ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__close:hover {
  opacity: 0.6;
}

/* Empty */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  color: var(--color-text-muted);
  padding: var(--space-lg);
  text-align: center;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__empty-text {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-secondary);
}

/* List */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__list {
  flex: 1;
  overflow-y: auto;
  padding: 4px var(--space-sm);
  -webkit-overflow-scrolling: touch;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-soft);
  transition: opacity 200ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item:last-of-type {
  border-bottom: none;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item.is-pending {
  opacity: 0.5;
  pointer-events: none;
}

/* ----- Bundle group (CartBundleRow): a package shown as one block — a "Paket"
   tag + name + total quantity, with the contained products listed compactly
   (image, variant options, price). Removed as a whole. ----- */
.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-soft);
  transition: opacity 200ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle.is-pending {
  opacity: 0.5;
  pointer-events: none;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__media {
  position: relative;
  display: block;
  width: 52px;
  height: 64px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-surface-alt);
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-primary);
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__name {
  flex: 1;
  min-width: 0;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 160ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC a.cart-bundle__name:hover {
  color: var(--color-primary);
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-on-primary);
  background: var(--color-primary);
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__qty {
  font-size: var(--text-label);
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__price {
  flex-shrink: 0;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__remove {
  display: inline-flex;
  flex-shrink: 0;
  padding: 4px;
  border: 0;
  background: none;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 160ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__remove:hover:not(:disabled) {
  color: var(--color-text);
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__remove:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__items {
  list-style: none;
  margin: 0;
  padding: 0 0 0 64px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 10px;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__thumb {
  display: block;
  width: 40px;
  height: 48px;
  overflow: hidden;
  background: var(--color-surface-alt);
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__item-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__item-name {
  font-size: var(--text-label);
  color: var(--color-text);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 160ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC a.cart-bundle__item-name:hover {
  color: var(--color-primary);
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__item-variant {
  font-size: 10px;
  color: var(--color-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__item-qty {
  font-size: var(--text-label);
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .cart-bundle__item-price {
  font-size: var(--text-label);
  font-weight: 600;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item-media {
  display: block;
  width: 64px;
  height: 80px;
  flex-shrink: 0;
  background: var(--color-surface-alt);
  overflow: hidden;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item-media:hover img {
  transform: scale(1.05);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item-name {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text);
  text-decoration: none;
  transition: color 160ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC a.ethm-cart__item-name:hover {
  color: var(--color-primary);
}

/* Variant values on one compact line (e.g. "Lacivert · M") */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item-variant {
  margin-top: -2px;
  font-family: var(--font-body);
  font-size: var(--text-label);
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Selected personalization options (engraving, gift wrap, date, file…) */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item-opts {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-family: var(--font-body);
  font-size: var(--text-label);
  line-height: 1.35;
  color: var(--color-text-muted);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item-opt-name {
  color: var(--color-text-secondary);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item-price {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__stepper {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  border: 1px solid var(--color-border);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__stepper button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  transition: color 150ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__stepper button:hover:not(:disabled) {
  color: var(--color-text-muted);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__stepper button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__qty {
  min-width: 22px;
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  display: flex;
  padding: 4px;
  transition: color 150ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__remove:hover:not(:disabled) {
  color: var(--color-error);
}

/* Footer */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__foot {
  border-top: 1px solid var(--color-border-soft);
  padding: 12px var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__shipping {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  text-align: center;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__subtotal-value {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__view {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: center;
  transition: color 150ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__view:hover {
  color: var(--color-text);
}

/* Shared button */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  line-height: 1;
  min-height: 48px;
  transition: background 200ms ease, color 200ms ease, opacity 200ms ease, transform 120ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-btn--primary {
  background: var(--color-primary);
  color: var(--color-on-primary);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-btn--primary:hover {
  opacity: 0.85;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-btn--block {
  width: 100%;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__close:focus-visible, .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__remove:focus-visible, .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__stepper button:focus-visible, .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__view:focus-visible, .cc_pSmp65GtZr_ummO9nJuNC .ethm-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__backdrop, .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__panel {
    animation: none;
  }
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item, .cc_pSmp65GtZr_ummO9nJuNC .ethm-btn, .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__close, .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__remove, .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__view, .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__stepper button {
    transition: none;
  }
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-btn:active:not(:disabled) {
    transform: none;
  }
}

/* --- Cart drawer module wrappers (premium, minimal separators) --- */
.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__campaign { margin: 12px var(--space-sm) 0; }
.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__campaign .cbar { border: none; background: none; padding: 0; }
.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__coupon { margin: 0; }
.cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__recommended { margin-top: 4px; }

/* Mobile: full-bleed, compact panel so the cart items themselves get the
   viewport — the footer modules (recommended, coupon, summary) stay tight. */
@media (max-width: 480px) {
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__panel {
    width: 100vw;
  }
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__head, .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__foot {
    padding: 11px 14px;
  }
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__list {
    padding: 2px 14px;
  }
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__campaign {
    margin: 10px 14px 0;
  }
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item {
    padding: 11px 0;
    gap: 11px;
  }
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__item-media {
    width: 58px;
    height: 74px;
  }
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__foot {
    gap: 9px;
  }
  /* Keep tap targets usable even though the layout is tight. */
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__stepper button {
    width: 32px;
    height: 32px;
  }
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-cart__remove {
    padding: 6px;
  }
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar {
  --cbar-fill: #1a1c1c;
  --cbar-track: #eeeeee;
  --cbar-accent: #1a1c1c;
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface);
  padding: 12px var(--space-sm);
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__head-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__icon {
  display: inline-flex;
  color: var(--cbar-accent);
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__title {
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__toggle {
  display: inline-flex;
  padding: 4px;
  border: 0;
  background: none;
  color: var(--color-text-muted);
  cursor: pointer;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__body {
  margin-top: 8px;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__message {
  margin: 0 0 8px;
  font-size: var(--text-small);
  color: var(--color-text-secondary);
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar.is-reached .cbar__message {
  color: var(--color-text);
  font-weight: 500;
}

/* Progress track */
.cc_pSmp65GtZr_ummO9nJuNC .cbar__track {
  position: relative;
  height: 6px;
  background: var(--cbar-track);
  border-radius: 999px;
  overflow: hidden;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--cbar-fill);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Pill variant — single compact row */
.cc_pSmp65GtZr_ummO9nJuNC .cbar--pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px var(--space-sm);
  border-radius: 999px;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar--pill .cbar__head {
  flex: 0 0 auto;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar--pill .cbar__title {
  display: none;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar--pill .cbar__body {
  margin-top: 0;
  flex: 1;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar--pill .cbar__message {
  margin: 0;
}

/* Stepper variant — inline reward chips, no overflow */
.cc_pSmp65GtZr_ummO9nJuNC .cbar__steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border: 1px solid var(--cbar-track);
  border-radius: 999px;
  font-size: var(--text-label);
  color: var(--color-text-muted);
  white-space: nowrap;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__chip.is-on {
  border-color: var(--cbar-fill);
  color: var(--color-text);
  font-weight: 600;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__chip.is-on svg {
  color: var(--cbar-fill);
}

.cc_pSmp65GtZr_ummO9nJuNC .coup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cc_pSmp65GtZr_ummO9nJuNC .coup__toggle {
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: none;
  font-size: var(--text-small);
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cc_pSmp65GtZr_ummO9nJuNC .coup__row {
  display: flex;
  gap: 8px;
}

.cc_pSmp65GtZr_ummO9nJuNC .coup__input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text);
}

.cc_pSmp65GtZr_ummO9nJuNC .coup__input:focus {
  outline: none;
  border-color: var(--color-text);
}

.cc_pSmp65GtZr_ummO9nJuNC .coup__apply {
  flex-shrink: 0;
  height: 44px;
  padding: 0 18px;
  border: 0;
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .coup__apply:disabled {
  opacity: 0.5;
  cursor: default;
}

.cc_pSmp65GtZr_ummO9nJuNC .coup__error {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: var(--text-small);
  color: var(--color-error);
}

/* Applied state */
.cc_pSmp65GtZr_ummO9nJuNC .coup--applied {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.cc_pSmp65GtZr_ummO9nJuNC .coup__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-small);
  font-weight: 600;
}

.cc_pSmp65GtZr_ummO9nJuNC .coup__code {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cc_pSmp65GtZr_ummO9nJuNC .coup__amount {
  color: var(--color-text-secondary);
  font-weight: 500;
}

.cc_pSmp65GtZr_ummO9nJuNC .coup__remove {
  padding: 0;
  border: 0;
  background: none;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cc_pSmp65GtZr_ummO9nJuNC .coup__remove:disabled {
  opacity: 0.5;
  cursor: default;
}

.cc_pSmp65GtZr_ummO9nJuNC .coup__applied-note {
  flex-basis: 100%;
  font-size: var(--text-label);
  color: var(--color-text-muted);
}

/* ===========================================================================
   Recommended products — one-card-per-view quick-add carousel in the cart
   drawer footer, identical in design and structure to the product-detail
   cross-sell carousel (title + inline arrows head, then a scroll-snap track).
   No accordion, no separator. Button colors come from --crec-add-bg/--crec-add-fg.
   =========================================================================== */
.cc_pSmp65GtZr_ummO9nJuNC .crec {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__title {
  font-size: var(--text-small);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__nav {
  display: inline-flex;
  gap: 6px;
  flex-shrink: 0;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__arrow:hover:not(:disabled) {
  border-color: var(--color-text);
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__track::-webkit-scrollbar {
  display: none;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface);
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__card.is-oos {
  opacity: 0.6;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__thumb {
  display: block;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--color-surface-alt);
  overflow: hidden;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__thumb-empty {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-surface-2);
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__name {
  font-size: var(--text-label);
  line-height: 1.3;
  color: var(--color-text);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__prices {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__price {
  font-size: var(--text-label);
  font-weight: 600;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__price-old {
  font-size: var(--text-label);
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  height: 30px;
  padding: 0 11px;
  border: 1px solid var(--crec-add-bg, var(--color-primary));
  border-radius: 0;
  background: var(--crec-add-bg, var(--color-primary));
  color: var(--crec-add-fg, var(--color-on-primary));
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__add svg {
  flex-shrink: 0;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__add:hover:not(:disabled) {
  opacity: 0.86;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__add:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


.cc_pSmp65GtZr_ummO9nJuNC .ethm-search {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 28, 0.45);
  animation: cc_pSmp65GtZr_ethm-fade-in 300ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__panel {
  position: relative;
  background: var(--color-surface);
  width: 100%;
  max-width: 760px;
  margin: 10vh auto 0;
  box-shadow: var(--shadow-float);
  animation: cc_pSmp65GtZr_ethm-rise 300ms ease-out;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border-soft);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__bar-icon {
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  color: var(--color-text);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__input::placeholder {
  color: var(--color-text-muted);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  padding: 4px;
  transition: opacity 150ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__close:hover {
  opacity: 0.6;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__body {
  padding: var(--space-md);
  overflow-y: auto;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__hint {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-muted);
  text-align: center;
  padding: var(--space-lg) 0;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__section-title {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__count {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__results {
  display: flex;
  flex-direction: column;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__result {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  text-decoration: none;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-soft);
  transition: opacity 150ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__result:hover {
  opacity: 0.7;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__result-media {
  width: 56px;
  height: 72px;
  flex-shrink: 0;
  background: var(--color-surface-alt);
  overflow: hidden;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__result-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__result-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__result-name {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__result-price {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__result-arrow {
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__view-all {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding: 4px 0;
  transition: opacity 150ms ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__view-all:hover {
  opacity: 0.6;
}

.cc_pSmp65GtZr_ummO9nJuNC .ethm-search__close:focus-visible, .cc_pSmp65GtZr_ummO9nJuNC .ethm-search__view-all:focus-visible, .cc_pSmp65GtZr_ummO9nJuNC .ethm-search__result:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-search__panel {
    margin-top: 0;
    max-height: 100vh;
    height: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-search__backdrop, .cc_pSmp65GtZr_ummO9nJuNC .ethm-search__panel {
    animation: none;
  }
  .cc_pSmp65GtZr_ummO9nJuNC .ethm-search__close, .cc_pSmp65GtZr_ummO9nJuNC .ethm-search__result, .cc_pSmp65GtZr_ummO9nJuNC .ethm-search__view-all {
    transition: none;
  }
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar {
  --cbar-fill: #1a1c1c;
  --cbar-track: #eeeeee;
  --cbar-accent: #1a1c1c;
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface);
  padding: 12px var(--space-sm);
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__head-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__icon {
  display: inline-flex;
  color: var(--cbar-accent);
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__title {
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__toggle {
  display: inline-flex;
  padding: 4px;
  border: 0;
  background: none;
  color: var(--color-text-muted);
  cursor: pointer;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__body {
  margin-top: 8px;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__message {
  margin: 0 0 8px;
  font-size: var(--text-small);
  color: var(--color-text-secondary);
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar.is-reached .cbar__message {
  color: var(--color-text);
  font-weight: 500;
}

/* Progress track */
.cc_pSmp65GtZr_ummO9nJuNC .cbar__track {
  position: relative;
  height: 6px;
  background: var(--cbar-track);
  border-radius: 999px;
  overflow: hidden;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--cbar-fill);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Pill variant — single compact row */
.cc_pSmp65GtZr_ummO9nJuNC .cbar--pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px var(--space-sm);
  border-radius: 999px;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar--pill .cbar__head {
  flex: 0 0 auto;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar--pill .cbar__title {
  display: none;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar--pill .cbar__body {
  margin-top: 0;
  flex: 1;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar--pill .cbar__message {
  margin: 0;
}

/* Stepper variant — inline reward chips, no overflow */
.cc_pSmp65GtZr_ummO9nJuNC .cbar__steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border: 1px solid var(--cbar-track);
  border-radius: 999px;
  font-size: var(--text-label);
  color: var(--color-text-muted);
  white-space: nowrap;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__chip.is-on {
  border-color: var(--cbar-fill);
  color: var(--color-text);
  font-weight: 600;
}

.cc_pSmp65GtZr_ummO9nJuNC .cbar__chip.is-on svg {
  color: var(--cbar-fill);
}

/* Reference styles for RecommendedProducts. Sub-component stylesheets are NOT
   bundled by the ikas build — the live, scoped copy lives in the parent
   component's stylesheet (see the `.crec` block in Navbar/styles.css). Kept in
   sync here so this folder documents its own design: a cross-sell carousel
   identical to the product-detail offer carousel (title + inline arrows head,
   then a one-card-per-view scroll-snap track). No accordion, no separator. */

.cc_pSmp65GtZr_ummO9nJuNC .crec {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__title {
  font-size: var(--text-body-lg);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__nav {
  display: inline-flex;
  gap: 6px;
  flex-shrink: 0;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__arrow:hover:not(:disabled) {
  border-color: var(--color-text);
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__track::-webkit-scrollbar {
  display: none;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface);
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__card.is-oos {
  opacity: 0.6;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__thumb {
  display: block;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--color-surface-alt);
  overflow: hidden;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__thumb img, .cc_pSmp65GtZr_ummO9nJuNC .crec__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__thumb-empty {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-surface-2);
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__name {
  font-size: var(--text-label);
  line-height: 1.3;
  color: var(--color-text);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__prices {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__price {
  font-size: var(--text-label);
  font-weight: 600;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__price-old {
  font-size: var(--text-label);
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--crec-add-bg, var(--color-primary));
  border-radius: 0;
  background: var(--crec-add-bg, var(--color-primary));
  color: var(--crec-add-fg, var(--color-on-primary));
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__add svg {
  flex-shrink: 0;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__add:hover:not(:disabled) {
  opacity: 0.86;
}

.cc_pSmp65GtZr_ummO9nJuNC .crec__add:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
