@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --white: #f2f5f7;
  --navy: #1c2b3a;
  --blue: #a8c8d8;
  --navy-dim: rgba(28,43,58,0.55);
  --navy-faint: rgba(28,43,58,0.08);
}

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

.hm-wrap {
  background: var(--white);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* ── TICKER ── */
.hm-ticker {
  background: var(--navy);
  overflow: hidden;
  padding: 8px 0;
}
.hm-ticker-inner {
  display: flex;
  animation: hmTicker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.hm-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,245,247,0.55);
}
.hm-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  opacity: 0.6;
}
@keyframes hmTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAV ── */
.hm-nav {
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.hm-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.hm-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.hm-nav-links a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,245,247,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.hm-nav-links a:hover { color: var(--white); }
.hm-season { color: var(--blue) !important; }
.hm-nav-actions { display: flex; gap: 20px; align-items: center; }
.hm-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(242,245,247,0.55);
  padding: 0;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.hm-nav-btn:hover { color: var(--white); }

/* ── CART PAGE ── */
.hm-cart-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px 120px;
  flex: 1 1 auto;
  width: 100%;
}
.hm-cart-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hm-cart-eyebrow::before {
  content: '';
  width: 32px; height: 0.5px;
  background: var(--blue);
}
.hm-cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 56px;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 48px;
  line-height: 1;
}
.hm-cart-body { width: 100%; }

/* ── WOOCOMMERCE CART TABLE ── */
.hm-cart-body .woocommerce-cart-form table.shop_table {
  border-collapse: collapse;
  width: 100%;
  border: none;
}
.hm-cart-body .shop_table th {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-dim);
  font-weight: 400;
  border-bottom: 0.5px solid rgba(28,43,58,0.12);
  padding: 0 0 16px;
  text-align: left;
  font-family: 'Jost', sans-serif;
}
.hm-cart-body .shop_table td {
  padding: 24px 0;
  border-bottom: 0.5px solid var(--navy-faint);
  vertical-align: middle;
  font-family: 'Jost', sans-serif;
}
.hm-cart-body .shop_table .product-name a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: none;
  font-weight: 400;
}
.hm-cart-body .shop_table .product-name a:hover { color: var(--blue); }
.hm-cart-body .shop_table .product-price,
.hm-cart-body .shop_table .product-subtotal {
  font-size: 14px;
  color: var(--navy-dim);
}
.hm-cart-body .shop_table .product-remove a {
  color: var(--navy-dim) !important;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}
.hm-cart-body .shop_table .product-remove a:hover { color: var(--navy) !important; }
.hm-cart-body .shop_table input[type="number"] {
  width: 60px;
  border: 0.5px solid rgba(28,43,58,0.2);
  background: transparent;
  padding: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--navy);
  text-align: center;
  border-radius: 1px;
  outline: none;
}
.hm-cart-body .shop_table input[type="number"]:focus {
  border-color: var(--blue);
}

/* Coupon + update row */
.hm-cart-body .actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 0;
  gap: 16px;
  flex-wrap: wrap;
}
.hm-cart-body .coupon {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hm-cart-body .coupon input#coupon_code {
  border: 0.5px solid rgba(28,43,58,0.2);
  background: transparent;
  padding: 10px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--navy);
  border-radius: 1px;
  outline: none;
  width: 200px;
}
.hm-cart-body .coupon input#coupon_code:focus { border-color: var(--blue); }
.hm-cart-body .coupon input#coupon_code::placeholder { color: var(--navy-dim); }

/* All WC buttons */
.hm-cart-body .button,
.hm-cart-body button[type="submit"],
.hm-cart-body input[type="submit"],
.hm-cart-body a.button {
  background: var(--navy) !important;
  color: var(--white) !important;
  border: none !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  padding: 12px 24px !important;
  border-radius: 1px !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  font-weight: 400 !important;
}
.hm-cart-body .button:hover,
.hm-cart-body button[type="submit"]:hover,
.hm-cart-body input[type="submit"]:hover,
.hm-cart-body a.button:hover {
  background: var(--blue) !important;
  color: var(--navy) !important;
}

/* Checkout button — accent */
.hm-cart-body .checkout-button {
  background: var(--blue) !important;
  color: var(--navy) !important;
  font-size: 11px !important;
  padding: 14px 32px !important;
}
.hm-cart-body .checkout-button:hover {
  background: #bdd4e2 !important;
}

/* Cart totals */
.hm-cart-body .cart_totals {
  margin-top: 48px;
  max-width: 380px;
  margin-left: auto;
}
.hm-cart-body .cart_totals h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hm-cart-body .cart_totals table {
  width: 100%;
  border-collapse: collapse;
}
.hm-cart-body .cart_totals table th,
.hm-cart-body .cart_totals table td {
  padding: 12px 0;
  border-bottom: 0.5px solid var(--navy-faint);
  font-size: 13px;
  color: var(--navy-dim);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  text-align: left;
}
.hm-cart-body .cart_totals table th {
  letter-spacing: 0.04em;
}
.hm-cart-body .cart_totals .order-total th,
.hm-cart-body .cart_totals .order-total td {
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  border-bottom: none;
  padding-top: 20px;
}
.hm-cart-body .wc-proceed-to-checkout {
  margin-top: 24px;
}

/* Empty cart */
.hm-cart-body .cart-empty {
  font-size: 14px;
  color: var(--navy-dim);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hm-cart-body .return-to-shop .button {
  background: var(--blue) !important;
  color: var(--navy) !important;
}

/* Product thumbnail in cart */
.hm-cart-body .product-thumbnail img {
  width: 72px;
  height: 88px;
  object-fit: cover;
  border-radius: 1px;
}

/* ── FOOTER ── */
.hm-footer {
  background: var(--navy);
  padding: 24px 48px;
  margin-top: auto;
}
.hm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hm-footer-copy {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(242,245,247,0.18);
  font-family: 'Jost', sans-serif;
}
.hm-footer-payments { display: flex; gap: 8px; }
.hm-payment-badge {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(242,245,247,0.25);
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

@media (max-width: 768px) {
  .hm-nav { padding: 0 20px; }
  .hm-nav-links { display: none; }
  .hm-cart-page { padding: 40px 20px; }
  .hm-cart-title { font-size: 36px; }
  .hm-footer { padding: 24px 20px; }
}
/* ── FULL FOOTER ── */
.hm-footer {
  background: var(--navy);
  padding: 56px 48px 32px;
  margin-top: auto;
}
.hm-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.hm-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}
.hm-footer-desc {
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(242,245,247,0.3);
  max-width: 220px;
  margin-bottom: 24px;
  font-family: 'Jost', sans-serif;
}
.hm-footer-socials { display: flex; gap: 14px; }
.hm-footer-social {
  width: 32px; height: 32px;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.hm-footer-social:hover {
  border-color: var(--blue);
  background: rgba(168,200,216,0.08);
}
.hm-footer-social:hover svg { stroke: var(--blue) !important; }

.hm-footer-col-title {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,245,247,0.25);
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
}
.hm-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hm-footer-links a {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(242,245,247,0.4);
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'Jost', sans-serif;
}
.hm-footer-links a:hover { color: var(--white); }

.hm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hm-footer-copy {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(242,245,247,0.18);
  font-family: 'Jost', sans-serif;
}
.hm-footer-payments { display: flex; gap: 8px; align-items: center; }
.hm-payment-badge {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(242,245,247,0.25);
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

@media (max-width: 768px) {
  .hm-footer { padding: 40px 20px 24px; }
  .hm-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* WooCommerce emits visually-hidden a11y labels. These templates bypass the
   theme stylesheet, so without this rule they render as stray visible text
   ('Remove item', 'Thumbnail image', duplicated product names...). */
.screen-reader-text,
.woocommerce-form__label-for-checkbox .screen-reader-text{
  position:absolute !important;
  width:1px;height:1px;
  margin:-1px;padding:0;border:0;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  white-space:nowrap;
}

/* ── CART LAYOUT ── */
.hm-cart-body .woocommerce{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:56px;
  align-items:start;
}
.hm-cart-body .woocommerce-notices-wrapper{grid-column:1 / -1;}
.hm-cart-body form.woocommerce-cart-form{grid-column:1;min-width:0;}
.hm-cart-body .cart-collaterals{grid-column:2;width:100%;float:none;}
.hm-cart-body .cart-collaterals .cart_totals{width:100%;float:none;}

.hm-cart-body table.shop_table{width:100%;table-layout:fixed;}
.hm-cart-body .shop_table .product-remove{width:44px;}
.hm-cart-body .shop_table .product-thumbnail{width:92px;}
.hm-cart-body .shop_table .product-price{width:100px;text-align:right;}
.hm-cart-body .shop_table .product-quantity{width:112px;text-align:center;}
.hm-cart-body .shop_table .product-subtotal{width:112px;text-align:right;}
.hm-cart-body .shop_table .product-name{word-break:break-word;}
.hm-cart-body .shop_table .product-thumbnail img{width:72px;height:72px;object-fit:cover;display:block;}
.hm-cart-body .shop_table td.actions{text-align:left;}
.hm-cart-body .shop_table .variation{
  font-size:10px;letter-spacing:.08em;text-transform:uppercase;
  color:rgba(28,43,58,.58);margin-top:5px;
}
.hm-cart-body .shop_table .variation dt,
.hm-cart-body .shop_table .variation dd,
.hm-cart-body .shop_table .variation p{display:inline;margin:0;font-weight:400;}

@media(max-width:900px){
  .hm-cart-body .woocommerce{grid-template-columns:1fr;gap:32px;}
  .hm-cart-body form.woocommerce-cart-form,
  .hm-cart-body .cart-collaterals{grid-column:1;}
  .hm-cart-body table.shop_table{table-layout:auto;}
}

/* ── CART: give the product column room to breathe ── */
.hm-cart-page{max-width:1320px;}
.hm-cart-body .woocommerce{grid-template-columns:minmax(0,1fr) 340px;gap:48px;}

.hm-cart-body .shop_table .product-remove{width:36px;}
.hm-cart-body .shop_table .product-thumbnail{width:84px;}
.hm-cart-body .shop_table .product-price{width:90px;}
.hm-cart-body .shop_table .product-quantity{width:100px;}
.hm-cart-body .shop_table .product-subtotal{width:100px;}
.hm-cart-body .shop_table .product-name{width:auto;}
.hm-cart-body .shop_table .product-name a{line-height:1.5;}

/* action buttons were wrapping onto two lines */
.hm-cart-body .shop_table td.actions{padding-top:22px;}
.hm-cart-body .shop_table td.actions .coupon{display:flex;gap:10px;align-items:stretch;margin-bottom:14px;}
.hm-cart-body .shop_table td.actions .coupon .input-text{flex:0 1 240px;margin:0;}
.hm-cart-body .button,
.hm-cart-body input[type=submit].button{
  white-space:nowrap;
  padding:0 26px !important;
  height:48px !important;
  line-height:48px !important;
  display:inline-flex;align-items:center;justify-content:center;
}
.hm-cart-body .shop_table td.actions .button[name=update_cart]{margin-top:0;}

@media(max-width:900px){
  .hm-cart-body .shop_table td.actions .coupon{flex-wrap:wrap;}
  .hm-cart-body .shop_table td.actions .coupon .input-text{flex:1 1 100%;}
}

/* ── CART TOTALS: one consistent label / value alignment ──────────────── */
.hm-cart-body .cart_totals table{width:100%;table-layout:fixed;}
.hm-cart-body .cart_totals table th{
  width:42%;text-align:left;vertical-align:top;padding-top:16px;
}
.hm-cart-body .cart_totals table td{
  width:58%;text-align:right;vertical-align:top;padding-top:16px;
}

/* shipping choices: no bullets, right-aligned like every other value */
.hm-cart-body .cart_totals ul#shipping_method,
.hm-cart-body .cart_totals .woocommerce-shipping-methods{
  list-style:none;margin:0;padding:0;
}
.hm-cart-body .cart_totals ul#shipping_method li,
.hm-cart-body .cart_totals .woocommerce-shipping-methods li{
  margin:0 0 8px;padding:0;list-style:none;text-align:right;
}
.hm-cart-body .cart_totals ul#shipping_method li::marker,
.hm-cart-body .cart_totals .woocommerce-shipping-methods li::marker{content:none;}
.hm-cart-body .cart_totals ul#shipping_method li:last-child{margin-bottom:0;}

.hm-cart-body .cart_totals .woocommerce-shipping-destination{
  margin:10px 0 6px;text-align:right;
  font-size:12px;color:var(--navy-dim);
}
.hm-cart-body .cart_totals .woocommerce-shipping-calculator{text-align:right;}
.hm-cart-body .cart_totals .woocommerce-shipping-calculator > a{
  font-size:11px;letter-spacing:0.06em;
  color:var(--navy);text-decoration:none;
  border-bottom:0.5px solid var(--blue-soft);
  transition:color .2s,border-color .2s;
}
.hm-cart-body .cart_totals .woocommerce-shipping-calculator > a:hover{
  color:var(--blue);border-color:var(--blue);
}

.hm-cart-body .cart_totals .order-total th,
.hm-cart-body .cart_totals .order-total td{padding-top:20px;}

.hm-cart-body .cart_totals .wc-proceed-to-checkout{padding:22px 0 0;}
.hm-cart-body .cart_totals .wc-proceed-to-checkout .button{width:100%;}

/* ── CART TABLE: header cells share their column alignment ───────────── */
.hm-cart-body .shop_table th,
.hm-cart-body .shop_table td{vertical-align:middle;}

.hm-cart-body .shop_table th.product-name,
.hm-cart-body .shop_table td.product-name{text-align:left;}

.hm-cart-body .shop_table th.product-price,
.hm-cart-body .shop_table td.product-price{text-align:right;}

.hm-cart-body .shop_table th.product-quantity,
.hm-cart-body .shop_table td.product-quantity{text-align:center;}

.hm-cart-body .shop_table th.product-subtotal,
.hm-cart-body .shop_table td.product-subtotal{text-align:right;}

.hm-cart-body .shop_table th.product-remove,
.hm-cart-body .shop_table td.product-remove,
.hm-cart-body .shop_table th.product-thumbnail,
.hm-cart-body .shop_table td.product-thumbnail{text-align:left;}

/* quantity box centred within its column */
.hm-cart-body .shop_table td.product-quantity .quantity{
  display:inline-flex;justify-content:center;
}
.hm-cart-body .shop_table td.product-quantity input[type=number]{
  text-align:center;
}

/* ── CART 3.0 — premium SAEBA bag ─────────────────────────────── */
@keyframes hmCartRise{
  from{opacity:0;transform:translate3d(0,20px,0);}
  to{opacity:1;transform:translate3d(0,0,0);}
}
@keyframes hmCartLine{
  from{transform:scaleX(0);}
  to{transform:scaleX(1);}
}
@keyframes hmCartItemIn{
  from{opacity:0;transform:translate3d(14px,0,0);}
  to{opacity:1;transform:translate3d(0,0,0);}
}

.hm-cart-page{
  max-width:1440px;
  padding:clamp(64px,7vw,104px) clamp(24px,5vw,76px) clamp(90px,10vw,150px);
}
.hm-cart-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:42px;
}
.hm-cart-eyebrow{margin:0 0 16px;}
.hm-cart-title{
  margin:0;
  font-size:clamp(66px,7vw,104px);
  line-height:.78;
  letter-spacing:-.05em;
}
.hm-cart-count{
  margin:0 0 4px;
  padding:9px 14px;
  border:1px solid rgba(28,43,58,.13);
  border-radius:100px;
  color:rgba(28,43,58,.55);
  font-size:9px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.hm-cart-motion .hm-cart-header{animation:hmCartRise .65s cubic-bezier(.16,1,.3,1) both;}

.hm-cart-progress{
  margin-bottom:36px;
  padding:18px 22px 20px;
  background:#eaf1f4;
  border:1px solid rgba(28,43,58,.08);
  border-radius:8px;
  animation:hmCartRise .62s cubic-bezier(.16,1,.3,1) .08s both;
}
.hm-cart-progress-copy{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  margin-bottom:13px;
}
.hm-cart-progress-copy span{
  font-size:8.5px;letter-spacing:.19em;text-transform:uppercase;color:rgba(28,43,58,.46);
}
.hm-cart-progress-copy strong{
  font-size:11px;letter-spacing:.035em;color:#1c2b3a;font-weight:500;
}
.hm-cart-progress-track{
  height:4px;background:rgba(28,43,58,.09);border-radius:10px;overflow:hidden;
}
.hm-cart-progress-track span{
  display:block;height:100%;border-radius:inherit;
  background:linear-gradient(90deg,#81afc6,#b8d6e4);
  transform-origin:left;
  animation:hmCartLine .8s cubic-bezier(.16,1,.3,1) .18s both;
}

.hm-cart-body .woocommerce{
  grid-template-columns:minmax(0,1fr) 400px;
  gap:clamp(42px,5vw,76px);
}
.hm-cart-body form.woocommerce-cart-form{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(28,43,58,.11);
  border-radius:10px;
  padding:0 28px 28px;
  overflow:hidden;
  animation:hmCartRise .68s cubic-bezier(.16,1,.3,1) .12s both;
}
.hm-cart-body .woocommerce-cart-form table.shop_table{border-collapse:separate;border-spacing:0;}
.hm-cart-body .shop_table thead th{
  height:64px;padding:0 0;
  color:rgba(28,43,58,.42);
}
.hm-cart-body .shop_table tbody tr.cart_item{
  position:relative;
  animation:hmCartItemIn .58s cubic-bezier(.16,1,.3,1) both;
}
.hm-cart-body .shop_table tbody tr.cart_item:nth-child(2){animation-delay:.055s;}
.hm-cart-body .shop_table tbody tr.cart_item:nth-child(3){animation-delay:.11s;}
.hm-cart-body .shop_table tbody tr.cart_item:nth-child(n+4){animation-delay:.16s;}
.hm-cart-body .shop_table tbody tr.cart_item td{padding-top:24px;padding-bottom:24px;}

.hm-cart-body .shop_table .product-thumbnail{width:116px;}
.hm-cart-body .shop_table .product-thumbnail img{
  width:96px;height:112px;
  object-fit:contain;
  background:#f7f8f8;
  border:1px solid rgba(28,43,58,.1);
  border-radius:7px;
  transition:transform .5s cubic-bezier(.16,1,.3,1);
}
.hm-cart-body .shop_table tr.cart_item:hover .product-thumbnail img{transform:scale(1.035);}
.hm-cart-body .shop_table .product-name a{
  font-size:13.5px;
  line-height:1.5;
  background-image:linear-gradient(#1c2b3a,#1c2b3a);
  background-position:0 100%;background-repeat:no-repeat;background-size:0 1px;
  transition:color .2s ease,background-size .4s cubic-bezier(.16,1,.3,1);
}
.hm-cart-body .shop_table .product-name a:hover{color:#1c2b3a;background-size:100% 1px;}
.hm-cart-body .shop_table .variation{margin-top:8px;color:rgba(28,43,58,.43);}
.hm-cart-body .shop_table .product-price,
.hm-cart-body .shop_table .product-subtotal{font-size:13px;color:rgba(28,43,58,.62);}

.hm-cart-body .shop_table .product-remove{width:40px;}
.hm-cart-body .shop_table .product-remove a,
.hm-cart-body .shop_table .product-remove button{
  width:30px;height:30px;
  display:grid !important;place-items:center;
  padding:0 !important;
  border:1px solid rgba(28,43,58,.13) !important;
  border-radius:50% !important;
  background:transparent !important;
  color:rgba(28,43,58,.5) !important;
  line-height:1 !important;
  transition:background .2s ease,color .2s ease,transform .28s cubic-bezier(.34,1.7,.5,1) !important;
}
.hm-cart-body .shop_table .product-remove a:hover,
.hm-cart-body .shop_table .product-remove button:hover{
  background:#1c2b3a !important;color:#f2f5f7 !important;transform:rotate(90deg);
}

.hm-cart-body .shop_table td.product-quantity .quantity{
  width:128px;height:38px;
  display:inline-flex;align-items:center;justify-content:space-between;
  background:#fff;border:1px solid rgba(28,43,58,.15);border-radius:6px;overflow:hidden;
}
.hm-cart-body .shop_table input.qty[type=number]{
  width:54px;height:36px;padding:0;
  border:0 !important;background:transparent;
  appearance:textfield;-moz-appearance:textfield;
}
.hm-cart-body .shop_table input.qty::-webkit-inner-spin-button,
.hm-cart-body .shop_table input.qty::-webkit-outer-spin-button{appearance:none;margin:0;}
.hm-cart-qty-btn{
  flex:0 0 36px;width:36px;height:36px;
  border:0;background:transparent;color:rgba(28,43,58,.48);
  font:300 15px/1 'Jost',sans-serif;cursor:pointer;
  transition:background .18s ease,color .18s ease,transform .25s cubic-bezier(.34,1.7,.5,1);
}
.hm-cart-qty-btn:hover{background:#eaf1f4;color:#1c2b3a;transform:scale(1.08);}
.hm-cart-qty-btn:active{transform:scale(.92);}
.hm-cart-qty-btn:disabled{opacity:.25;cursor:not-allowed;transform:none;}

.hm-cart-body .shop_table td.actions{
  padding:24px 0 0;
  border-bottom:0;
}
.hm-cart-body .shop_table td.actions .coupon{
  margin:0;gap:10px;
}
.hm-cart-body .coupon input#coupon_code{
  height:48px;width:230px;
  padding:0 16px;
  background:#f8fafb;
  border:1px solid rgba(28,43,58,.14);
  border-radius:5px;
  transition:border-color .2s ease,box-shadow .25s ease;
}
.hm-cart-body .coupon input#coupon_code:focus{
  border-color:#1c2b3a;box-shadow:0 0 0 3px rgba(168,200,216,.3);
}
.hm-cart-body .button,
.hm-cart-body input[type=submit].button{
  border-radius:4px !important;
  transition:background .2s ease,color .2s ease,transform .25s cubic-bezier(.34,1.6,.5,1) !important;
}
.hm-cart-body .button:hover{transform:translateY(-2px);}
.hm-cart-body .button:active{transform:scale(.98);}
.hm-cart-body button[name=update_cart]{background:transparent !important;color:#1c2b3a !important;border:1px solid rgba(28,43,58,.18) !important;}

.hm-cart-body .cart-collaterals{
  position:sticky;top:88px;
  animation:hmCartRise .68s cubic-bezier(.16,1,.3,1) .18s both;
}
.hm-cart-body .cart_totals{
  max-width:none;margin:0;
  padding:30px;
  background:#1c2b3a;
  color:#f2f5f7;
  border-radius:10px;
  box-shadow:0 22px 55px rgba(28,43,58,.17);
}
.hm-cart-body .cart_totals h2{
  margin:0 0 22px;
  color:#f2f5f7;
  font-size:34px;font-weight:300;
}
.hm-cart-body .cart_totals table th,
.hm-cart-body .cart_totals table td{
  border-color:rgba(255,255,255,.1);
  color:rgba(242,245,247,.62);
  font-size:12px;
}
.hm-cart-body .cart_totals table th{
  font-size:9px;letter-spacing:.16em;text-transform:uppercase;
}
.hm-cart-body .cart_totals .order-total th,
.hm-cart-body .cart_totals .order-total td{
  color:#f2f5f7;font-size:16px;
}
.hm-cart-body .cart_totals .order-total .woocommerce-Price-amount{
  font-family:'Cormorant Garamond',serif;font-size:27px;font-weight:400;
}
.hm-cart-body .cart_totals ul#shipping_method li,
.hm-cart-body .cart_totals .woocommerce-shipping-methods li,
.hm-cart-body .cart_totals .woocommerce-shipping-destination{color:rgba(242,245,247,.58);}
.hm-cart-body .cart_totals .woocommerce-shipping-calculator>a{color:#d7e7ee;border-color:rgba(168,200,216,.6);}
.hm-cart-body .cart_totals .checkout-button{
  width:100%;height:60px !important;
  justify-content:center;
  background:#d7e7ee !important;color:#1c2b3a !important;
  border-radius:4px !important;
  box-shadow:0 10px 28px rgba(0,0,0,.18);
  position:relative;overflow:hidden;
  transition:transform .28s cubic-bezier(.34,1.6,.5,1),background .2s ease,box-shadow .25s ease !important;
}
.hm-cart-body .cart_totals .checkout-button:hover{
  background:#f2f5f7 !important;
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(0,0,0,.23);
}
.hm-cart-body .cart_totals .wc-proceed-to-checkout::after{
  content:"Secure payment \00B7  PayPal \00B7  Apple Pay \00B7  Google Pay";
  display:block;margin-top:15px;text-align:center;
  color:rgba(242,245,247,.38);font-size:8px;letter-spacing:.12em;text-transform:uppercase;
}

.hm-cart-body .cart-empty{
  padding:44px;
  background:#fff;border:1px solid rgba(28,43,58,.1);border-radius:10px;
  font:300 25px/1.35 'Cormorant Garamond',serif;color:#1c2b3a;
}

@media(max-width:980px){
  .hm-cart-body .woocommerce{grid-template-columns:1fr;gap:30px;}
  .hm-cart-body .cart-collaterals{position:static;}
}
@media(max-width:720px){
  .hm-cart-page{padding:52px 16px 80px;}
  .hm-cart-header{margin-bottom:30px;}
  .hm-cart-title{font-size:64px;}
  .hm-cart-progress{padding:16px;margin-bottom:22px;}
  .hm-cart-progress-copy{align-items:flex-start;flex-direction:column;gap:5px;}
  .hm-cart-body form.woocommerce-cart-form{padding:0 16px 20px;}
  .hm-cart-body .woocommerce-cart-form table.shop_table thead{display:none;}
  .hm-cart-body .shop_table tbody tr.cart_item{
    display:grid;
    grid-template-columns:88px minmax(0,1fr);
    column-gap:14px;
    padding:20px 0;
    border-bottom:1px solid rgba(28,43,58,.09);
  }
  .hm-cart-body .shop_table tbody tr.cart_item td{padding:0;border:0;}
  .hm-cart-body .shop_table td.product-remove{
    position:absolute;right:0;top:18px;width:auto;
  }
  .hm-cart-body .shop_table td.product-thumbnail{grid-column:1;grid-row:1 / span 5;width:88px;}
  .hm-cart-body .shop_table .product-thumbnail img{width:88px;height:104px;}
  .hm-cart-body .shop_table td.product-name{
    grid-column:2;
    padding-right:44px !important;
    margin-bottom:10px;
    text-align:left;
  }
  .hm-cart-body .shop_table td.product-price,
  .hm-cart-body .shop_table td.product-quantity,
  .hm-cart-body .shop_table td.product-subtotal{
    grid-column:2;width:auto;text-align:left;margin-top:8px;
    display:flex;align-items:center;justify-content:space-between;gap:12px;
  }
  .hm-cart-body .shop_table td.product-price::before,
  .hm-cart-body .shop_table td.product-quantity::before,
  .hm-cart-body .shop_table td.product-subtotal::before{
    content:attr(data-title);
    font-size:8px;letter-spacing:.16em;text-transform:uppercase;color:rgba(28,43,58,.4);
  }
  .hm-cart-body .shop_table td.product-quantity .quantity{width:124px;}
  .hm-cart-body .shop_table td.actions{display:block;padding-top:18px;}
  .hm-cart-body .shop_table td.actions .coupon{display:grid;grid-template-columns:1fr;}
  .hm-cart-body .coupon input#coupon_code{width:100%;}
  .hm-cart-body .shop_table td.actions .button{width:100%;justify-content:center;margin-top:8px;}
  .hm-cart-body .cart_totals{padding:25px 22px;}
}
@media(prefers-reduced-motion:reduce){
  .hm-cart-header,.hm-cart-progress,.hm-cart-progress-track span,
  .hm-cart-body form.woocommerce-cart-form,.hm-cart-body .cart-collaterals,
  .hm-cart-body .shop_table tbody tr.cart_item{animation:none !important;}
  .hm-cart-body *{scroll-behavior:auto;}
}
