/*----------------------------------------------------------------------------
  CARRYON — commerce layer
  ---------------------------------------------------------------------------
  Loads last. Covers:
    1  product card fixes (action-icon contrast + Add to bag on touch)
    2  toast
    3  page head / breadcrumb / empty states
    4  shop toolbar
    5  product detail
    6  cart + order summary
    7  checkout
    8  order confirmation
    9  404
----------------------------------------------------------------------------*/

/* ============================================ 1. product card ============= */

/*  ISSUE 3 — the action icons inherited `color: var(--common-black)` with no
    background, so they vanished against dark product photography. They now sit
    on an opaque chip with the brand colour, and invert on hover/press.        */
.product-action-2.product-action-solid .product-action-btn-2 {
  width: 38px;
  height: 38px;
  display: grid;
  place-content: center;
  margin: 3px 0;
  border-radius: 50%;
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(26, 21, 23, 0.08);
  box-shadow: 0 2px 10px rgba(26, 21, 23, 0.16);
  backdrop-filter: blur(4px);
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}
.product-action-2.product-action-solid .product-action-btn-2:hover,
.product-action-2.product-action-solid .product-action-btn-2:focus-visible {
  color: #fff;
  background-color: var(--primary);
  transform: translateY(-1px);
}
/* saved / comparing */
.product-action-2.product-action-solid .product-action-btn-2.is-on {
  color: #fff;
  background-color: var(--primary);
}
.product-action-2.product-action-solid .product-action-btn-2 svg { display: block; }

@media (min-width: 992px) {
  .product-action-2.product-action-solid .product-action-btn-2 { width: 42px; height: 42px; }
}

/*  ISSUE 4 — Add to bag was revealed only on hover (translateY(70px)), which
    never fires on touch. Any device without hover gets it in place; pointer
    devices keep the reveal.                                                   */
@media (hover: none), (max-width: 991px) {
  .product-btn { transform: none !important; }
  .product-btn-box { position: static; margin: 12px 0 0; }
  .product-item .product-btn .btn-black { padding: 13px 16px; font-size: 12px; }

  /* the action rail is always visible too, not hover-gated */
  .product-inner-action { opacity: 1 !important; visibility: visible !important; transform: none !important; }
  .product-action-2 { top: 10px; inset-inline-end: 10px; }

  /* no hover means the second image can never show — don't pay to load it */
  .img-hover { display: none; }
}

/* tooltips are pointless without a pointer */
@media (hover: none) { .tip-item { display: none !important; } }

.product-title a:hover { color: var(--primary); }

/* ============================================ 2. toast =================== */
.cy-toast {
  position: fixed;
  left: 50%;
  bottom: 84px;
  z-index: 10000;
  max-width: min(92vw, 420px);
  padding: 13px 20px;
  border-radius: 4px;
  font-family: var(--ff-sans);
  font-size: 14px;
  color: #fff;
  background-color: var(--common-black);
  box-shadow: 0 12px 34px rgba(26, 21, 23, 0.3);
  transform: translate(-50%, 16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.cy-toast.is-on { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
@media (min-width: 768px) { .cy-toast { bottom: 28px; } }

/* ============================================ 3. page furniture ========== */
.page-main { padding-top: 0; }

.page-head { padding: 28px 0 20px; }
@media (min-width: 768px) { .page-head { padding: 44px 0 28px; } }

.breadcrumb-nav {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-bottom: 14px;
  font-family: var(--ff-sans); font-size: 13px; color: var(--text-body);
}
.breadcrumb-nav a { color: var(--text-body); }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav [aria-current] { color: var(--common-black); }

.page-title { font-family: var(--ff-display); font-weight: 300; line-height: 1.05; margin-bottom: 6px; }
.page-sub { font-family: var(--ff-sans); font-size: 14px; color: var(--text-body); margin: 0; }

.empty-state { padding: 56px 20px; text-align: center; }
.empty-state img { margin-bottom: 18px; opacity: .7; }
.empty-state h1, .empty-state h2 { font-weight: 300; font-size: 30px; margin-bottom: 10px; }
.empty-state p { color: var(--text-body); margin-bottom: 24px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.btn-text-link {
  font-family: var(--ff-sans); font-size: 14px; color: var(--text-body);
  text-decoration: underline; text-underline-offset: 3px; background: none; border: 0; padding: 0;
}
.btn-text-link:hover { color: var(--primary); }

/* ============================================ 4. shop toolbar ============ */
.shop-toolbar { padding-bottom: 24px; }
.shop-toolbar-inner {
  display: flex; flex-direction: column; gap: 16px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(26, 21, 23, .1);
}
@media (min-width: 992px) {
  .shop-toolbar-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

.shop-filters {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.shop-filters::-webkit-scrollbar { display: none; }
.shop-chip {
  flex: 0 0 auto;
  display: inline-flex; align-items: center;
  padding: 9px 16px; border-radius: 40px;
  font-family: var(--ff-sans); font-size: 13px; white-space: nowrap;
  color: var(--common-black); border: 1px solid rgba(26, 21, 23, .14);
  transition: all .25s ease;
}
.shop-chip:hover { border-color: var(--primary); color: var(--primary); }
.shop-chip.is-active { color: #fff; background-color: var(--primary); border-color: var(--primary); }

.shop-sort { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.shop-sort label { font-family: var(--ff-sans); font-size: 13px; color: var(--text-body); }
.shop-sort select {
  height: 42px; padding: 0 34px 0 14px; border-radius: 2px;
  font-family: var(--ff-sans); font-size: 14px;
  color: var(--common-black); background-color: #fff;
  border: 1px solid rgba(26, 21, 23, .16); box-shadow: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231A1517' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
}
.shop-sort select:focus { border-color: var(--primary); outline: none; }

/* ============================================ 5. product detail ========== */
.pdp { padding-bottom: 20px; }
.pdp-gallery { margin-bottom: 28px; }
.pdp-stage { position: relative; overflow: hidden; background-color: var(--common-white-2); }
.pdp-stage img { width: 100%; display: block; }
.pdp-stage .product-badge { position: absolute; top: 14px; inset-inline-start: 14px; z-index: 2; }

.pdp-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; scrollbar-width: none; }
.pdp-thumbs::-webkit-scrollbar { display: none; }
.pdp-thumb {
  flex: 0 0 auto; width: 72px; padding: 0; border: 1px solid transparent; background: none;
  opacity: .65; transition: all .25s ease;
}
.pdp-thumb img { display: block; width: 100%; height: auto; }
.pdp-thumb.is-active, .pdp-thumb:hover { opacity: 1; border-color: var(--primary); }
@media (min-width: 768px) { .pdp-thumb { width: 88px; } }

.pdp-summary { padding-bottom: 20px; }
@media (min-width: 992px) { .pdp-summary { padding-inline-start: 20px; position: sticky; top: 24px; } }

.pdp-eyebrow {
  display: inline-block; margin-bottom: 10px;
  font-family: var(--ff-sans); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--primary);
}
.pdp-title { font-weight: 300; font-size: 32px; line-height: 1.1; margin-bottom: 12px; }
@media (min-width: 992px) { .pdp-title { font-size: 42px; } }

.pdp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.pdp-rating .stars { color: var(--common-yellow); letter-spacing: 2px; }
.pdp-reviews { font-family: var(--ff-sans); font-size: 13px; color: var(--text-body); }

.pdp-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.pdp-price ins { text-decoration: none; }
.pdp-price .new-price { font-family: var(--ff-sans); font-size: 26px; font-weight: 500; color: var(--common-black); }
.pdp-price .old-price { font-family: var(--ff-sans); font-size: 17px; color: var(--gray-4); text-decoration: line-through; }
.pdp-save {
  font-family: var(--ff-sans); font-size: 12px; padding: 4px 10px; border-radius: 30px;
  color: #fff; background-color: var(--primary);
}

.pdp-blurb { font-family: var(--ff-sans); font-size: 15px; line-height: 1.7; color: var(--text-body); margin-bottom: 24px; }

.pdp-label { font-family: var(--ff-sans); font-size: 13px; font-weight: 500; margin-bottom: 10px; color: var(--common-black); }
.pdp-colors { margin-bottom: 24px; }
.pdp-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.pdp-swatch {
  width: 36px; height: 36px; padding: 0; border-radius: 50%;
  background-color: var(--swatch, #ccc);
  border: 1px solid rgba(26, 21, 23, .16);
  box-shadow: 0 0 0 2px transparent; transition: box-shadow .2s ease;
}
.pdp-swatch.is-active { box-shadow: 0 0 0 2px var(--primary); }

.pdp-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 22px; }
.pdp-actions .product-quantity { width: 130px; flex: 0 0 auto; }
.pdp-add { flex: 1 1 180px; border-radius: 0; }
.pdp-wish {
  width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-content: center;
  color: var(--common-black); border: 1px solid rgba(26, 21, 23, .16); background: none;
  transition: all .25s ease;
}
.pdp-wish:hover, .pdp-wish.is-on { color: #fff; background-color: var(--primary); border-color: var(--primary); }

.pdp-reassure { list-style: none; margin: 0 0 24px; padding: 0; }
.pdp-reassure li {
  position: relative; padding-inline-start: 22px; margin-bottom: 7px;
  font-family: var(--ff-sans); font-size: 14px; color: var(--text-body);
}
.pdp-reassure li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; background-color: var(--primary);
}

.pdp-details { border-top: 1px solid rgba(26, 21, 23, .1); padding: 14px 0; }
.pdp-details summary {
  cursor: pointer; list-style: none;
  font-family: var(--ff-sans); font-size: 14px; font-weight: 500; color: var(--common-black);
}
.pdp-details summary::-webkit-details-marker { display: none; }
.pdp-details summary::after { content: "+"; float: right; font-size: 18px; line-height: 1; }
.pdp-details[open] summary::after { content: "–"; }
.pdp-details ul { margin: 12px 0 0; padding-inline-start: 18px; }
.pdp-details li, .pdp-details p {
  font-family: var(--ff-sans); font-size: 14px; line-height: 1.7; color: var(--text-body); margin-bottom: 4px;
}
.pdp-related { background-color: var(--common-white-2); }

/* ============================================ 6. cart =================== */
.cart-table { border-top: 1px solid rgba(26, 21, 23, .12); }
.cart-table-head { display: none; }
@media (min-width: 768px) {
  .cart-table-head {
    display: grid; grid-template-columns: 3fr 1fr 1.2fr 1fr 40px; gap: 12px;
    padding: 14px 0; border-bottom: 1px solid rgba(26, 21, 23, .12);
    font-family: var(--ff-sans); font-size: 12px; letter-spacing: .1em;
    text-transform: uppercase; color: var(--text-body);
  }
  .cart-table-head span:nth-child(n+2) { text-align: center; }
}

.cart-line {
  display: grid; grid-template-columns: 88px 1fr; gap: 14px; align-items: start;
  padding: 18px 0; border-bottom: 1px solid rgba(26, 21, 23, .1);
}
.cart-line-thumb img { display: block; width: 100%; height: auto; }
.cart-line-name { font-family: var(--ff-sans); font-size: 15px; font-weight: 500; margin: 0 0 4px; }
.cart-line-meta { font-family: var(--ff-sans); font-size: 13px; color: var(--text-body); margin: 0 0 4px; }
.cart-line-price { font-family: var(--ff-sans); font-size: 14px; margin: 0 0 10px; color: var(--common-black); }
.cart-line-controls { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cart-line-controls .product-quantity { width: 118px; }
.cart-line-remove { font-family: var(--ff-sans); font-size: 13px; color: var(--text-body); background: none; border: 0; padding: 0; }
.cart-line-remove:hover { color: var(--primary); }
.cart-line-total { display: none; }
@media (min-width: 768px) {
  .cart-page .cart-line { grid-template-columns: 88px 1fr 110px; align-items: center; }
  .cart-page .cart-line-total { display: block; text-align: right; font-family: var(--ff-sans); font-weight: 500; }
}
.cart-line-compact { grid-template-columns: 64px 1fr auto; align-items: center; padding: 12px 0; }
.cart-line-compact .cart-line-total { display: block; font-family: var(--ff-sans); font-size: 14px; }

.cart-actions { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 0; flex-wrap: wrap; }

.order-summary {
  padding: 24px; background-color: var(--common-white-2);
  border: 1px solid rgba(26, 21, 23, .08);
}
@media (min-width: 992px) { .order-summary { position: sticky; top: 24px; } }
.order-summary-title { font-weight: 300; font-size: 24px; margin-bottom: 18px; }
.order-row {
  display: flex; justify-content: space-between; gap: 12px; padding: 9px 0;
  font-family: var(--ff-sans); font-size: 14px; color: var(--text-body);
}
.order-row em { font-style: normal; font-size: 12px; opacity: .8; }
.order-row-total {
  margin-top: 8px; padding-top: 14px; border-top: 1px solid rgba(26, 21, 23, .14);
  font-size: 17px; font-weight: 500; color: var(--common-black);
}
.order-cta { display: block; margin-top: 18px; border-radius: 0; }
.order-note { font-family: var(--ff-sans); font-size: 12px; color: var(--text-body); text-align: center; margin: 10px 0 0; }

.coupon-form { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(26, 21, 23, .12); }
.coupon-form label { display: block; font-family: var(--ff-sans); font-size: 13px; margin-bottom: 8px; }
.coupon-row { display: flex; gap: 8px; }
.coupon-row input { height: 46px; border-radius: 0; box-shadow: none; padding-inline: 14px; }
.coupon-row .btn-black { flex: 0 0 auto; padding: 0 20px; border-radius: 0; }
.form-msg { font-family: var(--ff-sans); font-size: 13px; margin: 8px 0 0; min-height: 18px; }
.form-msg.is-ok  { color: var(--common-green); }
.form-msg.is-bad { color: var(--primary); }

.cartmini-note { font-family: var(--ff-sans); font-size: 12px; color: var(--text-body); margin: 6px 0 12px; }
.cartmini-empty-state { padding: 40px 20px; }
.cartmini-empty-state img { opacity: .6; margin-bottom: 14px; }
.wishlist-popup-empty { padding: 36px 20px; }

/* ============================================ 7. checkout =============== */
.checkout-body .bottom-menu, .checkout-body .progress-wrap { display: none !important; }
.checkout-shell { min-height: 100vh; background-color: #fff; }
.checkout-head { border-bottom: 1px solid rgba(26, 21, 23, .1); padding: 16px 0; }
.checkout-head-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.checkout-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-sans); font-size: 13px; color: var(--text-body);
}
.checkout-back:hover { color: var(--primary); }

.checkout-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 32px 0 64px; }
@media (min-width: 992px) {
  .checkout-grid { grid-template-columns: 1.35fr 1fr; gap: 56px; align-items: start; }
  .checkout-summary { position: sticky; top: 24px; order: 2; }
  .checkout-form { order: 1; }
}

.checkout-steps { display: flex; gap: 8px; list-style: none; margin: 0 0 28px; padding: 0; }
.checkout-steps li {
  flex: 1 1 0; display: flex; align-items: center; gap: 8px;
  padding-bottom: 10px; border-bottom: 2px solid rgba(26, 21, 23, .12);
  font-family: var(--ff-sans); font-size: 12px; color: var(--text-body);
}
.checkout-steps li span {
  width: 22px; height: 22px; flex: 0 0 auto; display: grid; place-content: center;
  border-radius: 50%; font-size: 11px;
  background-color: rgba(26, 21, 23, .1); color: var(--common-black);
}
.checkout-steps li.is-active { color: var(--common-black); border-bottom-color: var(--primary); }
.checkout-steps li.is-active span, .checkout-steps li.is-done span { background-color: var(--primary); color: #fff; }
@media (max-width: 575px) { .checkout-steps li { font-size: 0; gap: 0; justify-content: center; } .checkout-steps li span { font-size: 11px; } }

.checkout-legend { font-weight: 300; font-size: 22px; margin: 26px 0 14px; }
.checkout-step > .checkout-legend:first-child { margin-top: 0; }

.field { margin-bottom: 16px; }
.field label {
  display: block; margin-bottom: 7px;
  font-family: var(--ff-sans); font-size: 13px; font-weight: 500; color: var(--common-black);
}
.field-opt { font-weight: 400; color: var(--text-body); }
.field input, .field select, .field textarea {
  width: 100%; height: 50px; padding: 0 14px; border-radius: 2px;
  font-family: var(--ff-sans); font-size: 15px; line-height: 50px;
  color: var(--common-black); background-color: #fff;
  border: 1px solid rgba(26, 21, 23, .18); box-shadow: none;
}
.field textarea { height: auto; line-height: 1.6; padding: 12px 14px; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); outline: none; }
.field input.has-error, .field select.has-error { border-color: #C0392B; background-color: #FDF4F3; }
.field-error { font-family: var(--ff-sans); font-size: 12px; color: #C0392B; margin: 6px 0 0; min-height: 15px; }
.field-note { font-family: var(--ff-sans); font-size: 13px; color: var(--text-body); margin: 4px 0 18px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0 14px; }
@media (min-width: 576px) { .field-row { grid-template-columns: 1fr 1fr; } }
.checkbox-field { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 20px; }
.checkbox-field .field-error { flex: 1 0 100%; }

.ship-options { display: grid; gap: 10px; margin-bottom: 8px; }
.ship-option {
  display: flex; align-items: center; gap: 12px; padding: 15px 16px; cursor: pointer;
  border: 1px solid rgba(26, 21, 23, .18); border-radius: 2px; transition: border-color .2s ease;
}
.ship-option:has(input:checked) { border-color: var(--primary); box-shadow: inset 0 0 0 1px var(--primary); }
.ship-option input { flex: 0 0 auto; accent-color: var(--primary); width: 18px; height: 18px; }
.ship-body { flex: 1 1 auto; display: flex; flex-direction: column; }
.ship-label { font-family: var(--ff-sans); font-size: 14px; font-weight: 500; color: var(--common-black); }
.ship-note { font-family: var(--ff-sans); font-size: 12px; color: var(--text-body); }
.ship-price { font-family: var(--ff-sans); font-size: 14px; font-weight: 500; }

.demo-notice {
  padding: 14px 16px; margin-bottom: 20px; border-radius: 2px;
  font-family: var(--ff-sans); font-size: 13px; line-height: 1.6;
  color: var(--common-black); background-color: var(--primary-tint);
  border-inline-start: 3px solid var(--primary);
}

.checkout-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.checkout-nav .btn-black { border-radius: 0; flex: 1 1 auto; text-align: center; }
@media (min-width: 576px) { .checkout-nav .btn-black { flex: 0 0 auto; } }
.btn-spinner {
  display: inline-block; width: 15px; height: 15px; margin-inline-start: 9px; vertical-align: -2px;
  border: 2px solid rgba(255, 255, 255, .45); border-top-color: #fff; border-radius: 50%;
  animation: cy-spin .7s linear infinite;
}
@keyframes cy-spin { to { transform: rotate(360deg); } }
[data-place-order].is-busy { opacity: .8; pointer-events: none; }
.summary-lines { margin-bottom: 12px; }

/* ============================================ 8. confirmation =========== */
.confirm-page { padding: 40px 0 72px; }
.confirm-head { max-width: 620px; margin: 0 auto 40px; }
.confirm-tick {
  width: 66px; height: 66px; margin: 0 auto 20px; display: grid; place-content: center;
  border-radius: 50%; color: #fff; background-color: var(--primary);
}
.confirm-eyebrow {
  font-family: var(--ff-sans); font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-body); margin-bottom: 8px;
}
.confirm-title { font-weight: 300; font-size: 34px; margin-bottom: 12px; }
@media (min-width: 768px) { .confirm-title { font-size: 44px; } }
.confirm-text { font-family: var(--ff-sans); font-size: 15px; color: var(--text-body); }
.confirm-grid { margin-bottom: 32px; }
.confirm-card {
  padding: 22px; margin-bottom: 20px;
  background-color: var(--common-white-2); border: 1px solid rgba(26, 21, 23, .08);
}
.confirm-card-title {
  font-family: var(--ff-sans); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-body); margin-bottom: 14px;
}
.confirm-address { font-family: var(--ff-sans); font-size: 14px; font-style: normal; line-height: 1.7; color: var(--common-black); }
.confirm-ship { font-family: var(--ff-sans); font-size: 13px; color: var(--text-body); margin: 10px 0 0; }
.confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.confirm-actions .btn-black { border-radius: 0; }

@media print {
  .header-main, footer, .bottom-menu, .confirm-actions, .progress-wrap,
  .cartmini-area, .wishlist-popup, .compare-area, .subscribe-popup { display: none !important; }
  .confirm-card { border: 1px solid #ddd; background: none; }
}

/* ============================================ 9. 404 ==================== */
.error-page { padding: 60px 0 90px; }
.error-code {
  font-family: var(--ff-display); font-size: 96px; line-height: 1; font-weight: 300;
  color: var(--primary); margin-bottom: 6px;
}
@media (min-width: 768px) { .error-code { font-size: 150px; } }
.error-title { font-weight: 300; font-size: 30px; margin-bottom: 12px; }
.error-text { font-family: var(--ff-sans); color: var(--text-body); margin-bottom: 28px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.error-actions .btn-black { border-radius: 0; }

/* mega-menu feature tile */
.megamenu-feature { display: block; position: relative; overflow: hidden; }
.megamenu-feature img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.megamenu-feature:hover img { transform: scale(1.04); }
.megamenu-feature-label {
  position: absolute; top: 14px; inset-inline-start: 14px;
  font-family: var(--ff-sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background-color: var(--primary); padding: 5px 10px;
}
.megamenu-feature-name {
  position: absolute; bottom: 14px; inset-inline-start: 14px;
  font-family: var(--ff-display); font-size: 20px; color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
}

/* drawer open state */
body.drawer-open { overflow: hidden; }
.search-recent-empty { font-family: var(--ff-sans); font-size: 14px; color: var(--text-body); }

/* narrow screens: keep qty + save together, give Add to bag its own full row
   (otherwise the heart strands on a line of its own) */
@media (max-width: 479px) {
  .pdp-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
  .pdp-actions .product-quantity { width: 100%; }
  .pdp-add { grid-column: 1 / -1; width: 100%; }
}

/* newsletter: subscribed confirmation state */
.newsletter-done { padding: 18px 0 6px; }
.newsletter-done .confirm-tick { width: 54px; height: 54px; margin: 0 auto 18px; }
.newsletter-done .newsletter-title { margin-bottom: 10px; }
.newsletter-done .newsletter-text { margin-bottom: 0; }
.newsletter-field input.has-error { border-color: #C0392B; background-color: #FDF4F3; }

/* footer credit */
.copyright-sep { margin: 0 8px; opacity: .45; }
.copyright-credit a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.copyright-credit a:hover { color: var(--primary); }
