/* ============================================================
   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;
}
