/* ---- plugin hype-cart.css base rules, inlined: on prod LiteSpeed combines the plugin sheet inside @media print (async-load pattern) and the swap never happens on Lego pages ---- */
/* HYPE Cart — off-canvas drawer. Mobile-first. Namespaced .hype-cart, no Rey deps. */

:root.hype-cart-lock { overflow: hidden; }

/* Hide Rey's native cart panel when suppression is on (preprod testing). */
:root.hype-cart-suppress-rey .js-rey-cartPanel,
:root.hype-cart-suppress-rey .rey-cartPanel { display: none !important; }

.hype-cart { position: fixed; inset: 0; z-index: 100000; visibility: hidden; pointer-events: none; }
.hype-cart.is-open { visibility: visible; pointer-events: auto; }

.hype-cart__backdrop {
	position: absolute; inset: 0; background: rgba(11, 29, 46, 0.45);
	opacity: 0; transition: opacity 0.25s ease;
}
.hype-cart.is-open .hype-cart__backdrop { opacity: 1; }

.hype-cart__panel {
	position: absolute; top: 0; right: 0; height: 100%;
	width: 100%; max-width: 420px;
	background: #fff; display: flex; flex-direction: column;
	box-shadow: -8px 0 40px rgba(0, 0, 0, 0.16);
	transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: inherit;
}
.hype-cart.is-open .hype-cart__panel { transform: translateX(0); }
.hype-cart.is-busy .hype-cart__inner { opacity: 0.55; pointer-events: none; }

.hype-cart__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 18px 20px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); flex: 0 0 auto;
}
.hype-cart__title { font-size: 17px; font-weight: 600; color: #0B1D2E; }
.hype-cart__close {
	background: none; border: 0; font-size: 26px; line-height: 1; cursor: pointer;
	color: #0B1D2E; padding: 0 4px;
}

.hype-cart__inner { flex: 1 1 auto; overflow-y: auto; display: flex; flex-direction: column; }

/* --- Free-shipping bar --- */
.hype-cart__shipbar { padding: 14px 20px; background: #F4F8FB; }
.hype-cart__shipbar-msg { margin: 0 0 8px; font-size: 13px; color: #0B1D2E; }
.hype-cart__shipbar.is-qualified .hype-cart__shipbar-msg { color: #16779B; font-weight: 600; }
.hype-cart__shipbar-track { height: 6px; border-radius: 50px; background: rgba(0, 0, 0, 0.1); overflow: hidden; }
.hype-cart__shipbar-fill { display: block; height: 100%; border-radius: 50px; background: #1A8FBA; transition: width 0.4s ease; }

/* --- Empty --- */
.hype-cart__empty { padding: 48px 20px; text-align: center; color: #6b7785; }

/* --- Items --- */
.hype-cart__items { list-style: none; margin: 0; padding: 8px 20px; }
.hype-cart__item { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.07); }
.hype-cart__item-img { flex: 0 0 64px; }
.hype-cart__item-img img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; display: block; }
.hype-cart__item-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.hype-cart__item-name { font-size: 14px; font-weight: 600; color: #0B1D2E; text-decoration: none; line-height: 1.3; }
.hype-cart__item-meta { font-size: 13px; color: #6b7785; }
.hype-cart__item-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 8px; }
.hype-cart__item-line { font-size: 14px; font-weight: 600; color: #0B1D2E; white-space: nowrap; }
.hype-cart__remove { background: none; border: 0; font-size: 18px; line-height: 1; cursor: pointer; color: #9aa4af; padding: 2px; }
.hype-cart__remove:hover { color: #0B1D2E; }

/* --- Qty stepper --- */
.hype-cart__qty { display: inline-flex; align-items: center; border: 1px solid rgba(0, 0, 0, 0.14); border-radius: 8px; overflow: hidden; align-self: flex-start; }
.hype-cart__qty-btn { width: 30px; height: 30px; background: #fff; border: 0; cursor: pointer; font-size: 16px; color: #0B1D2E; }
.hype-cart__qty-btn:hover { background: #F4F8FB; }
.hype-cart__qty-val { min-width: 34px; text-align: center; font-size: 14px; }

/* --- Section titles --- */
.hype-cart__section-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: #6b7785; margin: 0 0 10px; }

/* --- Upsell + add-more cards --- */
.hype-cart__upsell, .hype-cart__addmore { padding: 16px 20px; border-top: 1px solid rgba(0, 0, 0, 0.07); }
.hype-cart__card { display: flex; align-items: center; gap: 12px; padding: 10px; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 12px; margin-bottom: 10px; }
.hype-cart__card:last-child { margin-bottom: 0; }
.hype-cart__card-img img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; display: block; }
.hype-cart__card-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.hype-cart__card-name { font-size: 13px; font-weight: 600; color: #0B1D2E; }
.hype-cart__card-price { font-size: 13px; color: #6b7785; }
.hype-cart__card-add {
	flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
	min-width: 36px; height: 36px; padding: 0 10px; border-radius: 50px;
	background: #1A8FBA; color: #fff; font-size: 18px; font-weight: 600;
	text-decoration: none; border: 0; cursor: pointer;
}
.hype-cart__card-add.loading { opacity: 0.6; }

/* --- Footer --- */
.hype-cart__foot { margin-top: auto; padding: 18px 20px 22px; border-top: 1px solid rgba(0, 0, 0, 0.1); flex: 0 0 auto; background: #fff; }
/* Footer money hierarchy: the running lines (subtotal, fees, coupons) are one
   quiet size; the total is the only figure that shouts. Before, the subtotal
   was 16px/700 and the total 22px — close enough that the eye landed on the
   pre-discount number instead of what the customer actually pays. */
.hype-cart__subtotal { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; font-weight: 500; color: #4A5A68; margin: 8px 0 6px; }
.hype-cart__subtotal-val { font-weight: 600; color: #4A5A68; }
.hype-cart__checkout {
	display: block; text-align: center; width: 100%;
	padding: 15px; border-radius: 50px; background: #0B1D2E; color: #fff;
	font-size: 15px; font-weight: 600; text-decoration: none;
}
.hype-cart__checkout:hover { background: #14304a; color: #fff; }
.hype-cart__viewcart { display: block; text-align: center; margin-top: 12px; font-size: 13px; color: #6b7785; text-decoration: underline; }

/* --- Coupon --- */
.hype-cart__coupon { margin-bottom: 12px; }
.hype-cart__coupon-list { list-style: none; margin: 0 0 8px; padding: 0; }
.hype-cart__coupon-list li { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; font-weight: 500; color: #16779B; }
.hype-cart__coupon-remove { background: none; border: 0; cursor: pointer; color: #9aa4af; }
.hype-cart__coupon-toggle summary { font-size: 13px; color: #6b7785; cursor: pointer; }
.hype-cart__coupon-form { display: flex; gap: 8px; margin-top: 10px; }
.hype-cart__coupon-input { flex: 1 1 auto; height: 40px; padding: 0 12px; border: 1px solid rgba(0, 0, 0, 0.14); border-radius: 8px; }
.hype-cart__coupon-apply { flex: 0 0 auto; height: 40px; padding: 0 16px; border-radius: 8px; border: 0; background: #1A8FBA; color: #fff; cursor: pointer; }
.hype-cart__coupon-msg { font-size: 12px; color: #c0392b; margin: 8px 0 0; }

@media (min-width: 768px) {
	.hype-cart__addmore-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
}

/* --- Theme-bleed armor ---
   With Rey gone, the host theme/WooCommerce/Elementor global button + input
   styles leak into the drawer. ID-scoped (#hype-cart) selectors out-specify
   any theme `.button` / `button` rule, keeping the drawer self-contained. */
#hype-cart button { -webkit-appearance: none; appearance: none; box-shadow: none; text-shadow: none; letter-spacing: normal; }
#hype-cart .hype-cart__close { background: none; border: 0; color: #0B1D2E; padding: 0 4px; min-height: 0; }
#hype-cart .hype-cart__qty { background: #fff; }
#hype-cart .hype-cart__qty-btn { background: #fff; border: 0; color: #0B1D2E; min-height: 0; border-radius: 0; }
#hype-cart .hype-cart__qty-btn:hover { background: #F4F8FB; }
#hype-cart .hype-cart__remove { background: none; border: 0; color: #9aa4af; min-height: 0; }
#hype-cart .hype-cart__remove:hover { color: #0B1D2E; }
#hype-cart .hype-cart__checkout { background: #0B1D2E; color: #fff; border: 0; }
#hype-cart .hype-cart__checkout:hover { background: #14304a; color: #fff; }
#hype-cart .hype-cart__card-add { background: #1A8FBA; color: #fff; border: 0; min-height: 0; }
#hype-cart .hype-cart__card-add:hover { background: #157699; color: #fff; }
#hype-cart .hype-cart__coupon-apply { background: #1A8FBA; color: #fff; border: 0; min-height: 0; }
#hype-cart .hype-cart__coupon-input { background: #fff; color: inherit; }

/* Coupon value + post-discount total (0.2.1) */
.hype-cart__coupon-amount {
  margin-left: auto;
  padding-right: 8px;
  font-weight: 600;
  color: #2E7D4F;
  white-space: nowrap;
}
.hype-cart__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(11, 29, 46, .10);
}
.hype-cart__total-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hype-cart-muted, #6b7280);
  font-weight: 700;
}
.hype-cart__total-val {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--hype-cart-fg, #0B1D2E);
}

/* Cart fees — same shape as the coupon list, so a fee-based discount reads
   the same as a coupon-based one. */
.hype-cart__fees { list-style: none; margin: 0 0 8px; padding: 0; }
.hype-cart__fees li { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; font-weight: 500; }
.hype-cart__fee-label { color: #4A5A68; }
.hype-cart__fee-amount { white-space: nowrap; font-weight: 600; }
.hype-cart__fee.is-discount .hype-cart__fee-label,
.hype-cart__fee.is-discount .hype-cart__fee-amount { color: #A25E00; }

/* Upsell / add-more cards: image + name link to the product page. */
#hype-cart a.hype-cart__card-img { flex: 0 0 auto; display: block; text-decoration: none; }
#hype-cart a.hype-cart__card-name { text-decoration: none; color: #0B1D2E; }
#hype-cart a.hype-cart__card-name:hover { color: #16779B; text-decoration: underline; }


/* Lego cart drawer = prod effective cart CSS: theme #hype-cart port + cart-drawer.css + surviving hype-commerce rules. Loads after plugin hype-cart.css. */
.hype-cart{--font-body:Manrope,"Manrope Fallback",Arial,sans-serif;--border:rgba(0,0,0,.06);--border-input:rgba(0,0,0,.12);--blue-text:#15789C;--gradient-orange:linear-gradient(135deg,#F7941D,#F15A24);--navy:#0B1D2E;--orange-text:#A25E00;--radius-pill:50px;--shadow-brand-glow:0 4px 16px rgba(247,148,29,.3);--text:#1a1a2e;--text-light:#6a6a7a;line-height:1.7}
.hype-cart a{color:var(--text)}
#hype-cart .hype-cart__close, .hype-cart__close { background: 0px 0px; border: 0px; color: rgb(11, 29, 46); padding: 0px 4px; }
#hype-cart button { appearance: none; box-shadow: none; text-shadow: none; letter-spacing: normal; }
#hype-cart .hype-cart__close { min-height: 0px; }
#hype-cart { font-family: var(--font-body); font-size: 15px; }
#hype-cart .hype-cart__panel { max-width: 470px; padding: 0px 30px 30px; }
#hype-cart .hype-cart__head { padding: 10px 0px 0px; min-height: 63px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
#hype-cart .hype-cart__title { display: inline-flex; align-items: flex-start; font-family: var(--font-body); font-size: 12.19px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: rgb(0, 0, 0); line-height: 1; text-decoration: none; }
#hype-cart .hype-cart__count { margin-left: 4.5px; font-size: 9px; font-weight: 800; letter-spacing: 2.5px; line-height: 9px; color: var(--navy); }
#hype-cart .hype-cart__panel .hype-cart__close { display: inline-flex; align-items: center; justify-content: center; width: 13px; height: 13px; padding: 0px; color: rgb(72, 79, 86); }
#hype-cart .hype-cart__close svg { width: 13px; height: 13px; display: block; }
#hype-cart .hype-cart__empty { padding: 0px; text-align: left; font-size: 15px; color: var(--text); }
#hype-cart .hype-cart__empty p { margin: 0px; }
@media (max-width: 767px){#hype-cart .hype-cart__panel { max-width: none; padding: 0px 20px 20px; }}
@media (max-width: 767px){#hype-cart .hype-cart__head { min-height: 53px; margin-bottom: 15px; }}
body.wp-child-theme-twentytwentyfive-child-main .hype-cart__close svg, body.wp-child-theme-twentytwentyfive-child-main .hype-drawer__close svg, body.wp-child-theme-twentytwentyfive-child-main .hype-drawer__infocard-icon svg { --hype-icon-family: lucide; mask: var(--hype-mask) center/contain no-repeat !important; background: currentcolor !important; }
body.wp-child-theme-twentytwentyfive-child-main .hype-cart__close svg { --hype-icon-name: "x"; --hype-mask: url("data:image/svg+xml,%3Csvg%0A%20%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%0A%20%20width%3D%2224%22%0A%20%20height%3D%2224%22%0A%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20fill%3D%22none%22%0A%20%20stroke%3D%22black%22%0A%20%20stroke-width%3D%222%22%0A%20%20stroke-linecap%3D%22round%22%0A%20%20stroke-linejoin%3D%22round%22%0A%3E%0A%20%20%3Cpath%20d%3D%22M18%206%206%2018%22%20/%3E%0A%20%20%3Cpath%20d%3D%22m6%206%2012%2012%22%20/%3E%0A%3C/svg%3E%0A"); }

/* ---- cart-drawer.css (child theme, identical prod/preprod) ---- */
/* ============================================================
   CART DRAWER — prod parity
   Ports prod's Rey cart-panel design onto hype-cart's markup. Every value
   below was measured off prod at 1280 (panel 470 wide, 30px rail), so treat
   the numbers as a spec, not taste. Class map: rey-cartPanel-title→__title,
   rey-cartShippingBar→__shipbar, woocommerce-mini-cart-item→__item,
   rey-removeBtn→__remove, rey-qtyField→__qty, rey-toggleCoupon→__coupon,
   crossSells→__upsell.
   Selectors that collide with hype-cart's own theme-bleed armor (also
   #hype-cart-scoped) carry .hype-cart__panel for the extra specificity, so
   this file wins regardless of enqueue order.
   ============================================================ */
#hype-cart {
  font-family: var(--font-body);
  font-size: 15px;
}
#hype-cart .hype-cart__panel {
  max-width: 470px;      /* prod panel is 470 */
  padding: 0 30px 30px;  /* prod rail */
}

/* Head — 63px rule, tracked label + superscript count, arrow close */
#hype-cart .hype-cart__head {
  padding: 10px 0 0; /* prod's head content sits 5px below centre */
  min-height: 63px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
#hype-cart .hype-cart__title {
  display: inline-flex;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 12.19px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #000;
  line-height: 1;
  text-decoration: none;
}
#hype-cart .hype-cart__count {
  margin-left: 4.5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.5px;
  line-height: 9px;
  color: var(--navy);
}
#hype-cart .hype-cart__panel .hype-cart__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  padding: 0;
  color: #484F56;
}
#hype-cart .hype-cart__close svg {
  width: 13px;
  height: 13px;
  display: block;
}

/* Free-shipping bar — prod has no tinted block, and centres the message */
#hype-cart .hype-cart__shipbar {
  background: transparent;
  padding: 0;
  margin-bottom: 25px;
}
#hype-cart .hype-cart__shipbar-msg {
  margin: 0 0 5.6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}
#hype-cart .hype-cart__shipbar.is-qualified .hype-cart__shipbar-msg {
  color: var(--text);
}
#hype-cart .hype-cart__shipbar-track {
  height: 5px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: none;
}
#hype-cart .hype-cart__shipbar-fill {
  border-radius: 4px;
  background: #3BB5E8; /* prod's fill is flat, not a gradient */
}

/* Empty state — prod keeps it on the rail, not centred */
#hype-cart .hype-cart__empty {
  padding: 0;
  text-align: left;
  font-size: 15px;
  color: var(--text);
}
#hype-cart .hype-cart__empty p {
  margin: 0;
}

/* Items — the list is the flexible row, so upsell + foot sit at the bottom */
#hype-cart .hype-cart__items {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
}
#hype-cart .hype-cart__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  margin: 0 0 25px;
  border-bottom: 0;
}
#hype-cart .hype-cart__item:last-child,#hype-cart .hype-cart__card:last-child{
  margin-bottom: 0;
}
#hype-cart .hype-cart__item-img {
  flex: 0 0 80px;
}
#hype-cart .hype-cart__item-img img {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 2px;
  object-fit: cover;
}
#hype-cart .hype-cart__item-body,#hype-cart .hype-cart__card-body{
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}
#hype-cart .hype-cart__item-name {
  display: block;
  margin: 0 35px 15px 0; /* right gutter clears the remove box */
  font-size: 13.13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 25.5px;
  color: var(--navy);
  text-decoration: none;
}
#hype-cart .hype-cart__item-name:hover {
  color: var(--blue-text);
}
/* prod sets the stepper and the prices on ONE row, not stacked */
#hype-cart .hype-cart__item-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
#hype-cart .hype-cart__item-prices {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12.19px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
}
#hype-cart .hype-cart__item-line {
  font-size: 12.19px;
  color: #4A4A5A;
  font-weight: 500;
}
#hype-cart .hype-cart__item-line .woocommerce-Price-amount {
  font-size: 12.19px;
  color: #4A4A5A;
}
/* Sale pricing.
   The visible text is always the inner .woocommerce-Price-amount - the <del> /
   <ins> wrappers only hold the screen-reader copy, so colouring THEM changes
   nothing on screen. Prod: old price #6A6A7A/400, active price #C47200/600 in
   both the cart line and the cross-sell card; the line total is #4A4A5A/500. */
#hype-cart .hype-cart__item-prices del,
#hype-cart .hype-cart__item-prices del .woocommerce-Price-amount,
#hype-cart .hype-cart__card-price del,
#hype-cart .hype-cart__card-price del .woocommerce-Price-amount {
  color: #6A6A7A;
  font-weight: 400;
}
#hype-cart .hype-cart__item-prices ins,
#hype-cart .hype-cart__item-prices ins .woocommerce-Price-amount,
#hype-cart .hype-cart__card-price ins,
#hype-cart .hype-cart__card-price ins .woocommerce-Price-amount {
  color: #A25E00;
  font-weight: 600;
  text-decoration: none;
}
/* the card's active price sits inside a product link, so prod underlines it */
#hype-cart .hype-cart__card-price ins {
  text-decoration: underline;
}
/* Remove control — 26px bordered box pinned to the row's top-right */
#hype-cart .hype-cart__panel .hype-cart__remove {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #484F56;
  background: none;
  border: 1px solid #ADB5BD;
  border-radius: 3px;
  transition: border-color .2s, color .2s;
}
#hype-cart .hype-cart__panel .hype-cart__remove:hover {
  color: var(--navy);
  border-color: rgba(0, 0, 0, 0.3);
}

/* Qty stepper — 107x40, hairline box, no internal dividers */
#hype-cart .hype-cart__panel .hype-cart__qty {
  flex: 0 0 107px;
  width: 107px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #DFE3E7;
  border-radius: 3px;
}
#hype-cart .hype-cart__panel .hype-cart__qty-btn {
  /* flex-centre the glyph: with the inherited 25.5px line-height the minus/plus
     sit below the value's baseline. */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* prod's cells are 43px: the glyphs sit at 21.5 / 85.5 across the 107px box */
  flex: 0 0 43px;
  width: 43px;
  height: 100%;
  line-height: 1;
  font-size: 15px;
  color: var(--navy);
  background: #fff;
  border: 0;
  border-radius: 0;
  transition: background .2s;
}
#hype-cart .hype-cart__qty-btn svg {
  /* the button is a flex container and the icon has no intrinsic width (viewBox
     only), so it collapses to 0 without an explicit basis. */
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  display: block;
}
#hype-cart .hype-cart__panel .hype-cart__qty-btn:hover {
  background: rgba(59, 181, 232, 0.06);
}
#hype-cart .hype-cart__qty-val {
  flex: 1 1 auto;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border: 0;
  font-size: 10px;
  font-weight: 600;
  color: var(--text);
}

/* Cross-sell / add-more — orange eyebrow, borderless card, text-link add */
#hype-cart .hype-cart__upsell,
#hype-cart .hype-cart__addmore {
  padding: 0;
  border-top: 0;
  margin: 30px 0 23px; /* the items list flexes, so this gap sets the block's height off the foot */
}
#hype-cart .hype-cart__section-title {
  display: inline-block;
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-text);
  line-height: 1.2;
}
#hype-cart .hype-cart__card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0;
  margin: 0 0 20px;
  border: 0;
  border-radius: 0;
}

#hype-cart .hype-cart__card-img {
  flex: 0 0 85px;
}
#hype-cart .hype-cart__card-img img {
  display: block;
  width: 85px;
  height: 85px;
  border-radius: 0;
  object-fit: cover;
}

#hype-cart .hype-cart__card-name {
  display: block;
  /* prod's H4 is 16px but the link inside it renders at 14/18.2 - match the link,
     then pad the block back out to the H4's 21px line box. */
  margin: 0 0 8px;
  padding-bottom: 2.8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.16px;
  line-height: 18.2px;
  color: var(--navy);
}
#hype-cart .hype-cart__card-price {
  display: block;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
#hype-cart .hype-cart__panel .hype-cart__card-add {
  /* block + fit-content: as an inline-block it would sit in the body's 25.5px
     line box and drop ~8px below prod's position. */
  display: block;
  width: fit-content;
  min-width: 0;
  height: auto;
  min-height: 0;
  padding: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  line-height: 11px;
  letter-spacing: normal;
  text-transform: uppercase;
  color: #4A4A5A;
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  text-decoration: none;
}
#hype-cart .hype-cart__panel .hype-cart__card-add:hover {
  color: var(--navy);
  background: none;
}

/* Foot — subtotal, then coupon, then the CTA (prod's order) */
#hype-cart .hype-cart__foot {
  margin-top: auto;
  padding: 17px 0 0;
  border-top: 1px solid var(--border);
  background: #fff;
}
#hype-cart .hype-cart__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
#hype-cart .hype-cart__subtotal-label,#hype-cart .hype-cart__total-label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}
/* Footer money hierarchy. The subtotal was 22px — near enough to the total
   that the eye landed on the pre-discount figure. Subtotal, coupons and fees
   are one quiet tier now; only the total is large. */
#hype-cart .hype-cart__subtotal-val,
#hype-cart .hype-cart__subtotal-val .woocommerce-Price-amount {
  text-align: right;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}
#hype-cart .hype-cart__fees {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}
#hype-cart .hype-cart__fees li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#hype-cart .hype-cart__fee-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}
#hype-cart .hype-cart__fee-amount,
#hype-cart .hype-cart__fee-amount .woocommerce-Price-amount {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
#hype-cart .hype-cart__fee.is-discount .hype-cart__fee-label,
#hype-cart .hype-cart__fee.is-discount .hype-cart__fee-amount,
#hype-cart .hype-cart__fee.is-discount .hype-cart__fee-amount .woocommerce-Price-amount {
  color: #A25E00;
}
#hype-cart .hype-cart__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(11, 29, 46, .10);
}

#hype-cart .hype-cart__total-val,
#hype-cart .hype-cart__total-val .woocommerce-Price-amount {
  text-align: right;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--navy);
}
#hype-cart .hype-cart__coupon {
  margin: 10px 0 0;
}
#hype-cart .hype-cart__coupon-toggle summary {
  display: inline-block;
  list-style: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: var(--blue-text);
  text-decoration: underline;
  cursor: pointer;
}
#hype-cart .hype-cart__coupon-toggle summary::-webkit-details-marker,#hype-cart .hype-cart__viewcart{
  display: none;
}
#hype-cart .hype-cart__coupon-toggle summary::marker {
  content: "";
}
#hype-cart .hype-cart__coupon-toggle summary:hover {
  color: var(--navy);
}
#hype-cart .hype-cart__coupon-input {
  height: 48px;
  border: 1px solid var(--border-input);
  border-radius: 12px;
  font-size: 16px;
  padding: 12px 16px;
  color: var(--text);
}
#hype-cart .hype-cart__coupon-input:focus {
  outline: none;
  border: 2px solid var(--blue-text);
}
#hype-cart .hype-cart__panel .hype-cart__coupon-apply {
  background: var(--gradient-orange);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  height: auto;
  min-height: 44px;
  padding: 14px 24px;
  box-shadow: var(--shadow-brand-glow);
}
#hype-cart .hype-cart__panel .hype-cart__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 20px;
  padding: 16px 36px;
  min-height: 49px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--gradient-orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 16.8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow-brand-glow);
  transition: transform .2s ease, box-shadow .2s ease;
}
#hype-cart .hype-cart__panel .hype-cart__checkout:hover {
  background: var(--gradient-orange);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.4);
}
#hype-cart .hype-cart__checkout-arrow {
  display: inline-flex;
  align-items: center;
}
#hype-cart .hype-cart__checkout-arrow svg {
  width: 26px;
  height: 8px;
  display: block;
  fill: currentColor;
}
/* prod's panel has no secondary "view cart" link */


/* Mobile — prod narrows the rail to 20px, the head to 53px and the thumb to 60px */
@media (max-width: 767px) {
  #hype-cart .hype-cart__panel {
    max-width: none;
    padding: 0 20px 20px;
  }
  #hype-cart .hype-cart__head {
    min-height: 53px;
    margin-bottom: 15px;
  }
  #hype-cart .hype-cart__item-img {
    flex: 0 0 60px;
  }
  #hype-cart .hype-cart__item-img img {
    width: 60px;
    height: 60px;
  }
}/* ------------------------------------------------------------
   Desktop header cluster — matches prod (Rey) metrics:
   lang flags 16px w/ 15px gap | account icon 24px | cart icon 21px
   cluster items 20px apart, flush to the page rail
   ------------------------------------------------------------ */
.elementor-element-a102365 {
  gap: 20px;
}

/* Desktop nav underline — mirrors Rey's "ulr --thinner": 1px rule that
   scales in from the right on hover and stays put on the current item.
   The CTA pill (.menu-btn-orange) opts out. */
.elementor-element-hdr-nav .elementor-nav-menu > li > a {
  position: relative;
}
.elementor-element-hdr-nav .elementor-nav-menu > li:not(.menu-btn-orange) > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #22262A;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform .3s ease;
}
.elementor-element-hdr-nav .elementor-nav-menu > li:not(.menu-btn-orange) > a:hover::after,
.elementor-element-hdr-nav .elementor-nav-menu > li.current-menu-item:not(.menu-btn-orange) > a::after,
.elementor-element-hdr-nav .elementor-nav-menu > li.current_page_item:not(.menu-btn-orange) > a::after,
.elementor-element-hdr-nav .elementor-nav-menu > li.current-menu-ancestor:not(.menu-btn-orange) > a::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}
@media (prefers-reduced-motion: reduce) {
  .elementor-element-hdr-nav .elementor-nav-menu > li > a::after {
    transition: none;
  }
}

/* Tablet (768–1024): nav collapses to a burger on the right, like prod.
   Elementor ships it as a 33px grey box — prod's is a bare 22x16 glyph. */
.elementor-element-hdr-nav .elementor-menu-toggle {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  width: 22px;
  height: 16px;
  min-height: 0;
  font-size: 22px;
  color: var(--navy) !important;
  box-shadow: none !important;
}
.elementor-element-hdr-nav .elementor-menu-toggle svg,
.elementor-element-hdr-nav .elementor-menu-toggle i {
  width: 22px;
  height: 16px;
  font-size: 22px;
  fill: currentColor;
}

/* ---- full hype-commerce cart block (theme.css design; prod UCSS strips it) ---- */
@layer hype-commerce{
body{--hype-commerce-ink:#17313d;--hype-commerce-muted:#49616d;--hype-commerce-line:#d3e4ed;--hype-commerce-mist:#edf7fc}
body .hype-cart__panel{color:var(--hype-commerce-ink)!important;font-family:Manrope,"Manrope Fallback",Arial,sans-serif!important;width:480px!important;max-width:100vw!important;padding:0!important;box-sizing:border-box!important;display:flex!important;flex-direction:column!important;height:100dvh!important;max-height:100dvh!important}
body .hype-cart__head{padding:16px 24px!important;border-bottom:1px solid var(--hype-commerce-line)!important;align-items:center!important;flex-shrink:0!important}
body .hype-cart__title{font-size:22px!important;font-weight:800!important;line-height:1.3!important;letter-spacing:-.02em!important;text-transform:none!important;color:var(--hype-commerce-ink)!important;display:inline-flex!important;align-items:center!important;gap:10px!important}
body .hype-cart__count{background:var(--hype-commerce-mist)!important;color:var(--hype-commerce-ink)!important;font-size:13px!important;line-height:28px!important;min-width:28px!important;height:28px!important;text-align:center!important;border-radius:50%!important;position:static!important;vertical-align:middle!important}
body .hype-cart__inner{padding:0!important;min-height:0!important;flex:1!important;overflow:hidden!important;box-sizing:border-box!important;display:flex!important;flex-direction:column!important}
body .hype-cart__content{padding:20px 24px!important;min-height:0!important;flex:1!important;overflow-y:auto!important;overscroll-behavior:contain!important}
body .hype-cart__shipbar{margin:0 0 24px!important;padding:0!important}
body .hype-cart__shipbar-msg{color:var(--hype-commerce-ink)!important;font-size:14px!important;font-weight:600!important;line-height:1.5!important;margin:0 0 12px!important}
body .hype-cart__shipbar-track{height:4px!important;background:var(--hype-commerce-mist)!important}
body .hype-cart__shipbar-fill{background:#56b6de!important}
body .hype-cart__items{margin:0!important;padding:0!important}
body .hype-cart__item{column-gap:16px!important;padding-bottom:20px!important;margin-bottom:0!important;border-color:var(--hype-commerce-line)!important}
body .hype-cart__item-body{min-width:0!important}
body .hype-cart__item-name{font-size:16px!important;line-height:1.5!important;font-weight:700!important;letter-spacing:0!important;color:var(--hype-commerce-ink)!important}
body .hype-cart__item-row{display:flex!important;flex-wrap:wrap!important;align-items:center!important;gap:12px!important;margin-top:12px!important}
body .hype-cart__item-prices{display:flex!important;flex-wrap:wrap!important;align-items:baseline!important;gap:4px 8px!important;font-size:14px!important;line-height:1.5!important;color:var(--hype-commerce-muted)!important}
body .hype-cart__item-prices ins{font-weight:700!important;color:var(--hype-commerce-ink)!important;text-decoration:none!important}
body .hype-cart__item-line{flex-basis:100%!important;font-size:18px!important;font-weight:800!important;color:var(--hype-commerce-ink)!important}
body .hype-cart__qty{border:1px solid var(--hype-commerce-line)!important;border-radius:6px!important;overflow:hidden!important;flex-shrink:0!important}
body .hype-cart__qty-val{font-size:14px!important;font-weight:700!important;min-width:28px!important}
body :is(.hype-cart__close,.hype-cart__remove){width:44px!important;height:44px!important;min-width:44px!important;padding:10px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;border:0!important;background:transparent!important;color:var(--hype-commerce-ink)!important}
body .hype-cart__close svg{width:22px!important;height:22px!important}
body .hype-cart__qty-btn{width:36px!important;height:42px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;color:var(--hype-commerce-ink)!important}
body .hype-cart__section-title{font-size:16px!important;font-weight:700!important;letter-spacing:0!important;text-transform:none!important;color:var(--hype-commerce-ink)!important;margin-bottom:16px!important}
body .hype-cart__upsell{margin-top:24px!important;padding:20px!important;background:var(--hype-commerce-mist)!important;border-radius:8px!important}
body .hype-cart__card{gap:16px!important}
body .hype-cart__card-body{min-width:0!important}
body .hype-cart__card-name{font-size:14px!important;line-height:1.5!important;font-weight:700!important;color:var(--hype-commerce-ink)!important}
body .hype-cart__card-price{display:flex!important;gap:8px!important;flex-wrap:wrap!important;font-size:14px!important;color:var(--hype-commerce-muted)!important;margin:8px 0 12px!important}
body .hype-cart__card-price ins{font-weight:700!important;color:var(--hype-commerce-ink)!important;text-decoration:none!important}
body .hype-cart__foot{margin:0!important;padding:16px 24px 20px!important;border-top:1px solid var(--hype-commerce-line)!important;position:static!important;background:#fff!important;flex-shrink:0!important}
body .hype-cart__subtotal{padding-top:0!important;border-top:0!important}
body :is(.hype-cart__subtotal-label,.hype-cart__total-label){font-size:15px!important;font-weight:600!important;letter-spacing:0!important;text-transform:none!important;color:var(--hype-commerce-muted)!important}
body .hype-cart__subtotal-val{font-size:16px!important;font-weight:700!important;color:var(--hype-commerce-ink)!important}
body .hype-cart__total-val{font-size:28px!important;font-weight:800!important;color:var(--hype-commerce-ink)!important}
body .hype-cart :is(.hype-cart__total-val,.hype-cart__subtotal-val,.hype-cart__item-line) .amount{font:inherit!important;color:inherit!important}
body .hype-cart__total{border-color:var(--hype-commerce-line)!important;padding:20px 0!important}
body .hype-cart__coupon-toggle summary{font-size:14px!important;color:var(--hype-commerce-muted)!important;padding:12px 0!important}
body .hype-cart__coupon-form{display:flex!important;gap:8px!important;align-items:stretch!important;margin-top:4px!important}
body .hype-cart__coupon-form input{min-width:0!important;flex:1!important;width:0!important;padding:12px!important;border:1px solid var(--hype-commerce-line)!important;height:48px!important}
body .hype-cart__checkout{width:100%!important}
@media(max-width:600px){
body .hype-cart__head{padding:16px 20px!important}
body .hype-cart__content{padding:16px 20px!important}
body .hype-cart__foot{padding:16px 20px 20px!important}
body .hype-cart__upsell{padding:16px!important}
body .hype-cart__item{column-gap:12px!important}
body .hype-cart__item-row{gap:8px!important}
body .hype-cart__item-prices{width:100%!important}
}
}
.hype-cart .hype-cart__coupon-form input.hype-cart__coupon-input{font-family:Manrope,"Manrope Fallback",Arial,sans-serif!important;font-size:16px!important;border-radius:6px!important;color:var(--hype-commerce-ink)!important}

.hype-cart :is(.hype-cart__item-prices,.hype-cart__card-price) ins .amount{color:inherit!important;font-weight:inherit!important}

@layer hype-commerce{body .hype-cart__empty{padding:24px!important;text-align:left!important}@media(max-width:600px){body .hype-cart__empty{padding:20px!important}}}
