:root{
  --hab-yellow:#FEF926;
  --hab-black:#000;
  --hab-white:#fff;
  --hab-muted:rgba(255,255,255,.65);
  --hab-border:rgba(255,255,255,.14);
  --hab-panel:#0b0b0b;
}

/* Promo bar */
.hab-promo{
  background:var(--hab-yellow);
  color:#000;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  line-height:1;
  overflow:hidden;
}
.hab-promo__inner{
  display:flex;
  white-space:nowrap;
  gap:56px;
  padding:10px 0;
  animation: habMarquee 22s linear infinite;
}
.hab-promo__item{ flex:0 0 auto; }
@keyframes habMarquee{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* Force black header background (override OceanWP) */
.hab-header,
#site-header,
#site-header-inner,
#site-header-inner-wrap{
  background:var(--hab-black) !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
}

/* Header layout (stable flex) */
.hab-header__bar{
  max-width:1350px;
  margin:0 auto;
  padding:0px 18px;
  display:flex;
  align-items:center;
  gap:16px;
}

/* Icons */
.hab-icon{
  width:18px;
  height:18px;
  display:block;
  fill:currentColor;
}
.hab-icon-btn{
  color:var(--hab-white);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:10px;
  text-decoration:none;
  background:transparent;
  border:0;
  cursor:pointer;
}
.hab-icon-btn:hover{ color:var(--hab-muted); }

/* Mobile left controls hidden on desktop */
.hab-left{ display:none; gap:6px; align-items:center; }

/* Logo */
.hab-logo{ flex:0 0 auto; }
.hab-logo img{ max-height:66px; width:auto; }

/* Desktop menu */
.hab-nav--desktop{ flex:1 1 auto; display:flex; justify-content:center; }
.hab-nav--desktop ul{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  list-style:none;
  margin:0;
  padding:0;
}
.hab-nav--desktop a{
  color:var(--hab-white);
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  text-decoration:none;
  padding:8px 4px;
  white-space:nowrap;
}
.hab-nav--desktop a:hover{ color:var(--hab-muted); }

/* Search (smaller width) */
.hab-searchbox{
  position:relative;
  width:100%;
  background:#0d0d0d;
  border:1px solid var(--hab-border);
  border-radius:12px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
}
.hab-searchbox--desktop{
  flex:0 0 220px;         /* <<< adjust width here */
  max-width:220px;
  margin-left:14px;
}
.hab-searchbox__icon{ color:var(--hab-white); display:flex; }
.hab-searchbox__input{
  width:100%;
  border:0 !important;
  outline:none !important;
  background:transparent !important;
  color:var(--hab-white) !important;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.hab-searchbox__input::placeholder{
  color:rgba(255,255,255,.55);
  text-transform:uppercase;
}
.hab-searchbox__clear{
  border:0;
  background:transparent;
  color:var(--hab-white);
  font-size:18px;
  line-height:1;
  cursor:pointer;
  opacity:.7;
}
.hab-searchbox__clear:hover{ opacity:1; }

.hab-searchbox__dropdown{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  right:0;
  background:var(--hab-panel);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  overflow:hidden;
  z-index:9999;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
}
.hab-searchbox__hint{
  padding:12px 14px;
  color:rgba(255,255,255,.65);
  font-size:13px;
}
.hab-searchbox__results{
  list-style:none;
  margin:0;
  padding:0;
  max-height:360px;
  overflow:auto;
}
.hab-searchbox__item{
  display:flex;
  gap:12px;
  padding:12px 14px;
  text-decoration:none;
  color:var(--hab-white);
  align-items:center;
}
.hab-searchbox__item:hover{ background:rgba(255,255,255,.06); }
.hab-searchbox__thumb{
  width:44px;
  height:44px;
  border-radius:10px;
  overflow:hidden;
  flex:0 0 44px;
  background:rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:center;
}
.hab-searchbox__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hab-searchbox__meta{ display:flex; flex-direction:column; gap:4px; min-width:0; }
.hab-searchbox__title{
  font-size:12px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.hab-searchbox__price{ font-size:12px; color:rgba(255,255,255,.75); }

/* Right actions */
.hab-actions{ flex:0 0 auto; display:flex; align-items:center; gap:12px; margin-left:10px; }
.hab-cart{ position:relative; }
.hab-cart__count{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:var(--hab-yellow);
  color:#000;
  font-size:11px;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}

/* =========================
   Mobile Drawer (full height + bottom-fixed CTA)
========================= */
.hab-drawer[hidden]{ display:none; }
.hab-drawer{
  position:fixed;
  inset:0;
  z-index:99999;
}
.hab-drawer__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}

/* Panel is a flex column; content scrolls; actions stay at bottom */
.hab-drawer__panel{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(254,249,38,.18), transparent 55%),
    radial-gradient(700px 500px at 90% 30%, rgba(255,255,255,.08), transparent 60%),
    #050505;
  display:flex;
  flex-direction:column;
  height:100vh;
  max-height:100vh;
}

.hab-drawer__top{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 14px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.hab-drawer__title{
  color:#fff;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
}
.hab-drawer__close{
  width:38px;
  height:38px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}

/* SCROLL AREA */
.hab-drawer__content{
  flex:1 1 auto;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  padding:14px;
  padding-bottom: 170px; /* so tiles never hide behind CTA */
}

/* Drawer search */
.hab-searchbox--drawer{
  border-radius:16px;
  background: rgba(255,255,255,.04);
}
.hab-searchbox--drawer .hab-searchbox__dropdown{
  top: calc(100% + 8px);
}

/* Categories grid */
.hab-drawer__section{ margin-top:16px; }
.hab-drawer__section-title{
  color:rgba(255,255,255,.55);
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:900;
  margin:0 0 10px;
}
.hab-drawer__links{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.hab-tile{
  display:flex;
  gap:10px;
  align-items:center;
  padding:14px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  text-decoration:none;
  color:#fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.hab-tile:hover{
  border-color: rgba(254,249,38,.35);
  box-shadow: 0 14px 34px rgba(0,0,0,.42);
}
.hab-tile__icon{
  width:38px;
  height:38px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(254,249,38,.22);
  background: radial-gradient(circle at 30% 30%, rgba(254,249,38,.20), rgba(255,255,255,.04));
  flex:0 0 38px;
  font-weight:900;
}
.hab-tile__text{
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:11px;
  line-height:1.1;
}

/* Bottom CTA pinned */
.hab-drawer__actions{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:14px;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
  border-top:1px solid rgba(254,249,38,.18);
}
.hab-drawer__action-row{
  display:flex;
  gap:12px;
}
.hab-action-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:14px;
  padding:14px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  line-height:1;
}
.hab-action-btn--half{
  flex:1;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(254,249,38,.28);
  color:#fff;
}
.hab-action-btn--half:hover{
  background:rgba(254,249,38,.12);
  border-color:rgba(254,249,38,.55);
}
.hab-action-btn--full{
  margin-top:12px;
  background:#FEF926;
  border:1px solid #FEF926;
  color:#000;
}
.hab-action-btn--full:hover{ filter:brightness(.96); }

/* Mobile header behavior */
@media (max-width:980px){
  .hab-left{ display:flex; }
  .hab-nav--desktop{ display:none; }
  .hab-searchbox--desktop{ display:none; }
  .hab-logo{ margin:0 auto; }
}
/* =========================
   HOLD & BOLD FOOTER
   Colors: #000000 / #FFFFFF / #FEF926
   Font: Poppins
========================= */

.hab-footer,
.hab-footer *{
  font-family: "Poppins", sans-serif !important;
}

.hab-footer{
  background:#000000;
  color:#FFFFFF;
  border-top:1px solid rgba(254,249,38,.18);
}

.hab-footer__inner{
  max-width:1350px;
  margin:0 auto;
  padding:48px 18px 22px;
}

.hab-footer__grid{
  display:grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.35fr;
  gap:28px;
}

.hab-footer__logo{
  display:inline-block;
  text-decoration:none;
}

.hab-footer__wordmark{
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:14px;
  color:#FFFFFF;
}

.hab-footer__brand .custom-logo{
  max-height:44px;
  width:auto;
}

.hab-footer__tagline{
  margin:4px 0 16px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1.65;
  max-width:360px;
}

.hab-footer__social{
  display:flex;
  gap:10px;
}

.hab-social{
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid rgba(254,249,38,.22);
  background:rgba(255,255,255,.03);
  color:#FFFFFF;
  text-decoration:none;
}

.hab-social svg{
  width:18px;
  height:18px;
  display:block;
  fill:currentColor;
}

.hab-social:hover{
  background:rgba(254,249,38,.12);
  border-color:rgba(254,249,38,.55);
  color:#FEF926;
}

.hab-footer__title{
  margin:0 0 12px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#FFFFFF;
}

.hab-footer__links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.hab-footer__links a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:11px;
}

.hab-footer__links a:hover{
  color:#FEF926;
}

.hab-footer__muted{
  margin:0 0 12px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1.6;
}

.hab-footer__form{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.hab-footer__input{
  flex:1;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(254,249,38,.22);
  background:rgba(255,255,255,.03);
  color:#FFFFFF;
  padding:0 14px;
  outline:none;
}

.hab-footer__input::placeholder{
  color:rgba(255,255,255,.55);
}

.hab-footer__btn{
  height:46px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid #FEF926;
  background:#FEF926;
  color:#000000;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  cursor:pointer;
}

.hab-footer__btn:hover{
  filter:brightness(.96);
}

.hab-footer__note{
  margin-top:10px;
  color:rgba(255,255,255,.55);
  font-size:12px;
  line-height:1.5;
}

/* Payments row (image) */
.hab-footer__pay{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.hab-footer__paylabel{
  color:rgba(255,255,255,.70);
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
}

.hab-footer__payimg img{
  display:block;
  max-width:420px;
  width:100%;
  height:auto;
  opacity:.95;
}

/* Bottom bar */
.hab-footer__bottom{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.hab-footer__copy{
  color:rgba(255,255,255,.55);
  font-size:12px;
}

.hab-footer__policies{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.hab-footer__policies a{
  color:rgba(255,255,255,.70);
  text-decoration:none;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
}

.hab-footer__policies a:hover{
  color:#FEF926;
}

/* Responsive */
@media (max-width: 980px){
  .hab-footer__grid{
    grid-template-columns: 1fr 1fr;
  }
  .hab-footer__pay{
    flex-direction:column;
    align-items:flex-start;
  }
  .hab-footer__payimg img{
    max-width:520px;
  }
}

@media (max-width: 560px){
  .hab-footer__grid{
    grid-template-columns: 1fr;
  }
  .hab-footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}
/* Footer brand logo */
.hab-footer__logo-img{
  max-width:250px;
  height:auto;
  display:block;
  margin-bottom:5px;
}

/* Social icons */
.hab-footer__social{
  display:flex;
  gap:12px;
  margin-top:10px;
}
.hab-social{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(254,249,38,.25);
  color:#fff;
}
.hab-social svg{
  width:18px;
  height:18px;
  fill:#fff;
}
.hab-social:hover{
  background:#FEF926;
  color:#000;
}

/* Marketplace logos */
.hab-footer__marketplaces{
  display:flex;
  gap:16px;
  margin-top:14px;
}
.hab-footer__marketplaces img{
  height:50px;
  width:auto;
  filter:brightness(1.1);
}
/* =========================
   FOOTER MOBILE LAYOUT FIX
========================= */
@media (max-width: 560px){

  /* Grid becomes 2 columns: (Brand spans 2) + (Shop + Support side-by-side) + (Newsletter spans 2) */
  .hab-footer__grid{
    grid-template-columns: 1fr 1fr !important;
    gap:18px !important;
  }

  /* Brand block centered + spans full width */
  .hab-footer__brand{
    grid-column: 1 / -1 !important;
    text-align:center !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .hab-footer__logo{
    display:flex !important;
    justify-content:center !important;
  }

  .hab-footer__logo-img{
    margin:0 auto 12px !important;
  }

  .hab-footer__tagline{
    text-align:center !important;
    margin:10px auto 14px !important;
    max-width: 320px !important;
  }

  .hab-footer__social{
    justify-content:center !important;
  }

  .hab-footer__marketplaces{
    justify-content:center !important;
    flex-wrap:wrap !important;
  }

  /* SHOP + SUPPORT become 2 columns */
  .hab-footer__col:nth-child(2),
  .hab-footer__col:nth-child(3){
    grid-column:auto !important;
  }

  /* Make lists tighter so 2-col looks clean */
  .hab-footer__links{
    gap:8px !important;
  }

  /* Newsletter spans full width */
  .hab-footer__newsletter{
    grid-column: 1 / -1 !important;
  }
}
/* =========================================================
   APP CART UI (NO DEFAULT WOO LOOK)
   Scope: .app-cart only
========================================================= */

body.woocommerce-cart .woocommerce{ margin:0 !important; }
body.woocommerce-cart #content-wrap{ padding-top:0 !important; }

/* Hide Woo cart table leftovers if theme outputs any wrappers */
body.woocommerce-cart .woocommerce-cart-form__cart-item,
body.woocommerce-cart table.shop_table{ border:0 !important; }

.app-cart{
  width: min(1240px, calc(100% - 36px));
  margin: 18px auto 90px;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color:#0B0B0F;
}

.app-cart__top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 14px;
}
.app-cart__title{
  margin:0;
  font-size: 26px;
  font-weight: 650;
  letter-spacing:-0.02em;
}
.app-cart__sub{
  margin-top:4px;
  font-size: 12.5px;
  font-weight: 650;
  color: rgba(11,11,15,.55);
}
.app-cart__ghostBtn{
  text-decoration:none;
  font-weight:650;
  font-size:13px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(11,11,15,.10);
  background: rgba(11,11,15,.03);
  color:#0B0B0F;
}

.app-cart__grid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 14px;
  align-items:start;
}

/* Panels */
.app-cart__panel{
  border:1px solid rgba(11,11,15,.10);
  border-radius: 22px;
  background:#fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.06);
  overflow:hidden;
}

/* Items panel */
.app-cart__panel--items{ padding: 14px; }
.app-cart__items{
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* Item card */
.app-item{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border:1px solid rgba(11,11,15,.08);
  background: linear-gradient(180deg,#fff,#fbfbfc);
}
.app-item__thumb img{
  width: 92px !important;
  height: 92px !important;
  object-fit: cover;
  border-radius: 18px;
  border:1px solid rgba(11,11,15,.10);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  display:block;
}
.app-item__body{ min-width:0; }
.app-item__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}
.app-item__name{
  font-weight: 950;
  color:#0B0B0F;
  text-decoration:none;
  line-height:1.2;
  font-size: 14.5px;
  max-width: 100%;
}
.app-item__remove{
  width:34px; height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  text-decoration:none;
  background: rgba(11,11,15,.06);
  border:1px solid rgba(11,11,15,.10);
  color:#0B0B0F;
  font-weight: 950;
  flex:0 0 auto;
}
.app-item__remove:hover{ background: rgba(11,11,15,.10); }

.app-item .variation{
  margin:6px 0 0;
  font-size: 12.5px;
  color: rgba(11,11,15,.62);
}
.app-item__row{
  margin-top: 10px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.app-item__label{
  font-size: 11px;
  font-weight: 650;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(11,11,15,.55);
}
.app-item__value{
  font-size: 13.5px;
  font-weight: 650;
  margin-top: 4px;
}

/* Qty box — remove Woo look */
.app-item__qtybox .quantity{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(11,11,15,.10);
  background:#fff;
}
.app-item__qtybox input.qty{
  width: 70px !important;
  border:0 !important;
  background:transparent !important;
  text-align:center;
  font-weight: 650;
  outline:none !important;
}

/* Bottom bar inside items panel */
.app-cart__bar{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  justify-content:space-between;
  flex-wrap:wrap;
  padding-top: 10px;
  border-top:1px solid rgba(11,11,15,.08);
}
.app-cart__coupon{
  display:flex;
  gap:10px;
  flex:1 1 420px;
}
.app-input{
  width:100%;
  border-radius: 16px;
  border:1px solid rgba(11,11,15,.10);
  padding: 12px 12px;
  font-weight: 650;
  outline:none;
}

/* Buttons */
.app-btn{
  border:0;
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 650;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
}
.app-btn--primary{
  background:#0B0B0F;
  color:#fff;
}
.app-btn--ghost{
  background: rgba(11,11,15,.05);
  border:1px solid rgba(11,11,15,.10);
  color:#0B0B0F;
}
.app-btn--soft{
  background: rgba(11,11,15,.08);
  color:#0B0B0F;
}

/* Summary */
.app-cart__panel--summary{ padding: 14px; }
.app-sum__title{
  font-size: 15px;
  font-weight: 650;
  margin-bottom: 12px;
}
.app-sum__rows{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.app-sum__row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  font-weight: 650;
  color: rgba(11,11,15,.80);
}
.app-sum__k{ font-size: 12.5px; }
.app-sum__v{ font-size: 12.5px; font-weight: 950; color:#0B0B0F; text-align:right; }
.app-sum__divider{
  height:1px;
  background: rgba(11,11,15,.08);
  margin: 6px 0;
}
.app-sum__row--total .app-sum__k{ font-weight: 950; color:#0B0B0F; }
.app-sum__row--total .app-sum__v{ font-size: 16px; }
.app-sum__cta{
  margin-top: 6px;
  width:100%;
  padding: 14px 16px;
  border-radius: 18px;
}
.app-sum__meta{
  font-size: 12px;
  font-weight: 650;
  color: rgba(11,11,15,.55);
  margin-top: 8px;
}

/* Make summary sticky on desktop */
@media (min-width: 992px){
  .app-cart__panel--summary{
    position: sticky;
    top: 92px; /* adjust for your header */
  }
}

/* MOBILE */
.app-cartDock{
  display:none;
}
@media (max-width: 991px){
  .app-cart{
    width: min(100%, calc(100% - 18px));
    margin: 10px auto 92px;
  }
  .app-cart__grid{
    grid-template-columns: 1fr;
  }
  .app-item{
    grid-template-columns: 84px 1fr;
  }
  .app-item__thumb img{
    width:84px !important;
    height:84px !important;
    border-radius:16px;
  }
  .app-item__row{
    grid-template-columns: 1fr;
  }
  /* Mobile dock */
  .app-cartDock{
    display:flex;
    position:fixed;
    left:0; right:0; bottom:0;
    z-index:999999;
    background: rgba(255,255,255,.96);
    border-top:1px solid rgba(11,11,15,.10);
    backdrop-filter: blur(10px);
    padding: 10px 12px;
    gap: 10px;
    align-items:center;
    justify-content:space-between;
  }
  .app-cartDock__left{
    display:flex;
    flex-direction:column;
    gap:2px;
    min-width:0;
  }
  .app-cartDock__label{
    font-size:11px;
    font-weight: 950;
    letter-spacing:.08em;
    text-transform:uppercase;
    color: rgba(11,11,15,.55);
  }
  .app-cartDock__amount{
    font-size: 14px;
    font-weight: 650;
    color:#0B0B0F;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width: 55vw;
  }
  .app-cartDock__btn{
    background:#0B0B0F;
    color:#fff;
    border-radius: 18px;
    padding: 12px 14px;
    font-weight: 650;
    text-decoration:none;
    white-space:nowrap;
  }
}

/* Remove any Woo default backgrounds inside our UI */
.app-cart .shop_table,
.app-cart .cart_totals,
.app-cart .wc-proceed-to-checkout{
  background: transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

/* Shipping calculator form: keep functional but minimal */
.app-cart .shipping-calculator-form{
  margin-top: 8px;
}
.app-cart .shipping-calculator-form select,
.app-cart .shipping-calculator-form input{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(11,11,15,.10);
  padding: 10px 10px;
  margin-top: 8px;
  font-weight: 800;
}
/* App loading state */
.app-cart.is-loading{
  opacity: .65;
  pointer-events: none;
}
#appCartNotices:empty{ display:none; }
#appCartNotices{
  margin-top: 12px;
}
/* ===============================
   APP CART – QTY STEPPER (NEW)
   Works with JS .app-qty wrapper
================================ */

/* Remove default Woo quantity visuals inside our app cart */
[data-app-cart] .quantity{
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
}

/* Unified border box */
[data-app-cart] .app-qty{
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17,17,17,.18);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;            /* IMPORTANT: makes border look single */
  height: 44px;                /* match your UI */
}

/* Buttons */
[data-app-cart] .app-qty__btn{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  background: #fff;
  color: #0B0B0F;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

[data-app-cart] .app-qty__btn:active{
  transform: translateY(1px);
}

/* Subtle separators between btn and input */
[data-app-cart] .app-qty__btn--minus{
  border-right: 1px solid rgba(17,17,17,.10) !important;
}
[data-app-cart] .app-qty__btn--plus{
  border-left: 1px solid rgba(17,17,17,.10) !important;
}

/* Input */
[data-app-cart] .app-qty__input{
  width: 52px;                 /* adjust to taste */
  height: 44px;
  border: 0 !important;
  outline: none !important;
  background: #fff !important;
  text-align: center;
  font-weight: 900;
  color: #0B0B0F;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

/* Kill browser spinners */
[data-app-cart] .app-qty__input::-webkit-outer-spin-button,
[data-app-cart] .app-qty__input::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
[data-app-cart] .app-qty__input[type="number"]{
  -moz-appearance: textfield;
}

/* Focus state (premium) */
[data-app-cart] .app-qty:focus-within{
  border-color: rgba(11,11,15,.45);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

/* Disabled look (if max/min reached and you disable in future) */
[data-app-cart] .app-qty__btn:disabled{
  opacity: .45;
  cursor: not-allowed;
}

/* Mobile sizing */
@media (max-width: 767px){
  [data-app-cart] .app-qty{ height: 42px; border-radius: 13px; }
  [data-app-cart] .app-qty__btn{ width: 42px; height: 42px; }
  [data-app-cart] .app-qty__input{ height: 42px; width: 48px; }
}
/* =========================================
   FIX QTY UI (make it premium, not boxed)
   Paste at END of cart CSS
========================================= */

/* Outer pill */
[data-app-cart] .app-qty{
  display:inline-flex !important;
  align-items:center !important;
  border:1px solid rgba(17,17,17,.18) !important;
  border-radius:999px !important;      /* full pill */
  background:#fff !important;
  overflow:hidden !important;           /* important for rounded corners */
  height:44px !important;
}

/* Remove any inherited borders/lines */
[data-app-cart] .app-qty,
[data-app-cart] .app-qty *{
  box-shadow:none !important;
}

/* Buttons: no borders, no grid look */
[data-app-cart] .app-qty__btn{
  border:0 !important;
  background:#fff !important;
  width:44px !important;
  height:44px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:0 !important;
  margin:0 !important;
  color:#0B0B0F !important;
  font-weight:950 !important;
  font-size:18px !important;
  line-height:1 !important;
}

/* Input: remove borders + force center */
[data-app-cart] .app-qty__input{
  border:0 !important;
  outline:none !important;
  background:#fff !important;
  width:54px !important;
  height:44px !important;
  padding:0 !important;
  margin:0 !important;
  text-align:center !important;
  font-weight:900 !important;
  color:#0B0B0F !important;
}

/* Clean separators (single subtle lines) */
[data-app-cart] .app-qty__input{
  border-left:1px solid rgba(17,17,17,.10) !important;
  border-right:1px solid rgba(17,17,17,.10) !important;
}

/* Remove any old separator rules if you had them */
[data-app-cart] .app-qty__btn--minus,
[data-app-cart] .app-qty__btn--plus{
  border-left:0 !important;
  border-right:0 !important;
}

/* Hover/active polish */
@media (hover:hover){
  [data-app-cart] .app-qty__btn:hover{ background:rgba(11,11,15,.03) !important; }
}
[data-app-cart] .app-qty__btn:active{ transform:translateY(1px); }

/* Focus ring */
[data-app-cart] .app-qty:focus-within{
  border-color: rgba(11,11,15,.45) !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.08) !important;
}

/* Kill number spinners */
[data-app-cart] .app-qty__input::-webkit-outer-spin-button,
[data-app-cart] .app-qty__input::-webkit-inner-spin-button{
  -webkit-appearance:none; margin:0;
}
[data-app-cart] .app-qty__input[type="number"]{ -moz-appearance:textfield; }

/* Mobile size */
@media (max-width:767px){
  [data-app-cart] .app-qty{ height:42px !important; }
  [data-app-cart] .app-qty__btn{ width:42px !important; height:42px !important; }
  [data-app-cart] .app-qty__input{ height:42px !important; width:50px !important; }
}
/* =========================================
   CART: FORCE PRICE COLOR BLACK (APP CART)
   Overrides OceanWP / Woo green prices
========================================= */

[data-app-cart] .price,
[data-app-cart] .price *,
[data-app-cart] .amount,
[data-app-cart] .amount *,
[data-app-cart] .woocommerce-Price-amount,
[data-app-cart] .woocommerce-Price-amount *,
[data-app-cart] .cart-subtotal,
[data-app-cart] .order-total,
[data-app-cart] .order-total *,
[data-app-cart] .cart-subtotal *{
  color:#0B0B0F !important;
}

/* If theme uses strong/ins inside price */
[data-app-cart] strong,
[data-app-cart] b{
  color:#0B0B0F !important;
}
/* Two-column layout for variations */
.woocommerce-cart .variation{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 2px;
  margin: 6px 0;
}

/* Labels */
.woocommerce-cart .variation dt{
  grid-row: 1;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin: 0;
}

/* Values below labels */
.woocommerce-cart .variation dd{
  grid-row: 2;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

/* Remove default breaks */
.woocommerce-cart .variation br{
  display: none;
}
.woocommerce-cart .variation dt,
.woocommerce-cart .variation dd{
  text-align: left;
}
.woocommerce-cart .variation dd{
  color:#333;
  font-weight:500;
}
