:root {
  --bg:          #fdfaf6;
  --bg-soft:     #f7f1e8;
  --surface:     #ffffff;
  --ink:         #1f1d1b;
  --ink-soft:    #4a4640;
  --ink-muted:   #8c8579;
  --line:        #ebe2d2;
  --line-soft:   #f1ead9;
  --orange:      #ed6a26;
  --orange-soft: #f59658;
  --orange-light:#fef0e6;
  --green:       #22c55e;
  --red:         #ef4444;
  --serif: 'Frank Ruhl Libre', Georgia, serif;
  --sans:  'Heebo', -apple-system, sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);
  background:var(--bg);
  color:var(--ink);
  font-size:15px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
::selection{background:var(--orange-light);color:var(--ink)}

.container{max-width:1280px;margin:0 auto;padding:0 24px}

/* ============================================
   ANNOUNCE + HEADER
   ============================================ */
.announce{
  background:var(--ink);color:#fff;
  padding:10px 24px;text-align:center;
  font-size:13px;font-weight:500;
}
.announce strong{color:var(--orange-soft)}

.header{
  position:sticky;top:0;z-index:100;
  background:rgba(253,250,246,.96);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--line-soft);
}
.header-inner{
  display:flex;align-items:center;
  justify-content:space-between;
  padding:16px 24px;
  max-width:1280px;margin:0 auto;gap:24px;
}
.logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.logo-svg{width:38px;height:38px;flex-shrink:0}
.logo-name{font-family:var(--serif);font-weight:700;font-size:22px;letter-spacing:-.5px;color:var(--ink);line-height:1}
.logo-sub{font-size:10px;color:var(--ink-muted);letter-spacing:1.5px;font-weight:600;text-transform:uppercase;margin-top:3px;display:block}
.nav{display:flex;gap:4px;flex:1;justify-content:center}
.nav-link{padding:8px 16px;font-size:14px;font-weight:500;color:var(--ink-soft);border-radius:8px;transition:all .15s}
.nav-link:hover{color:var(--ink);background:var(--bg-soft)}
.header-actions{display:flex;align-items:center;gap:4px;flex-shrink:0}
.icon-btn{
  width:40px;height:40px;border-radius:50%;
  color:var(--ink);display:grid;place-items:center;
  transition:all .15s;cursor:pointer;position:relative;
}
.icon-btn:hover{background:var(--bg-soft)}
.icon-btn svg{width:18px;height:18px}
.cart-count{
  position:absolute;top:4px;right:4px;
  background:var(--orange);color:#fff;
  font-size:10px;font-weight:700;
  min-width:16px;height:16px;padding:0 4px;
  border-radius:8px;display:grid;place-items:center;
}
.mobile-menu-btn{display:none}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb{
  padding:14px 0;
  border-bottom:1px solid var(--line-soft);
  background:var(--surface);
}
.breadcrumb-inner{
  display:flex;align-items:center;gap:8px;
  font-size:13px;color:var(--ink-muted);
}
.breadcrumb-inner a:hover{color:var(--orange)}
.breadcrumb-inner .current{color:var(--ink);font-weight:600}

/* ============================================
   CART PAGE
   ============================================ */
.cart-page{padding:48px 0 80px}
.cart-page-title{
  font-family:var(--serif);
  font-size:clamp(28px,3.5vw,40px);
  font-weight:700;letter-spacing:-.5px;
  color:var(--ink);margin-bottom:6px;
}
.cart-page-sub{font-size:14px;color:var(--ink-muted);margin-bottom:36px}
.cart-count-badge{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--orange);color:#fff;
  font-size:13px;font-weight:700;
  min-width:24px;height:24px;
  padding:0 7px;border-radius:100px;margin-right:8px;
}

/* Progress steps */
.cart-steps{
  display:flex;align-items:center;
  gap:0;margin-bottom:40px;
  background:var(--surface);
  border:1px solid var(--line-soft);
  border-radius:14px;padding:20px 28px;
}
.cart-step{
  display:flex;align-items:center;gap:10px;
  flex:1;position:relative;
}
.cart-step:not(:last-child)::after{
  content:'';
  position:absolute;
  left:0;top:50%;
  width:calc(100% - 32px);
  height:2px;
  background:var(--line-soft);
  transform:translateX(-100%);
  z-index:0;
}
.cart-step-num{
  width:32px;height:32px;border-radius:50%;
  display:grid;place-items:center;
  font-size:13px;font-weight:700;
  flex-shrink:0;position:relative;z-index:1;
  transition:all .2s;
}
.cart-step-num.done{background:var(--green);color:#fff}
.cart-step-num.active{background:var(--orange);color:#fff;box-shadow:0 4px 12px rgba(237,106,38,.3)}
.cart-step-num.pending{background:var(--bg-soft);color:var(--ink-muted);border:1.5px solid var(--line)}
.cart-step-label{
  font-size:13px;font-weight:600;
  color:var(--ink-muted);
}
.cart-step.active .cart-step-label{color:var(--orange)}
.cart-step.done .cart-step-label{color:var(--green)}
.step-divider{
  flex:1;height:2px;
  background:var(--line-soft);
  margin:0 12px;
}
.step-divider.done{background:var(--green)}

/* GRID */
.cart-grid{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:32px;
  align-items:start;
}

/* ============================================
   CART ITEMS COL
   ============================================ */
.cart-items-col{}
.cart-items-header{
  display:flex;align-items:center;
  justify-content:space-between;
  padding-bottom:16px;
  border-bottom:1.5px solid var(--line-soft);
  margin-bottom:20px;
}
.cart-items-header h2{
  font-family:var(--serif);
  font-size:20px;font-weight:700;color:var(--ink);
}
.clear-cart-btn{
  font-size:13px;font-weight:600;
  color:var(--ink-muted);
  border-bottom:1px solid var(--ink-muted);
  cursor:pointer;transition:color .15s;background:none;
}
.clear-cart-btn:hover{color:var(--red)}

/* Cart item */
.cart-item{
  display:grid;
  grid-template-columns:100px 1fr auto;
  gap:20px;
  padding:22px 0;
  border-bottom:1px solid var(--line-soft);
  position:relative;
  transition:background .2s;
}
.cart-item:last-child{border-bottom:none}

/* Hide WP's auto-rendered page-title on the cart + checkout pages —
   our custom layout has its own designed heading ("עגלת הקניות שלי")
   so the duplicate title was visual noise. Targets all the variants WP
   can emit (block theme, classic, page-builder). */
.woocommerce-cart article > h1.entry-title,
.woocommerce-cart .entry-header,
.woocommerce-cart .wp-block-post-title,
body.page-id-27 article > h1.entry-title,
body.page-id-27 .entry-header,
body.page-id-27 .wp-block-post-title,
.woocommerce-checkout article > h1.entry-title,
.woocommerce-checkout .entry-header,
.woocommerce-checkout .wp-block-post-title,
body.page-id-28 article > h1.entry-title,
body.page-id-28 .entry-header,
body.page-id-28 .wp-block-post-title { display: none !important; }
.woocommerce-cart article.page,
.woocommerce-checkout article.page,
body.page-id-27 article.page,
body.page-id-28 article.page { padding-top: 0 !important; }

.cart-item-img{
  width:120px;height:120px;
  border-radius:14px;overflow:hidden;
  background:var(--bg-soft);flex-shrink:0;
  position:relative;
  border:1px solid var(--line-soft);
  /* Customizer designs ship at varied aspects (square label, tall bottle,
     wide card). object-fit:cover crops them and the customer can't see
     their own design — switch to `contain` with a soft cream backdrop
     so the WHOLE preview is visible, with letterboxing where needed. */
  display:flex;align-items:center;justify-content:center;
  padding:6px;
  box-sizing:border-box;
}
.cart-item-img img{
  width:100%;height:100%;
  object-fit:contain !important;        /* override any inline 'cover' */
  background:transparent;
  display:block;
}
.cart-item-img-badge{
  position:absolute;bottom:6px;right:6px;
  background:rgba(0,0,0,.65);color:#fff;
  font-size:9px;font-weight:700;
  padding:3px 7px;border-radius:100px;
  backdrop-filter:blur(4px);
}

.cart-item-info{flex:1}
.cart-item-cat{
  font-size:11px;font-weight:700;
  color:var(--orange);text-transform:uppercase;
  letter-spacing:1px;margin-bottom:4px;
}
.cart-item-name{
  font-family:var(--serif);
  font-size:17px;font-weight:700;
  color:var(--ink);letter-spacing:-.2px;
  margin-bottom:8px;line-height:1.2;
}
.cart-item-engraving{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:8px;padding:5px 12px;
  font-size:12.5px;color:var(--ink-soft);
  margin-bottom:12px;
}
.cart-item-engraving svg{width:13px;height:13px;color:var(--orange);flex-shrink:0}
.cart-item-engraving-text{font-style:italic;font-family:var(--serif);font-weight:500}
.cart-item-meta{
  display:flex;gap:12px;flex-wrap:wrap;
}
.cart-item-meta-chip{
  font-size:12px;font-weight:600;
  color:var(--ink-muted);
  padding:3px 10px;
  background:var(--surface);
  border:1px solid var(--line-soft);
  border-radius:100px;
}

.cart-item-right{
  display:flex;flex-direction:column;
  align-items:flex-end;gap:16px;
}
.cart-item-price{
  font-family:var(--serif);
  font-size:22px;font-weight:700;
  color:var(--ink);letter-spacing:-.5px;line-height:1;
}
.cart-item-price .currency{font-size:14px;color:var(--ink-muted);margin-left:1px}
.cart-item-price-old{
  font-size:13px;color:var(--ink-muted);
  text-decoration:line-through;font-weight:500;
  text-align:left;margin-top:-12px;
}

.qty-ctrl{
  display:flex;align-items:center;
  border:1.5px solid var(--line);
  border-radius:100px;overflow:hidden;
  background:var(--surface);
}
.qty-btn{
  width:36px;height:36px;display:grid;place-items:center;
  font-size:18px;font-weight:400;color:var(--ink);
  cursor:pointer;transition:all .15s;border:none;background:none;
}
.qty-btn:hover{background:var(--bg-soft)}
.qty-val{
  width:40px;text-align:center;font-size:14px;
  font-weight:700;color:var(--ink);
  border-left:1px solid var(--line);border-right:1px solid var(--line);
  line-height:36px;
}

.cart-item-remove{
  font-size:12px;font-weight:600;
  color:var(--ink-muted);cursor:pointer;
  display:flex;align-items:center;gap:4px;
  transition:color .15s;
}
.cart-item-remove:hover{color:var(--red)}
.cart-item-remove svg{width:13px;height:13px}

/* Gift wrap item style */
.cart-item.gift-wrap-item{
  background:var(--orange-light);
  border-radius:14px;
  padding:18px 20px;
  border:1.5px solid #f5c9a0;
  margin-top:8px;
}
.gift-wrap-icon{
  width:100px;height:100px;
  border-radius:14px;
  background:var(--orange-light);
  border:2px dashed var(--orange);
  display:grid;place-items:center;
  font-size:36px;
}

/* Promo code input */
.promo-row{
  display:flex;gap:8px;
  margin-top:24px;
  padding:18px 0 0;
  border-top:1px solid var(--line-soft);
}
.promo-input{
  flex:1;
  border:1.5px solid var(--line);
  border-radius:100px;
  padding:12px 20px;
  font-family:var(--sans);font-size:14px;
  color:var(--ink);background:var(--surface);
  outline:none;transition:border-color .15s;
  text-align:right;
}
.promo-input:focus{border-color:var(--orange)}
.promo-input::placeholder{color:var(--ink-muted)}
.promo-apply-btn{
  background:var(--ink);color:#fff;
  border-radius:100px;padding:12px 24px;
  font-size:14px;font-weight:700;
  transition:all .2s;border:none;cursor:pointer;
}
.promo-apply-btn:hover{background:var(--orange)}
.promo-success{
  display:none;align-items:center;gap:8px;
  font-size:13px;font-weight:600;color:var(--green);
  margin-top:10px;
}
.promo-success svg{width:15px;height:15px}

/* ============================================
   ORDER SUMMARY (sticky)
   ============================================ */
.summary-col{
  position:sticky;top:88px;
}
.summary-box{
  background:var(--surface);
  border:1px solid var(--line-soft);
  border-radius:20px;
  overflow:hidden;
}
.summary-head{
  background:var(--bg-soft);
  padding:20px 24px;
  border-bottom:1px solid var(--line-soft);
}
.summary-head h3{
  font-family:var(--serif);
  font-size:18px;font-weight:700;color:var(--ink);
}
.summary-body{padding:24px}

.summary-line{
  display:flex;justify-content:space-between;
  align-items:center;
  font-size:14px;margin-bottom:14px;
  color:var(--ink-soft);
}
.summary-line strong{color:var(--ink);font-weight:600}
.summary-line .value{font-weight:600;color:var(--ink)}
.summary-line .saving{color:var(--green);font-weight:700}
.summary-line .free{color:var(--green);font-weight:700}
.summary-divider{
  height:1px;background:var(--line-soft);
  margin:18px 0;
}
.summary-total{
  display:flex;justify-content:space-between;
  align-items:baseline;margin-bottom:20px;
}
.summary-total-label{
  font-family:var(--serif);
  font-size:18px;font-weight:700;color:var(--ink);
}
.summary-total-price{
  font-family:var(--serif);
  font-size:32px;font-weight:700;
  color:var(--ink);letter-spacing:-1px;line-height:1;
}
.summary-total-price .currency{font-size:18px;color:var(--ink-muted)}

.summary-cta{
  width:100%;
  background:var(--orange);color:#fff;
  border:none;border-radius:14px;
  padding:18px 24px;font-size:17px;font-weight:700;
  cursor:pointer;display:flex;align-items:center;
  justify-content:center;gap:10px;
  transition:all .2s;
  box-shadow:0 6px 20px rgba(237,106,38,.3);
  margin-bottom:14px;
}
.summary-cta:hover{background:#d85a1a;transform:translateY(-2px);box-shadow:0 10px 28px rgba(237,106,38,.4)}
.summary-cta svg{width:18px;height:18px}

.summary-paypal{
  width:100%;
  background:#ffc439;color:#003087;
  border:none;border-radius:14px;
  padding:15px 24px;font-size:15px;font-weight:700;
  cursor:pointer;display:flex;align-items:center;
  justify-content:center;gap:8px;
  transition:all .2s;margin-bottom:18px;
}
.summary-paypal:hover{filter:brightness(1.05)}

.summary-dividers{
  display:flex;align-items:center;gap:10px;
  margin-bottom:18px;
}
.summary-dividers-line{flex:1;height:1px;background:var(--line-soft)}
.summary-dividers-text{font-size:11px;color:var(--ink-muted);font-weight:600}

.summary-trust{
  display:flex;flex-direction:column;gap:10px;
  margin-bottom:20px;
}
.summary-trust-item{
  display:flex;align-items:center;gap:10px;
  font-size:13px;color:var(--ink-soft);
}
.summary-trust-item svg{width:16px;height:16px;color:var(--orange);flex-shrink:0}

.summary-payments{
  display:flex;gap:6px;flex-wrap:wrap;justify-content:center;
  padding-top:16px;border-top:1px solid var(--line-soft);
}
.payment-chip{
  background:var(--bg-soft);border:1px solid var(--line);
  border-radius:7px;padding:5px 12px;
  font-size:11px;font-weight:700;color:var(--ink-muted);
  letter-spacing:.5px;
}

/* Estimated delivery */
.delivery-estimate{
  display:flex;align-items:center;gap:12px;
  background:var(--bg-soft);border-radius:12px;padding:14px 16px;
  margin-bottom:20px;
}
.delivery-estimate-icon{
  width:38px;height:38px;border-radius:10px;
  background:var(--orange-light);color:var(--orange);
  display:grid;place-items:center;flex-shrink:0;
}
.delivery-estimate-icon svg{width:18px;height:18px}
.delivery-estimate-text strong{display:block;font-size:13.5px;font-weight:700;color:var(--ink)}
.delivery-estimate-text span{font-size:12px;color:var(--ink-muted)}

/* ============================================
   UPSELL SUGGESTION (below cart items)
   ============================================ */
.upsell-section{
  margin-top:40px;
  padding-top:36px;
  border-top:1.5px solid var(--line-soft);
}
.upsell-title{
  font-family:var(--serif);
  font-size:22px;font-weight:700;
  color:var(--ink);margin-bottom:20px;
  letter-spacing:-.3px;
}
.upsell-title .accent{color:var(--orange);font-style:italic;font-weight:500}
.upsell-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:16px;
}
.upsell-card{
  background:var(--surface);
  border:1px solid var(--line-soft);
  border-radius:16px;overflow:hidden;
  cursor:pointer;transition:all .25s;
}
.upsell-card:hover{
  border-color:var(--orange);
  transform:translateY(-3px);
  box-shadow:0 12px 28px -12px rgba(0,0,0,.12);
}
.upsell-img{aspect-ratio:1;background:var(--bg-soft);overflow:hidden}
.upsell-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.upsell-card:hover .upsell-img img{transform:scale(1.05)}
.upsell-info{padding:12px 14px}
.upsell-name{
  font-family:var(--serif);font-size:14px;
  font-weight:700;color:var(--ink);
  margin-bottom:8px;line-height:1.25;letter-spacing:-.2px;
}
.upsell-footer{display:flex;align-items:center;justify-content:space-between}
.upsell-price{
  font-family:var(--serif);font-size:17px;
  font-weight:700;color:var(--ink);
}
.upsell-price .currency{font-size:11px;color:var(--ink-muted);margin-left:1px}
.upsell-add{
  width:30px;height:30px;border-radius:50%;
  background:var(--orange);color:#fff;
  display:grid;place-items:center;
  border:none;cursor:pointer;transition:all .2s;
}
.upsell-add:hover{background:#d85a1a;transform:scale(1.08)}
.upsell-add svg{width:14px;height:14px}

/* Empty cart */
.empty-cart{
  text-align:center;padding:80px 24px;
}
.empty-cart-icon{
  font-size:72px;margin-bottom:20px;
  filter:grayscale(.4);
}
.empty-cart h2{
  font-family:var(--serif);
  font-size:28px;font-weight:700;color:var(--ink);
  margin-bottom:10px;letter-spacing:-.3px;
}
.empty-cart p{color:var(--ink-muted);font-size:15px;margin-bottom:28px}
.empty-cart-btn{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--orange);color:#fff;
  border-radius:100px;padding:16px 32px;
  font-size:15px;font-weight:700;
  transition:all .2s;
}
.empty-cart-btn:hover{background:#d85a1a;transform:translateY(-2px)}
.empty-cart-btn svg{width:17px;height:17px}

/* ============================================
   CART DRAWER
   ============================================ */
.drawer-overlay{
  position:fixed;inset:0;
  background:rgba(31,29,27,.5);
  backdrop-filter:blur(3px);
  -webkit-backdrop-filter:blur(3px);
  z-index:300;
  opacity:0;pointer-events:none;
  transition:opacity .35s;
}
.drawer-overlay.open{opacity:1;pointer-events:all}

.cart-drawer{
  position:fixed;
  top:0;left:0;bottom:0;
  width:min(440px, 100vw);
  background:var(--bg);
  z-index:301;
  display:flex;flex-direction:column;
  transform:translateX(-100%);
  transition:transform .38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:12px 0 48px rgba(0,0,0,.18);
}
.cart-drawer.open{transform:translateX(0)}

/* Drawer header */
.drawer-header{
  display:flex;align-items:center;
  justify-content:space-between;
  padding:20px 24px;
  border-bottom:1px solid var(--line-soft);
  background:var(--surface);
  flex-shrink:0;
}
.drawer-title{
  font-family:var(--serif);
  font-size:20px;font-weight:700;
  color:var(--ink);letter-spacing:-.3px;
  display:flex;align-items:center;gap:10px;
}
.drawer-count{
  background:var(--orange);color:#fff;
  font-size:12px;font-weight:700;
  min-width:22px;height:22px;padding:0 6px;
  border-radius:100px;display:grid;place-items:center;
  font-family:var(--sans);
}
.drawer-close{
  width:38px;height:38px;border-radius:50%;
  background:var(--bg-soft);color:var(--ink);
  display:grid;place-items:center;
  cursor:pointer;transition:all .15s;
}
.drawer-close:hover{background:var(--line);transform:scale(1.05)}
.drawer-close svg{width:17px;height:17px}

/* Free shipping progress */
.drawer-shipping-bar{
  background:var(--surface);
  padding:14px 24px;
  border-bottom:1px solid var(--line-soft);
  flex-shrink:0;
}
.drawer-shipping-text{
  font-size:13px;font-weight:600;
  color:var(--ink);margin-bottom:8px;
  display:flex;align-items:center;justify-content:space-between;
}
.drawer-shipping-text .highlight{color:var(--orange)}
.drawer-shipping-text .ok{color:var(--green)}
.shipping-track{
  height:5px;background:var(--line);border-radius:100px;overflow:hidden;
}
.shipping-fill{
  height:100%;border-radius:100px;
  background:linear-gradient(90deg, var(--orange-soft), var(--orange));
  transition:width .6s ease;
}

/* Drawer items */
.drawer-items{
  flex:1;overflow-y:auto;
  padding:16px 24px;
  display:flex;flex-direction:column;gap:0;
  scrollbar-width:thin;
  scrollbar-color:var(--line) transparent;
}
.drawer-items::-webkit-scrollbar{width:4px}
.drawer-items::-webkit-scrollbar-track{background:transparent}
.drawer-items::-webkit-scrollbar-thumb{background:var(--line);border-radius:4px}

.drawer-item{
  display:flex;gap:14px;
  padding:16px 0;
  border-bottom:1px solid var(--line-soft);
  position:relative;
  transition:opacity .2s;
}
.drawer-item:last-child{border-bottom:none}
.drawer-item.removing{opacity:0;transform:translateX(-30px)}

.drawer-item-img{
  width:80px;height:80px;
  border-radius:12px;overflow:hidden;
  background:var(--bg-soft);flex-shrink:0;
}
.drawer-item-img img{width:100%;height:100%;object-fit:cover}

.drawer-item-info{flex:1;min-width:0}
.drawer-item-name{
  font-family:var(--serif);
  font-size:15px;font-weight:700;
  color:var(--ink);letter-spacing:-.2px;
  margin-bottom:4px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.drawer-item-eng{
  font-size:12px;color:var(--ink-muted);
  font-style:italic;font-family:var(--serif);
  margin-bottom:8px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.drawer-item-meta{font-size:11px;color:var(--ink-muted);font-weight:500;margin-bottom:10px}

.drawer-item-actions{
  display:flex;align-items:center;gap:10px;
}
.drawer-qty-ctrl{
  display:flex;align-items:center;
  border:1.5px solid var(--line);border-radius:100px;
  overflow:hidden;background:var(--surface);
}
.drawer-qty-btn{
  width:30px;height:30px;display:grid;place-items:center;
  font-size:16px;font-weight:400;color:var(--ink);
  cursor:pointer;transition:all .15s;border:none;background:none;
}
.drawer-qty-btn:hover{background:var(--bg-soft)}
.drawer-qty-val{
  width:32px;text-align:center;font-size:13px;font-weight:700;
  border-left:1px solid var(--line);border-right:1px solid var(--line);
  line-height:30px;
}
.drawer-item-remove{
  color:var(--ink-muted);cursor:pointer;transition:color .15s;
  display:flex;align-items:center;
}
.drawer-item-remove:hover{color:var(--red)}
.drawer-item-remove svg{width:15px;height:15px}

.drawer-item-price{
  font-family:var(--serif);
  font-size:18px;font-weight:700;
  color:var(--ink);flex-shrink:0;line-height:1;
  text-align:left;margin-top:2px;
}
.drawer-item-price .currency{font-size:12px;color:var(--ink-muted);margin-left:1px}

/* Drawer upsell */
.drawer-upsell{
  background:var(--bg-soft);
  border-top:1px solid var(--line-soft);
  padding:16px 24px;
  flex-shrink:0;
}
.drawer-upsell-title{
  font-size:12px;font-weight:700;
  color:var(--ink-muted);text-transform:uppercase;
  letter-spacing:1px;margin-bottom:12px;
}
.drawer-upsell-items{
  display:flex;gap:10px;overflow-x:auto;
  scrollbar-width:none;padding-bottom:4px;
}
.drawer-upsell-items::-webkit-scrollbar{display:none}
.drawer-upsell-item{
  flex-shrink:0;width:80px;
  display:flex;flex-direction:column;gap:5px;
  cursor:pointer;
}
.drawer-upsell-img{
  width:80px;height:80px;border-radius:12px;
  overflow:hidden;background:var(--surface);
  border:1px solid var(--line-soft);
  transition:all .2s;position:relative;
}
.drawer-upsell-img:hover{border-color:var(--orange)}
.drawer-upsell-img img{width:100%;height:100%;object-fit:cover}
.drawer-upsell-add-overlay{
  position:absolute;inset:0;
  background:rgba(237,106,38,.85);
  display:grid;place-items:center;
  opacity:0;transition:opacity .2s;
  color:#fff;
}
.drawer-upsell-item:hover .drawer-upsell-add-overlay{opacity:1}
.drawer-upsell-add-overlay svg{width:22px;height:22px}
.drawer-upsell-price{font-size:11px;font-weight:700;color:var(--ink);text-align:center}

/* Drawer footer */
.drawer-footer{
  background:var(--surface);
  border-top:1px solid var(--line-soft);
  padding:20px 24px;
  flex-shrink:0;
}
.drawer-subtotal{
  display:flex;justify-content:space-between;
  align-items:baseline;margin-bottom:6px;
}
.drawer-subtotal-label{font-size:14px;font-weight:600;color:var(--ink-soft)}
.drawer-subtotal-price{
  font-family:var(--serif);
  font-size:26px;font-weight:700;color:var(--ink);letter-spacing:-.5px;
}
.drawer-subtotal-price .currency{font-size:15px;color:var(--ink-muted)}
.drawer-saving{
  font-size:13px;color:var(--green);font-weight:600;
  margin-bottom:16px;display:flex;align-items:center;gap:6px;
}
.drawer-saving svg{width:14px;height:14px}
.drawer-checkout-btn{
  width:100%;background:var(--orange);color:#fff;
  border:none;border-radius:14px;padding:17px 24px;
  font-size:16px;font-weight:700;cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:10px;
  transition:all .2s;
  box-shadow:0 6px 20px rgba(237,106,38,.3);
  margin-bottom:10px;
}
.drawer-checkout-btn:hover{background:#d85a1a;transform:translateY(-2px)}
.drawer-checkout-btn svg{width:16px;height:16px}
.drawer-continue-btn{
  width:100%;background:transparent;color:var(--ink-soft);
  border:none;font-size:14px;font-weight:600;
  cursor:pointer;padding:8px;transition:color .15s;
}
.drawer-continue-btn:hover{color:var(--ink)}

/* ============================================
   FOOTER MINIMAL
   ============================================ */
.footer-minimal{
  background:var(--ink);color:rgba(255,255,255,.6);
  padding:28px 0;text-align:center;font-size:13px;
}
.footer-minimal a{color:rgba(255,255,255,.8);margin:0 10px}
.footer-minimal a:hover{color:var(--orange-soft)}

/* ============================================
   MOBILE
   ============================================ */
@media(max-width:900px){
  .cart-grid{grid-template-columns:1fr}
  .summary-col{position:static}
  .upsell-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .container{padding:0 16px}
  .nav{display:none}
  .mobile-menu-btn{
    display:grid;place-items:center;
    width:40px;height:40px;border-radius:50%;
    background:var(--ink);color:var(--surface);
  }
  .mobile-menu-btn svg{width:18px;height:18px}
  .cart-item{grid-template-columns:80px 1fr;gap:14px}
  .cart-item-right{
    grid-column:1/-1;flex-direction:row;
    align-items:center;justify-content:space-between;
    padding-top:12px;
    border-top:1px solid var(--line-soft);
  }
  .cart-item-price-old{margin-top:0}
  .cart-steps{padding:16px 18px;gap:0}
  .cart-step-label{display:none}
  .step-divider{margin:0 8px}
  .upsell-grid{grid-template-columns:repeat(3,1fr);gap:10px}
  .cart-drawer{width:100vw}
  .drawer-item-price{font-size:15px}
}
@media(max-width:480px){
  .upsell-grid{grid-template-columns:repeat(2,1fr)}
}
