/* ─── MARKETPLACE TOKENS ─────────────────────────────── */
:root {
  --g9: #051A0E;
  --g8: #0A2818;
  --g7: #1A5C38;
  --g6: #2E8B57;
  --g2: #C8E6D0;
  --g1: #EAF5EE;
  --g05: #F4FAF6;
  --au: #C8A951;
  --al: #E8CC7A;
  --a2: #F5EDCC;
  --a1: #FDF8EC;
  --e9: #3B2507;
  --ec: #C45B0A;
  --rd: #C0392B;
  --ra: #FDEDEC;
  --wh: #FFFFFF;
  --mk-bg: #F6F7F3;
  --bg2: #ECEEE8;
  --bg3: #E2E4DC;
  --tx: #17180F;
  --t2: #4A4C42;
  --t3: #8E9082;
  --t4: #B8BAB0;
  --br: #D8DAD0;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Syne', system-ui, sans-serif;
  --s1: 0 1px 3px rgba(0, 0, 0, .06);
  --s2: 0 4px 18px rgba(0, 0, 0, .09);
  --s3: 0 16px 48px rgba(0, 0, 0, .14);
}

/* ─── MARKETPLACE BASE RESET ─────────────────────────── */
.mk-page {
  font-family: var(--fb);
  color: var(--tx);
  font-size: 14px;
  line-height: 1.6
}

.mk-page input,
.mk-page button,
.mk-page select,
.mk-page textarea {
  font-family: var(--fb)
}

/* ─── KENTE ──────────────────────────────────────────── */
.mk-kente {
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(90deg,
      var(--g7) 0 13px, var(--au) 13px 21px, var(--g7) 21px 34px,
      var(--e9) 34px 41px, var(--au) 41px 51px, var(--g7) 51px 64px,
      var(--ec) 64px 72px, var(--g7) 72px 86px)
}

.mk-kente-thin {
  height: 3px;
  opacity: .45;
  background: repeating-linear-gradient(90deg,
      var(--au) 0 9px, var(--g2) 9px 16px, var(--al) 16px 23px, var(--g2) 23px 30px)
}

/* ─── HERO OVERRIDE ──────────────────────────────────── */
.mk-page .page-hero {
  position: relative;
  background: var(--g9);
  overflow: hidden;
  padding: 72px 80px 64px
}

.mk-page .page-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35
}

.mk-page .page-hero .container {
  position: relative;
  z-index: 3
}

/* Currency toggle */
.cur-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  padding: 3px;
  align-items: center;
  gap: 0
}

.cur-btn {
  padding: 5px 13px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: all .18s
}

.cur-btn.on {
  background: var(--au);
  color: var(--g9);
  font-weight: 700
}

/* Country flag badges */
.hero-flags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 20px
}

.h-flag {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  padding: 4px 11px 4px 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .8)
}

.h-flag img {
  width: 16px;
  height: 11px;
  border-radius: 2px;
  display: block
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.mk-wrap {
  display: flex;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 36px 36px 80px;
  background: var(--mk-bg)
}

/* ─── SIDEBAR ────────────────────────────────────────── */
.mk-sidebar {
  width: 220px;
  flex-shrink: 0;
  margin-right: 28px;
  position: relative
}

.mk-sidebar-sticky {
  position: sticky;
  top: 80px
}

.sb-section {
  margin-bottom: 24px
}

.sb-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--br)
}

/* Profile banner */
.profile-banner {
  background: var(--g8);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07)
}

.pb-kente {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(180deg, var(--g7) 0 10px, var(--au) 10px 16px, var(--g7) 16px 26px, var(--e9) 26px 31px, var(--au) 31px 39px, var(--g7) 39px 49px, var(--ec) 49px 55px, var(--g7) 55px 65px)
}

.pb-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(200, 169, 81, .15);
  border: 1px solid rgba(200, 169, 81, .28);
  border-radius: 20px;
  padding: 2px 9px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--al);
  margin-bottom: 7px
}

.pb-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px
}

.pb-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .38)
}

/* Filters */
.mk-filter-group {
  margin-bottom: 18px
}

.mk-filter-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 8px;
  display: block
}

.mk-filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  cursor: pointer
}

.mk-filter-option input[type=checkbox] {
  width: 14px;
  height: 14px;
  accent-color: var(--g7);
  cursor: pointer
}

.mk-filter-option input[type=radio] {
  width: 14px;
  height: 14px;
  accent-color: var(--g7);
  cursor: pointer
}

.mk-filter-option span {
  font-size: 13px;
  color: var(--t2)
}

.mk-filter-option.selected span {
  color: var(--g7);
  font-weight: 600
}

.filter-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px
}

.fpill {
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  border: 1.5px solid var(--br);
  background: var(--wh);
  color: var(--t2);
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap
}

.fpill.on {
  background: var(--g7);
  border-color: var(--g7);
  color: #fff;
  font-weight: 600
}

.fpill.au-on {
  background: var(--au);
  border-color: var(--au);
  color: var(--g9)
}

/* Rating stars filter */
.star-filter {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--t2)
}

.stars-mini {
  color: var(--au);
  font-size: 12px;
  letter-spacing: -1px
}

/* ─── MAIN CONTENT ───────────────────────────────────── */
.mk-content {
  flex: 1;
  min-width: 0
}

/* Toolbar */
.mk-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px
}

.result-count {
  font-size: 13px;
  color: var(--t2)
}

.result-count strong {
  color: var(--tx);
  font-weight: 600
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px
}

.sort-select {
  padding: 7px 12px;
  border-radius: 9px;
  font-size: 13px;
  border: 1px solid var(--br);
  background: var(--wh);
  color: var(--tx);
  cursor: pointer;
  outline: none
}

.view-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--br);
  background: var(--wh);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.view-btn.on {
  background: var(--g7);
  border-color: var(--g7)
}

.view-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--t3);
  fill: none;
  stroke-width: 1.6
}

.view-btn.on svg {
  stroke: #fff
}

/* Active filters bar */
.active-filters {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px
}

.af-label {
  font-size: 11px;
  color: var(--t3);
  font-weight: 500
}

.af-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: var(--g1);
  border: 1px solid var(--g2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--g7)
}

.af-x {
  cursor: pointer;
  opacity: .7;
  font-size: 12px;
  line-height: 1
}

.af-clear {
  font-size: 11px;
  font-weight: 600;
  color: var(--rd);
  cursor: pointer;
  margin-left: 4px
}

/* ─── PRODUCT GRID ───────────────────────────────────── */
.mk-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px
}

.mk-product-grid.list-view {
  grid-template-columns: 1fr
}

/* Product card */
.pc {
  background: var(--wh);
  border-radius: 16px;
  border: 1px solid var(--br);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  position: relative;
  cursor: pointer
}

.pc:hover {
  box-shadow: var(--s2);
  transform: translateY(-2px)
}

/* Category accent top */
.pc-accent {
  height: 3px;
  width: 100%
}

.acc-clubs {
  background: linear-gradient(90deg, var(--g7), var(--g6))
}

.acc-balls {
  background: linear-gradient(90deg, var(--au), var(--al))
}

.acc-apparel {
  background: linear-gradient(90deg, #1A3A5C, #2356A0)
}

.acc-shoes {
  background: linear-gradient(90deg, #5A2D82, #8B5CF6)
}

.acc-accessories {
  background: linear-gradient(90deg, var(--ec), var(--au))
}

.acc-bags {
  background: linear-gradient(90deg, var(--g8), var(--g7))
}

/* Image */
.pc-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--bg2)
}

.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s
}

.pc:hover .pc-img img {
  transform: scale(1.04)
}

.pc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px
}

.badge-new {
  background: var(--g7);
  color: #fff
}

.badge-top {
  background: var(--au);
  color: var(--g9)
}

.badge-sale {
  background: var(--rd);
  color: #fff
}

.badge-pro {
  background: var(--g9);
  color: var(--al)
}

.pc-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  border: 1px solid var(--br)
}

.pc-wish svg {
  width: 14px;
  height: 14px;
  stroke: var(--t3);
  fill: none;
  stroke-width: 2
}

.pc-wish.liked {
  background: var(--rd)
}

.pc-wish.liked svg {
  stroke: #fff;
  fill: #fff
}

.pc-body {
  padding: 16px 16px 0;
  flex: 1
}

.pc-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 4px
}

.pc-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 4px;
  line-height: 1.3
}

.pc-desc {
  font-size: 12px;
  color: var(--t2);
  line-height: 1.55;
  margin-bottom: 10px
}

.pc-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px
}

.pc-stars {
  color: var(--au);
  font-size: 12px;
  letter-spacing: -1px
}

.pc-rcount {
  font-size: 11px;
  color: var(--t3)
}

.pc-meta {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 10px
}

.pc-tag {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--bg2);
  color: var(--t2)
}

.pc-tag.g {
  background: var(--g1);
  color: var(--g7)
}

.pc-tag.au {
  background: var(--a1);
  color: #7A5C0A
}

.pc-footer {
  padding: 14px 16px;
  border-top: 1px solid var(--br);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto
}

.pc-price {
  display: flex;
  flex-direction: column
}

.pc-price-main {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 600;
  color: var(--g7);
  line-height: 1
}

.pc-price-orig {
  font-size: 11px;
  color: var(--t3);
  text-decoration: line-through
}

.pc-price-sub {
  font-size: 10px;
  color: var(--t3)
}

.pc-cta {
  padding: 8px 16px;
  background: var(--g7);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
  font-family: var(--fb)
}

.pc-cta:hover {
  background: var(--g6)
}

.pc-cta.added {
  background: var(--au);
  color: var(--g9)
}

/* ─── LIST VIEW CARD ─────────────────────────────────── */
.pc.lv {
  flex-direction: row;
  align-items: stretch;
  border-radius: 12px
}

.pc.lv .pc-accent {
  width: 4px;
  height: auto;
  min-height: 100%;
  flex-shrink: 0;
  border-radius: 12px 0 0 12px
}

.pc.lv .pc-img {
  width: 160px;
  height: auto;
  min-height: 130px;
  flex-shrink: 0;
  border-radius: 0
}

.pc.lv .pc-body {
  padding: 16px;
  flex: 1
}

.pc.lv .pc-name {
  font-size: 16px
}

.pc.lv .pc-desc {
  display: block
}

.pc.lv .pc-footer {
  border-top: none;
  border-left: 1px solid var(--br);
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 140px
}

/* ─── FEATURED SECTION ───────────────────────────────── */
.featured-strip {
  background: var(--g9);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07)
}

.fs-kente-v {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: repeating-linear-gradient(180deg, var(--g7) 0 10px, var(--au) 10px 16px, var(--g7) 16px 26px, var(--e9) 26px 31px, var(--au) 31px 39px, var(--g7) 39px 49px, var(--ec) 49px 55px, var(--g7) 55px 65px)
}

.fs-adinkra {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 130px;
  height: 130px;
  opacity: .055;
  pointer-events: none
}

.fs-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--al);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1
}

.fs-tag::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--au);
  border-radius: 1px;
  display: block
}

.fs-h {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  position: relative;
  z-index: 1
}

.fs-h em {
  color: var(--al);
  font-style: italic
}

.fs-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
  position: relative;
  z-index: 1
}

.fs-cards {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  position: relative;
  z-index: 1;
  scrollbar-width: none
}

.fs-cards::-webkit-scrollbar {
  display: none
}

.fs-card {
  flex-shrink: 0;
  width: 180px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: background .2s
}

.fs-card:hover {
  background: rgba(255, 255, 255, .12)
}

.fs-card-img {
  height: 110px;
  overflow: hidden
}

.fs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.fs-card-body {
  padding: 11px 13px
}

.fs-card-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.3
}

.fs-card-price {
  font-family: var(--fd);
  font-size: 16px;
  color: var(--al);
  font-weight: 600
}

/* ─── PRO DEALS BANNER ───────────────────────────────── */
.pro-banner {
  background: linear-gradient(125deg, var(--e9) 0%, #1A0E02 100%);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 28px;
  border: 1px solid rgba(200, 169, 81, .12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.pb2-left {
  position: relative;
  z-index: 1
}

.pb2-eye {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--al);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 7px
}

.pb2-eye::before {
  content: '';
  width: 12px;
  height: 2px;
  background: var(--au);
  border-radius: 1px;
  display: block
}

.pb2-h {
  font-family: var(--fd);
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px
}

.pb2-h em {
  color: var(--al);
  font-style: italic
}

.pb2-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6
}

.pb2-cta {
  padding: 10px 20px;
  background: var(--au);
  color: var(--g9);
  border: none;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  font-family: var(--fb)
}

/* ─── PAGINATION ─────────────────────────────────────── */
.mk-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px
}

.pg-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid var(--br);
  background: var(--wh);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  transition: all .15s
}

.pg-btn.on {
  background: var(--g7);
  border-color: var(--g7);
  color: #fff;
  font-weight: 700
}

.pg-btn:hover:not(.on) {
  background: var(--bg2)
}

.pg-btn.arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--t3);
  fill: none;
  stroke-width: 2
}

/* ─── CART DRAWER ────────────────────────────────────── */
.mk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s
}

.mk-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  background: var(--wh);
  z-index: 301;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.32, .72, 0, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, .15)
}

.cart-drawer.open {
  transform: translateX(0)
}

/* Cart header */
.cart-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--br);
  background: var(--g9);
  flex-shrink: 0
}

.cart-hdr-title {
  font-family: var(--fd);
  font-size: 20px;
  color: #fff;
  font-weight: 600
}

.cart-hdr-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  margin-top: 2px
}

.cart-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.cart-close svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, .7);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round
}

/* Steps indicator */
.cart-steps {
  display: flex;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--br);
  gap: 0;
  flex-shrink: 0
}

.cs {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative
}

.cs-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--br);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--t3);
  background: var(--wh);
  flex-shrink: 0;
  transition: all .2s
}

.cs-dot.done {
  background: var(--g7);
  border-color: var(--g7);
  color: #fff
}

.cs-dot.active {
  border-color: var(--g7);
  color: var(--g7)
}

.cs-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--t3);
  margin-left: 5px;
  white-space: nowrap
}

.cs-label.active,
.cs-label.done {
  color: var(--g7);
  font-weight: 600
}

.cs-line {
  flex: 1;
  height: 1.5px;
  background: var(--br);
  margin: 0 6px;
  transition: background .2s
}

.cs-line.done {
  background: var(--g7)
}

/* Cart body */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0
}

.cart-screen {
  display: none;
  flex-direction: column;
  height: 100%
}

.cart-screen.active {
  display: flex
}

/* Cart items */
.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--br)
}

.cart-item:last-child {
  border-bottom: none
}

.ci-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg2)
}

.ci-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.ci-info {
  flex: 1
}

.ci-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 2px;
  line-height: 1.3
}

.ci-cat {
  font-size: 11px;
  color: var(--t3);
  margin-bottom: 6px
}

.ci-qty {
  display: flex;
  align-items: center;
  gap: 8px
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid var(--br);
  background: var(--wh);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--t2);
  line-height: 1
}

.qty-val {
  font-size: 13px;
  font-weight: 600;
  min-width: 20px;
  text-align: center
}

.ci-price {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 600;
  color: var(--g7);
  flex-shrink: 0;
  padding-top: 2px
}

.ci-remove {
  font-size: 11px;
  color: var(--rd);
  cursor: pointer;
  margin-top: 5px;
  display: inline-block
}

.cart-empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 30px;
  color: var(--t3)
}

.cart-empty-icon {
  font-size: 48px;
  margin-bottom: 14px;
  opacity: .5
}

.cart-empty-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 6px
}

.cart-empty-sub {
  font-size: 13px;
  line-height: 1.6
}

/* Cart summary */
.cart-summary {
  padding: 16px 22px;
  border-top: 1px solid var(--br);
  flex-shrink: 0
}

.cs-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--t2);
  margin-bottom: 7px
}

.cs-row.total {
  font-size: 16px;
  font-weight: 700;
  color: var(--tx);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--br)
}

.pay-method-strip {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 12px
}

.pm-chip {
  font-size: 10px;
  background: var(--bg2);
  border: 1px solid var(--br);
  color: var(--t3);
  padding: 3px 9px;
  border-radius: 5px;
  font-weight: 500
}

.cart-cta-btn {
  width: 100%;
  padding: 14px;
  background: var(--g7);
  color: #fff;
  border: none;
  border-radius: 11px;
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s
}

.cart-cta-btn:hover {
  background: var(--g6)
}

.cart-cta-btn.gold {
  background: var(--au);
  color: var(--g9)
}

.cancel-note {
  text-align: center;
  font-size: 11px;
  color: var(--t3);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px
}

.cancel-note::before {
  content: '✓';
  color: var(--g7);
  font-weight: 700
}

/* Checkout forms */
.checkout-form {
  flex: 1;
  overflow-y: auto;
  padding: 22px
}

.cf-section {
  margin-bottom: 22px
}

.cf-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--br)
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px
}

.cf-row.full {
  grid-template-columns: 1fr
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.cf-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--t3)
}

.cf-input {
  padding: 10px 12px;
  border: 1px solid var(--br);
  border-radius: 9px;
  font-size: 13px;
  color: var(--tx);
  outline: none;
  background: var(--wh);
  transition: border .15s
}

.cf-input:focus {
  border-color: var(--g7);
  box-shadow: 0 0 0 3px rgba(26, 92, 56, .1)
}

.cf-select {
  padding: 10px 12px;
  border: 1px solid var(--br);
  border-radius: 9px;
  font-size: 13px;
  color: var(--tx);
  outline: none;
  background: var(--wh);
  cursor: pointer;
  width: 100%
}

/* Payment options */
.pay-options {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid var(--br);
  border-radius: 10px;
  cursor: pointer;
  transition: all .15s
}

.pay-option.selected {
  border-color: var(--g7);
  background: var(--g05)
}

.pay-option input[type=radio] {
  accent-color: var(--g7);
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.pay-option-icon {
  width: 36px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0
}

.poi-mtn {
  background: #FFCC03;
  color: #1A1A1A
}

.poi-orange {
  background: #FF6600;
  color: #fff
}

.poi-airtel {
  background: #E20010;
  color: #fff
}

.poi-card {
  background: var(--bg2);
  color: var(--t2)
}

.pay-option-info {
  flex: 1
}

.poi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--tx)
}

.poi-sub {
  font-size: 11px;
  color: var(--t3)
}

/* Confirmation */
.confirm-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px
}

.confirm-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--g1);
  border: 2px solid var(--g2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px
}

.confirm-h {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 600;
  color: var(--g7);
  margin-bottom: 8px
}

.confirm-sub {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 6px
}

.confirm-ref {
  font-size: 12px;
  font-weight: 600;
  color: var(--t3)
}

.confirm-details {
  background: var(--g05);
  border: 1px solid var(--g2);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px 0;
  text-align: left;
  width: 100%
}

.cd-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
  color: var(--t2)
}

.cd-row:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--tx);
  padding-top: 6px;
  border-top: 1px solid var(--g2)
}

.confirm-cta {
  width: 100%;
  padding: 12px;
  background: var(--g7);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px
}

/* ─── CART TRIGGER (header) ──────────────────────────── */
.mk-cart-trigger {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 10px;
  flex-shrink: 0
}

.mk-cart-trigger svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, .8);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.mk-cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--au);
  color: var(--g9);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--g9);
  display: none
}

.mk-cart-badge.show {
  display: flex
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media(max-width:1024px) {
  .mk-wrap {
    flex-direction: column;
    padding: 24px 20px 60px
  }

  .mk-sidebar {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px
  }

  .mk-sidebar-sticky {
    position: static
  }

  .mk-product-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:640px) {
  .mk-product-grid {
    grid-template-columns: 1fr
  }

  .mk-page .page-hero {
    padding: 48px 24px 40px
  }

  .cart-drawer {
    width: 100%
  }
}