/* ── Mini Cart Item Styles ───────────────────────── */
.mc-item { display:flex; align-items:flex-start; gap:12px; padding:14px 0; border-bottom:1px solid var(--border); }
.mc-item-name { font-size:13px; font-weight:500; line-height:1.3; margin-bottom:4px; }
.mc-item-meta { font-size:11px; color:var(--muted); margin-bottom:6px; }
.mc-item-price { font-size:13px; font-weight:600; color:var(--terra); }
.mc-qty-row { display:flex; align-items:center; gap:8px; margin-top:4px; }
.mc-q-btn {
  width:26px; height:26px; border:1.5px solid var(--border); border-radius:6px;
  background:#fff; cursor:pointer; font-size:16px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  color:var(--charcoal); transition:all .15s; flex-shrink:0; padding:0;
}
.mc-q-btn:hover { border-color:var(--charcoal); background:var(--cream); }
.mc-q-num { font-size:14px; font-weight:600; min-width:20px; text-align:center; }
.mc-remove {
  background:none; border:none; cursor:pointer; color:var(--muted);
  font-size:15px; padding:4px; flex-shrink:0; transition:color .15s; line-height:1;
}
.mc-remove:hover { color:var(--red,#c0392b); }

/* ============================================================
   VAGAREE — Complete Stylesheet
   Palette: warm cream, charcoal, terracotta
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   ============================================================ */

:root {
  --cream:      #F5F0E8;
  --cream-d:    #EDE7D9;
  --cream-dd:   #E3DAC8;
  --terra:      #C4714A;
  --terra-d:    #A85C38;
  --charcoal:   #2C2C2C;
  --charcoal-l: #444444;
  --text:       #3A3A3A;
  --muted:      #888;
  --border:     #DDD5C8;
  --white:      #FFFFFF;
  --green:      #3D8B5C;
  --red:        #C0392B;
  --shadow-s:   0 2px 10px rgba(44,44,44,.08);
  --shadow-m:   0 6px 24px rgba(44,44,44,.12);
  --shadow-l:   0 12px 48px rgba(44,44,44,.18);
  --radius:     8px;
  --radius-l:   16px;
  --transition: .22s ease;
  --hdr-h:      68px;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-size: 15px; color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; line-height: 1.6; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terra); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ── Announcement Bar ─────────────────── */
.ann-bar { background: var(--charcoal); color: rgba(255,255,255,.85); text-align: center; padding: 9px 16px; font-size: 12.5px; letter-spacing: .3px; }

/* ── Header ───────────────────────────── */
.site-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; height: var(--hdr-h); display: flex; align-items: center; transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: var(--shadow-s); }
.hdr-inner { display: flex; align-items: center; gap: 24px; }
.logo { font-family: var(--serif); font-size: 26px; font-weight: 700; letter-spacing: 5px; color: var(--charcoal); flex-shrink: 0; }

/* Nav */
.main-nav ul { display: flex; gap: 32px; }
.main-nav a { font-size: 13px; font-weight: 500; letter-spacing: .8px; text-transform: uppercase; padding: 4px 0; border-bottom: 2px solid transparent; transition: border-color var(--transition), color var(--transition); }
.main-nav a:hover, .main-nav a.active { color: var(--terra); border-bottom-color: var(--terra); }
.has-drop { position: relative; }
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown { position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(8px); background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-m); min-width: 200px; opacity: 0; visibility: hidden; transition: all var(--transition); padding: 8px 0; }
.dropdown li a { display: block; padding: 10px 20px; font-size: 14px; text-transform: none; letter-spacing: 0; border-bottom: none; }
.dropdown li a:hover { background: var(--cream); color: var(--terra); }
.drop-arrow { font-size: 10px; }

/* Header Actions */
.hdr-actions { margin-left: auto; display: flex; gap: 6px; align-items: center; }
.icon-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--charcoal); position: relative; transition: background var(--transition); }
.icon-btn:hover { background: var(--cream); color: var(--terra); }
.cart-badge { position: absolute; top: 2px; right: 2px; background: var(--terra); color: #fff; font-size: 10px; font-weight: 700; min-width: 17px; height: 17px; border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all var(--transition); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 199; }
.nav-overlay.show { display: block; }

/* ── Buttons ──────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius); font-size: 13px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; border: 2px solid transparent; transition: all var(--transition); cursor: pointer; font-family: var(--sans); text-decoration: none; }
.btn-dark   { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn-dark:hover { background: var(--terra); border-color: var(--terra); color:#fff; transform: translateY(-1px); }
.btn-terra  { background: var(--terra);    color: #fff; border-color: var(--terra); }
.btn-terra:hover { background: var(--terra-d); border-color: var(--terra-d); color:#fff; }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-sm  { padding: 9px 20px; font-size: 12px; }
.btn-lg  { padding: 15px 36px; font-size: 14px; }
.w-full  { width: 100%; }
.mt-2    { margin-top: 8px; }

/* ── Mini Cart ────────────────────────── */
.mini-cart { position: fixed; top: 0; right: -420px; width: 400px; height: 100vh; background: #fff; z-index: 1000; box-shadow: var(--shadow-l); transition: right .35s ease; display: flex; flex-direction: column; }
.mini-cart.open { right: 0; }
.mc-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 999; }
.mc-overlay.show { display: block; }
.mc-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.mc-head h3 { font-family: var(--serif); font-size: 22px; }
.mc-close { background: none; border: none; font-size: 18px; color: var(--muted); padding: 4px; }
.mc-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.mc-empty { color: var(--muted); text-align: center; padding: 40px 0; }
.mc-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mc-item-img { width: 68px; height: 68px; background: var(--cream); border-radius: var(--radius); flex-shrink: 0; overflow: hidden; }
.mc-item-img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.mc-item-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.mc-item-meta { font-size: 12px; color: var(--muted); }
.mc-item-price { font-weight: 700; color: var(--terra); font-size: 15px; }
.mc-foot { padding: 20px 24px; border-top: 1px solid var(--border); }
.mc-total-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; margin-bottom: 16px; }

/* ── Hero ─────────────────────────────── */
.hero { background: var(--cream); padding: 72px 0; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--terra); margin-bottom: 14px; }
.hero-title { font-family: var(--serif); font-size: clamp(44px, 6vw, 76px); font-weight: 600; line-height: 1.08; color: var(--charcoal); margin-bottom: 18px; }
.hero-title em { font-style: italic; color: var(--terra); }
.hero-sub { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; max-width: 420px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.hero-trust-item svg { color: var(--terra); }
.hero-img { position: relative; }
.hero-img-blob { position: absolute; inset: -10%; background: var(--cream-dd); border-radius: 50% 40% 55% 45% / 45% 55% 45% 55%; z-index: 0; }
.hero-img img { position: relative; z-index: 1; max-height: 480px; object-fit: contain; mix-blend-mode: multiply; margin: 0 auto; }

/* ── Section ──────────────────────────── */
.section { padding: 72px 0; }
.section-cream { background: var(--cream); }
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--terra); margin-bottom: 10px; }
.sec-title { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); font-weight: 600; color: var(--charcoal); }
.sec-sub { font-size: 15px; color: var(--muted); margin-top: 10px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── Product Grid ─────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }

/* ── Product Card ─────────────────────── */
.p-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); position: relative; }
.p-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.p-card-img { position: relative; background: var(--cream); aspect-ratio: 4/3; overflow: hidden; }
.p-card-img img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transition: transform .4s ease; }
.p-card:hover .p-card-img img { transform: scale(1.06); }
.p-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.badge-best { background: var(--terra); color: #fff; }
.badge-sale { background: var(--red);  color: #fff; }
.badge-new  { background: var(--charcoal); color: #fff; }
.p-wish { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; background: #fff; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-s); color: var(--muted); transition: all var(--transition); z-index: 2; }
.p-wish:hover, .p-wish.active { background: var(--terra); color: #fff; }
.p-info { padding: 18px; }
.p-cat  { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--terra); margin-bottom: 5px; }
.p-name { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--charcoal); line-height: 1.3; margin-bottom: 8px; }
.p-name a:hover { color: var(--terra); }
.p-meta { font-size: 12px; color: var(--muted); display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.p-price { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.p-sp   { font-size: 20px; font-weight: 700; color: var(--charcoal); }
.p-mrp  { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.p-disc { font-size: 11px; font-weight: 700; background: rgba(61,139,92,.12); color: var(--green); padding: 3px 8px; border-radius: 4px; }
.p-card-btns { display: flex; gap: 10px; }
.p-card-btns .btn { flex: 1; }

/* ── USP Strip ────────────────────────── */
.usp-strip { background: var(--charcoal); padding: 40px 0; }
.usp-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.usp-icon  { color: var(--terra); margin-bottom: 10px; }
.usp-item h4 { font-family: var(--serif); font-size: 17px; color: #fff; margin-bottom: 4px; }
.usp-item p  { font-size: 13px; color: rgba(255,255,255,.55); }

/* ── Category Cards ───────────────────── */
.cats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cat-card { position: relative; border-radius: var(--radius-l); overflow: hidden; background: var(--cream-dd); aspect-ratio: 3/4; display: flex; align-items: flex-end; transition: transform var(--transition); }
.cat-card:hover { transform: translateY(-4px); }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transition: transform .5s ease; }
.cat-card:hover img { transform: scale(1.05); }
.cat-info { position: relative; z-index: 1; padding: 24px; background: linear-gradient(to top, rgba(44,44,44,.75) 0%, transparent 100%); width: 100%; }
.cat-info h3 { font-family: var(--serif); font-size: 22px; color: #fff; margin-bottom: 4px; }
.cat-info span { font-size: 13px; color: rgba(255,255,255,.75); text-decoration: underline; }

/* ── Product Detail ───────────────────── */
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; padding: 48px 0 80px; }
.pdp-gallery { position: sticky; top: calc(var(--hdr-h) + 20px); }
.gallery-main { background: var(--cream); border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.g-thumb { width: 78px; height: 78px; background: var(--cream); border-radius: 8px; border: 2px solid transparent; cursor: pointer; overflow: hidden; transition: border-color var(--transition); }
.g-thumb.active, .g-thumb:hover { border-color: var(--terra); }
.g-thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

/* PDP Info */
.pdp-sku   { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.pdp-title { font-family: var(--serif); font-size: clamp(28px,4vw,40px); font-weight: 600; color: var(--charcoal); line-height: 1.15; margin-bottom: 14px; }
.pdp-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.stars { color: #F4A927; }
.pdp-price { padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.pdp-sp   { font-size: 34px; font-weight: 700; color: var(--charcoal); }
.pdp-mrp  { font-size: 16px; color: var(--muted); text-decoration: line-through; margin-left: 12px; }
.pdp-disc { font-size: 13px; font-weight: 700; background: rgba(61,139,92,.12); color: var(--green); padding: 3px 10px; border-radius: 4px; margin-left: 10px; }
.tax-note { font-size: 12px; color: var(--muted); margin-top: 6px; }
.opt-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--charcoal); margin-bottom: 10px; }
.color-opts { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.color-opt { padding: 8px 18px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 13px; cursor: pointer; transition: all var(--transition); }
.color-opt:hover, .color-opt.active { border-color: var(--charcoal); background: var(--cream); font-weight: 600; }
.qty-wrap  { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius); width: fit-content; margin-bottom: 24px; overflow: hidden; }
.qty-btn   { background: none; border: none; padding: 10px 18px; font-size: 18px; color: var(--charcoal); transition: background var(--transition); }
.qty-btn:hover { background: var(--cream); }
.qty-in    { width: 48px; text-align: center; border: none; border-inline: 1.5px solid var(--border); padding: 10px 0; font-size: 15px; font-family: var(--sans); outline: none; }
.pdp-actions { display: flex; gap: 12px; margin-bottom: 12px; }
.btn-wish-pdp { width: 52px; flex-shrink: 0; border: 2px solid var(--border); background: none; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; transition: all var(--transition); color: var(--muted); }
.btn-wish-pdp:hover { border-color: var(--terra); color: var(--terra); }
.trust-box { background: var(--cream); border-radius: var(--radius); padding: 18px; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.trust-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.trust-row svg { color: var(--terra); flex-shrink: 0; }
.feat-list { padding-left: 0; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.feat-list li { font-size: 14px; padding-left: 22px; position: relative; line-height: 1.5; }
.feat-list li::before { content: '✓'; position: absolute; left: 0; color: var(--terra); font-weight: 700; }

/* ── Specs Table ──────────────────────── */
.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table td { padding: 10px 0; }
.specs-table td:first-child { color: var(--muted); width: 40%; }
.specs-table td:last-child { font-weight: 500; }

/* ── Cart Page ────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; padding: 48px 0 80px; }
.cart-item { display: grid; grid-template-columns: 88px 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border); }
.cart-img { width: 88px; height: 88px; background: var(--cream); border-radius: var(--radius); overflow: hidden; }
.cart-img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.cart-name { font-family: var(--serif); font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.cart-var  { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.cart-rm   { background: none; border: none; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); padding: 0; transition: color var(--transition); }
.cart-rm:hover { color: var(--red); }
.cart-lp   { font-weight: 700; font-size: 18px; text-align: right; white-space: nowrap; }

/* Order Summary */
.order-summary { background: var(--cream); border-radius: var(--radius-l); padding: 28px; position: sticky; top: calc(var(--hdr-h) + 20px); }
.order-summary h2 { font-family: var(--serif); font-size: 22px; margin-bottom: 20px; }
.sum-row  { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; }
.sum-total{ display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; padding-top: 14px; border-top: 2px solid var(--border); margin-top: 4px; margin-bottom: 20px; }
.coupon-row { display: flex; gap: 10px; margin-bottom: 14px; }
.coupon-in  { flex: 1; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--sans); font-size: 14px; outline: none; }
.coupon-in:focus { border-color: var(--charcoal); }
.coupon-msg { font-size: 13px; margin-bottom: 10px; }
.c-ok  { color: var(--green); }
.c-err { color: var(--red); }

/* ── Checkout ─────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; padding: 48px 0 80px; }
.checkout-form h2 { font-family: var(--serif); font-size: 22px; color: var(--charcoal); margin-bottom: 20px; margin-top: 32px; }
.checkout-form h2:first-child { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grp { margin-bottom: 16px; }
.form-grp label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--charcoal); margin-bottom: 6px; }
.form-grp input, .form-grp select, .form-grp textarea { width: 100%; padding: 11px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--sans); font-size: 15px; color: var(--charcoal); outline: none; transition: border-color var(--transition); background: #fff; }
.form-grp input:focus, .form-grp select:focus { border-color: var(--charcoal); }
.form-grp input.err { border-color: var(--red); }
.pay-opt { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1.5px solid var(--border); border-radius: var(--radius); cursor: pointer; margin-bottom: 10px; transition: border-color var(--transition); }
.pay-opt.sel { border-color: var(--charcoal); background: var(--cream); }
.pay-opt label { font-size: 14px; font-weight: 500; cursor: pointer; }

/* ── Auth Pages ───────────────────────── */
.auth-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: var(--cream); }
.auth-card { background: #fff; border-radius: var(--radius-l); padding: 40px; width: 100%; max-width: 440px; box-shadow: var(--shadow-m); }
.auth-logo { text-align: center; font-family: var(--serif); font-size: 30px; letter-spacing: 5px; margin-bottom: 6px; }
.auth-sub  { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.auth-foot { text-align: center; margin-top: 22px; font-size: 14px; color: var(--muted); }
.auth-foot a { color: var(--terra); font-weight: 600; }

/* ── Breadcrumb ───────────────────────── */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); padding: 14px 0; }
.breadcrumb a:hover { color: var(--terra); }
.bc-sep { color: var(--border); }

/* ── Page Title ───────────────────────── */
.page-banner { background: var(--cream); border-bottom: 1px solid var(--border); padding: 32px 0; }
.page-banner h1 { font-family: var(--serif); font-size: 36px; color: var(--charcoal); }

/* ── Shop Filters ─────────────────────── */
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; padding: 40px 0 80px; }
.shop-sidebar { position: sticky; top: calc(var(--hdr-h) + 20px); }
.filter-sec   { border-bottom: 1px solid var(--border); padding-bottom: 18px; margin-bottom: 18px; }
.filter-sec h4{ font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--charcoal); margin-bottom: 12px; }
.filter-opt   { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 8px; cursor: pointer; }
.filter-opt input { accent-color: var(--terra); }
.shop-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.shop-count { font-size: 14px; color: var(--muted); }
.sort-sel { padding: 9px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--sans); font-size: 14px; outline: none; cursor: pointer; }

/* ── Reviews ──────────────────────────── */
.review-card { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 16px; }
.rv-head { display: flex; justify-content: space-between; margin-bottom: 8px; }
.rv-name { font-weight: 600; font-size: 15px; }
.rv-date { font-size: 12px; color: var(--muted); }
.rv-title{ font-weight: 600; margin-bottom: 6px; }
.rv-body { font-size: 14px; color: var(--text); line-height: 1.6; }

/* ── Alerts ───────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: 14px; }
.alert-ok  { background: rgba(61,139,92,.1);  color: #2d6a45; border: 1px solid rgba(61,139,92,.3); }
.alert-err { background: rgba(192,57,43,.08); color: #8b2218; border: 1px solid rgba(192,57,43,.2); }
.alert-inf { background: rgba(44,44,44,.06);  color: var(--charcoal); border: 1px solid var(--border); }

/* ── Toast ────────────────────────────── */
.toast-stack { position: fixed; bottom: 24px; right: 24px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--charcoal); color: #fff; padding: 13px 20px; border-radius: var(--radius); font-size: 14px; max-width: 320px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-m); animation: toastIn .28s ease; }
.toast.ok  { border-left: 4px solid var(--green); }
.toast.err { border-left: 4px solid var(--red); }
@keyframes toastIn { from { transform: translateX(110%); opacity: 0; } to { transform: none; opacity: 1; } }

/* ── Order Success ────────────────────── */
.success-page { text-align: center; padding: 80px 0; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(61,139,92,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--green); }
.success-page h1 { font-family: var(--serif); font-size: 38px; margin-bottom: 12px; }
.order-info-box { background: var(--cream); border-radius: var(--radius-l); padding: 28px; max-width: 560px; margin: 28px auto 0; text-align: left; }
.order-info-box .row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.order-info-box .row:last-child { border: none; }

/* ── Pagination ───────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pg-btn { width: 40px; height: 40px; border: 1.5px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all var(--transition); color: var(--text); background: #fff; text-decoration: none; }
.pg-btn:hover, .pg-btn.active { border-color: var(--charcoal); background: var(--charcoal); color: #fff; }

/* ── Footer ───────────────────────────── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.75); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { font-family: var(--serif); font-size: 26px; letter-spacing: 5px; color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); transition: all var(--transition); }
.socials a:hover { background: var(--terra); color: #fff; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-newsletter { display: flex; align-items: center; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.footer-newsletter strong { color: #fff; display: block; margin-bottom: 4px; }
.footer-newsletter span { font-size: 13px; color: rgba(255,255,255,.5); }
.nl-input { padding: 11px 16px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); border-radius: var(--radius); color: #fff; font-family: var(--sans); font-size: 14px; outline: none; min-width: 240px; }
.nl-input::placeholder { color: rgba(255,255,255,.35); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 13px; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 12px; }
.pay-badges { display: flex; gap: 8px; }
.pay-badges span { padding: 4px 10px; background: rgba(255,255,255,.1); border-radius: 4px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.6); }

/* ── Misc Utility ─────────────────────── */
.tc { text-align: center; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state svg { margin: 0 auto 20px; display: block; }
.empty-state h2 { font-family: var(--serif); font-size: 28px; margin-bottom: 12px; }
.empty-state p  { color: var(--muted); margin-bottom: 24px; }

/* ── Responsive ───────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img   { display: none; }
  .pdp-grid   { grid-template-columns: 1fr; }
  .pdp-gallery{ position: static; }
  .cart-layout{ grid-template-columns: 1fr; }
  .checkout-layout{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .usp-grid   { grid-template-columns: 1fr 1fr; }
  .cats-grid  { grid-template-columns: 1fr 1fr; }
  .shop-layout{ grid-template-columns: 1fr; }
  .shop-sidebar{ position: static; }
}
@media (max-width: 768px) {
  .main-nav { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background: #fff; z-index: 300; padding: 70px 28px 28px; transition: left .32s ease; box-shadow: var(--shadow-l); overflow-y: auto; }
  .main-nav.open { left: 0; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav > ul > li { border-bottom: 1px solid var(--border); padding-bottom: 6px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 8px 0 0 16px; }
  .burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(165px,1fr)); gap: 14px; }
  .mini-cart { width: 100%; right: -100%; }
  .usp-grid  { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-lp   { grid-column: 1/-1; text-align: left; }
  .hero { padding: 44px 0; }
}


/* Mini cart qty controls (all screens) */
.mc-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mc-qty-wrap { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.mc-qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.15s;
}
.mc-qty-btn:hover { background: var(--cream); }
.mc-qty-num { font-size: 14px; font-weight: 600; min-width: 22px; text-align: center; }
.mc-item-name { font-size: 13px; font-weight: 500; line-height: 1.3; }
.mc-item-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }


/* ── Mini Cart Item Styles ───────────────────────── */
.mc-item { display:flex; align-items:flex-start; gap:12px; padding:14px 0; border-bottom:1px solid var(--border); }
.mc-item-name { font-size:13px; font-weight:500; line-height:1.3; margin-bottom:4px; }
.mc-item-meta { font-size:11px; color:var(--muted); margin-bottom:6px; }
.mc-item-price { font-size:13px; font-weight:600; color:var(--terra); }
.mc-qty-row { display:flex; align-items:center; gap:8px; margin-top:4px; }
.mc-q-btn {
  width:26px; height:26px; border:1.5px solid var(--border); border-radius:6px;
  background:#fff; cursor:pointer; font-size:16px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  color:var(--charcoal); transition:all .15s; flex-shrink:0; padding:0;
}
.mc-q-btn:hover { border-color:var(--charcoal); background:var(--cream); }
.mc-q-num { font-size:14px; font-weight:600; min-width:20px; text-align:center; }
.mc-remove {
  background:none; border:none; cursor:pointer; color:var(--muted);
  font-size:15px; padding:4px; flex-shrink:0; transition:color .15s; line-height:1;
}
.mc-remove:hover { color:var(--red,#c0392b); }

/* ================================================
   MOBILE FIX — v20260528
   ================================================ */

html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
*, *::before, *::after { box-sizing: border-box !important; }
img { max-width: 100% !important; }

@media (max-width: 768px) {

  /* Ann bar */
  .ann-bar {
    font-size: 11px !important;
    padding: 7px 12px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Header */
  .hdr-inner { padding: 0 14px !important; }
  .logo { font-size: 18px !important; }

  /* Mini cart — full screen bottom sheet on mobile */
  .mini-cart {
    width: 100vw !important;
    right: -100vw !important;
    top: auto !important;
    bottom: 0 !important;
    height: 85vh !important;
    border-radius: 18px 18px 0 0 !important;
  }
  .mini-cart.open { right: 0 !important; }

  /* Mini cart qty controls */
  .mc-qty-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 6px !important;
  }
  .mc-qty-btn {
    width: 26px !important;
    height: 26px !important;
    border: 1px solid var(--border) !important;
    border-radius: 6px !important;
    background: #fff !important;
    cursor: pointer !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--charcoal) !important;
    flex-shrink: 0 !important;
  }
  .mc-qty-num {
    font-size: 14px !important;
    font-weight: 600 !important;
    min-width: 22px !important;
    text-align: center !important;
  }

  /* Checkout */
  .checkout-layout {
    display: block !important;
    padding: 0 !important;
  }
  .checkout-layout > form { margin-bottom: 20px !important; }
  .form-row { grid-template-columns: 1fr !important; gap: 0 !important; }
  .form-grp { margin-bottom: 14px !important; }
  .form-grp input, .form-grp select {
    font-size: 16px !important;
  }

  /* Payment opts */
  .pay-opt { width: 100% !important; margin-bottom: 10px !important; }

  /* Place order btn */
  #placeBtn, .btn-lg { font-size: 14px !important; padding: 15px !important; }

  /* Product grid */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 10px !important;
  }

  /* Product card */
  .p-card-body { padding: 10px !important; }
  .p-name { font-size: 13px !important; line-height: 1.3 !important; }
  .p-price { font-size: 14px !important; }

  /* PDP */
  .pdp-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .gallery-thumbs {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 8px !important;
    padding-bottom: 6px !important;
  }
  .g-thumb { flex-shrink: 0 !important; width: 64px !important; height: 64px !important; }

  /* Cart page */
  .cart-layout { grid-template-columns: 1fr !important; }
  .cart-item { gap: 10px !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .footer-newsletter { flex-direction: column !important; gap: 12px !important; }
  .footer-newsletter form { width: 100% !important; }
  .nl-input { width: 100% !important; }
  .footer-bottom { flex-direction: column !important; gap: 10px !important; text-align: center !important; }

  /* Page banner */
  .page-banner { padding: 16px 16px !important; }
  .page-banner h1 { font-size: 22px !important; }

  /* Alert */
  .alert { font-size: 13px !important; padding: 12px !important; }

  /* Buttons full width in checkout */
  .w-full { width: 100% !important; }
}

@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr !important; }
}


/* ================================================
   UJ CARD STYLES — Product Grid Cards
   ================================================ */
.products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}
.uj-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.uj-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.uj-img-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
}
.uj-slides { display: flex; width: 100%; height: 100%; transition: transform 0.4s ease; }
.uj-slide { min-width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.uj-slide img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.uj-badges { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.uj-badge-bs {
  position: absolute; top: 10px; left: 10px;
  background: #C4714A; color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
}
.uj-badge-save, .uj-save { display: none !important; }
.uj-cdots {
  position: absolute; bottom: 8px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 4px; z-index: 3;
}
.uj-cdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(0,0,0,0.2); display: block; transition: all 0.2s;
}
.uj-cdot.active { background: #1a1a1a; transform: scale(1.3); }
.uj-wish {
  position: absolute; top: 10px; right: 10px;
  background: #fff; border: none; border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.12); z-index: 3;
}
.uj-info {
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.uj-name { font-size: 14px; font-weight: 600; color: #1a1a1a; margin: 0; line-height: 1.4; }
.uj-price-row { display: flex; align-items: center; gap: 8px; }
.uj-price { font-size: 16px; font-weight: 700; color: #1a1a1a; }
.uj-mrp { font-size: 13px; color: #aaa; text-decoration: line-through; }
.uj-atc {
  width: 100%; background: #C4714A; color: #fff;
  border: none; border-radius: 8px; padding: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 6px; margin-top: auto;
  font-family: inherit; transition: background 0.2s;
}
.uj-atc:hover { background: #a85d38; }

/* Home page grid */
.p-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

/* Mobile */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
  .p-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
}
@media (max-width: 480px) {
  .products-grid, .p-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .uj-info { padding: 10px !important; }
  .uj-name { font-size: 12px !important; }
  .uj-price { font-size: 14px !important; }
  .uj-atc { font-size: 11px !important; padding: 9px !important; }
  .uj-badge-bs { font-size: 9px !important; padding: 3px 7px !important; }
}


/* ================================================
   SHOP CARD UNIFORM SIZE + TOUCH SWIPE FIX
   ================================================ */
.products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  align-items: start !important;
}
.uj-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}
.uj-img-wrap {
  aspect-ratio: 1/1 !important;
  flex-shrink: 0 !important;
}
.uj-slide img {
  object-fit: contain !important;
  padding: 10px !important;
  background: #fff !important;
}
.uj-info {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
.uj-atc { margin-top: auto !important; }

/* Fix empty image slot */
.uj-slide:empty { display: none !important; }

@media(max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}
@media(max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}


/* ================================================
   SHOP GRID ODD PRODUCTS FIX + IMAGE BG FIX
   ================================================ */

/* Center last row items when odd number of products */
.products-grid {
  justify-items: stretch !important;
}

/* Mix blend mode - removes non-white backgrounds from product images */
.uj-slide img {
  mix-blend-mode: multiply !important;
}

/* Last card in odd grid - don't stretch full width */
.products-grid .uj-card:last-child:nth-child(3n+2) {
  grid-column: 2 / 3 !important;
}
.products-grid .uj-card:last-child:nth-child(3n+1):not(:first-child) {
  grid-column: 2 / 3 !important;
}

@media(max-width: 900px) {
  .products-grid .uj-card:last-child:nth-child(odd) {
    grid-column: 1 / -1 !important;
    max-width: 50% !important;
    margin: 0 auto !important;
  }
}

/* Dots position fix - niche image ke bahar */
.uj-cdots {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  display: flex !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 8px 0 4px !important;
  background: #fff !important;
}
.uj-img-wrap {
  overflow: visible !important;
}
.uj-img-wrap-inner {
  overflow: hidden !important;
  position: relative !important;
  aspect-ratio: 1/1 !important;
  width: 100% !important;
}

/* Dots outside image - below img wrap */
.uj-cdots {
  position: static !important;
  transform: none !important;
  display: flex !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 7px 0 2px !important;
  background: #fff !important;
  bottom: auto !important;
  left: auto !important;
}
.uj-cdot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #ccc !important;
  display: inline-block !important;
  transition: all 0.2s !important;
}
.uj-cdot.active {
  background: #1a1a1a !important;
  transform: scale(1.3) !important;
}
.uj-img-wrap {
  overflow: hidden !important;
}

/* Related + All product images - contain not cover */
.uj-slide img,
.p-card-img img,
.pdp-img img,
#mainImg {
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
}

/* Related products grid - 4 col on product page */
section .products-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
}
@media(max-width:900px){
  section .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Banner black space fix */
.banner-slider-wrap { line-height:0 !important; font-size:0 !important; }
.bs-slide { line-height:0 !important; }
.bs-slide img { display:block !important; width:100% !important; height:auto !important; max-height:none !important; }
.bs-track { align-items:flex-start !important; }

/* BANNER FULL IMAGE FIX */
.banner-slider-wrap { width:100% !important; overflow:hidden !important; background:#000 !important; }
.banner-slider { width:100% !important; overflow:hidden !important; }
.bs-track { display:flex !important; transition:transform 0.5s ease !important; align-items:flex-start !important; }
.bs-slide { 
  min-width:100% !important; 
  width:100% !important; 
  flex-shrink:0 !important; 
  line-height:0 !important;
}
.bs-slide img { 
  width:100% !important; 
  height:auto !important; 
  display:block !important; 
  object-fit:fill !important;
  max-height:none !important;
}

/* BANNER BLACK SPACE PERMANENT FIX */
.banner-slider { 
  position:relative !important; 
  width:100% !important; 
  height:auto !important;
  overflow:hidden !important;
  background:#000 !important;
}
.bs-track { 
  display:flex !important; 
  height:auto !important;
  align-items:stretch !important;
  transition:transform 0.5s ease !important;
}
.bs-slide { 
  min-width:100% !important; 
  width:100% !important; 
  flex-shrink:0 !important;
  height:auto !important;
  line-height:0 !important;
  font-size:0 !important;
  display:flex !important;
  align-items:flex-start !important;
}
.bs-slide img { 
  width:100% !important; 
  height:auto !important;
  display:block !important;
  object-fit:fill !important;
  flex-shrink:0 !important;
}
.banner-slider-wrap {
  overflow:hidden !important;
  line-height:0 !important;
  font-size:0 !important;
  background:#000 !important;
}

/* Banner mobile height increase */
@media(max-width:768px){
  .bs-slide img {
    height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}
@media(max-width:480px){
  .bs-slide img {
    height: 240px !important;
  }
}

/* ===== MOBILE BANNER HEIGHT FINAL FIX ===== */
@media only screen and (max-width: 768px) {
  .banner-slider-wrap .banner-slider .bs-track .bs-slide img {
    height: 320px !important;
    min-height: 320px !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }
  .banner-slider-wrap .banner-slider .bs-track .bs-slide {
    height: 320px !important;
    min-height: 320px !important;
    overflow: hidden !important;
  }
  .banner-slider-wrap .banner-slider {
    height: 320px !important;
    min-height: 320px !important;
  }
}

/* HOME PAGE ADD TO CART FIX */
.uj-card .uj-info { position: relative !important; z-index: 5 !important; }
.uj-card .uj-atc { position: relative !important; z-index: 5 !important; pointer-events: all !important; cursor: pointer !important; }
.uj-card .uj-img-wrap { display: block !important; overflow: hidden !important; }


/* ===== MINI CART OPEN FIX - FINAL ===== */
.mini-cart {
  position: fixed !important;
  top: 0 !important;
  height: 100vh !important;
  z-index: 1000 !important;
  transition: right .35s ease !important;
}
.mini-cart.open {
  right: 0 !important;
}
@media(max-width:768px){
  .mini-cart {
    top: auto !important;
    bottom: 0 !important;
    height: 85vh !important;
    width: 100vw !important;
    right: -100vw !important;
    border-radius: 18px 18px 0 0 !important;
  }
  .mini-cart.open { right: 0 !important; }
}