:root{
  --brand:#ff4d00;
  --brand-dark:#e34300;
  --brand-soft:#fff1e9;
  --ink:#18191d;
  --muted:#707680;
  --line:#e8eaee;
  --surface:#ffffff;
  --canvas:#f7f8fa;
  --shadow-sm:0 5px 16px rgba(22,25,31,.06);
  --shadow-md:0 12px 32px rgba(22,25,31,.09);
  --radius-sm:12px;
  --radius-md:18px;
  --radius-lg:26px;
  --sidebar-width:274px;
  --bottom-nav-height:76px;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
*{box-sizing:border-box}
[hidden]{display:none!important}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-width:320px;
  color:var(--ink);
  background:var(--canvas);
  -webkit-font-smoothing:antialiased;
}
button,input{font:inherit}
button{cursor:pointer}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
svg{
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.app-shell{min-height:100vh}
.sidebar{
  position:fixed;
  inset:0 auto 0 0;
  z-index:30;
  width:var(--sidebar-width);
  padding:28px 24px;
  background:#fff;
  border-right:1px solid var(--line);
  display:flex;
  flex-direction:column;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand__mark{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  flex:none;
  color:#fff;
  background:var(--brand);
  box-shadow:0 8px 20px rgba(255,77,0,.24);
}
.brand__mark svg{width:27px;height:27px}
.brand strong{
  display:block;
  font-size:23px;
  letter-spacing:-.4px;
}
.brand small{
  display:block;
  margin-top:3px;
  color:var(--muted);
  font-size:11px;
  font-weight:500;
}
.sidebar__nav{
  display:grid;
  gap:8px;
  margin-top:38px;
}
.nav-item{
  width:100%;
  min-height:52px;
  padding:0 16px;
  border:0;
  border-radius:14px;
  background:transparent;
  color:#424854;
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:750;
  text-align:left;
  transition:.18s ease;
}
.nav-item:hover{background:#f7f7f8}
.nav-item.is-active{
  color:var(--brand);
  background:var(--brand-soft);
}
.nav-item svg{width:22px;height:22px}
.sidebar__note{
  margin-top:auto;
  padding:16px;
  border:1px solid #ffe4d6;
  border-radius:16px;
  background:linear-gradient(135deg,#fff3ec,#fffaf7);
  color:var(--muted);
  font-size:12px;
  line-height:1.55;
}
.sidebar__note strong{
  display:block;
  margin-bottom:4px;
  color:var(--ink);
  font-size:13px;
}

.main{
  margin-left:var(--sidebar-width);
  padding:32px 34px 50px;
}
.page{
  width:min(100%,1560px);
  margin:0 auto;
}
.view{display:none}
.view.is-active{display:block}
.mobile-header,.mobile-home-tools,.bottom-nav{display:none}

.desktop-hero{
  display:grid;
  grid-template-columns:minmax(300px,.82fr) minmax(540px,1.55fr);
  gap:34px;
  padding:36px 40px;
  border:1px solid #ffebbd;
  border-radius:var(--radius-lg);
  background:
    radial-gradient(circle at 10% 15%,rgba(255,214,125,.46),transparent 34%),
    radial-gradient(circle at 80% 15%,rgba(255,242,190,.8),transparent 35%),
    linear-gradient(135deg,#fff8df,#fff2cd);
}
.eyebrow{
  display:block;
  margin-bottom:7px;
  font-weight:850;
  font-size:17px;
}
.desktop-hero h1{
  margin:0;
  max-width:560px;
  font-size:clamp(31px,2.7vw,48px);
  line-height:1.07;
  letter-spacing:-1.5px;
}
.desktop-hero h1 em{
  color:var(--brand);
  font-style:normal;
}
.trust-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.trust-list span{
  padding:10px 13px;
  border-radius:12px;
  background:rgba(255,255,255,.82);
  font-size:12px;
  font-weight:750;
}
.desktop-hero__tools{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
}

.search-field{position:relative}
.search-field>svg{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  width:22px;
  height:22px;
  color:#555d68;
  pointer-events:none;
}
.search-field input{
  width:100%;
  height:58px;
  padding:0 18px 0 54px;
  border:1px solid #e0e3e7;
  border-radius:16px;
  outline:none;
  color:var(--ink);
  background:#fff;
  box-shadow:0 7px 18px rgba(32,36,44,.07);
  transition:border .18s,box-shadow .18s;
}
.search-field input:focus{
  border-color:#ffae89;
  box-shadow:0 0 0 4px rgba(255,77,0,.09),0 7px 18px rgba(32,36,44,.07);
}
.search-hint{
  margin:10px 2px 16px;
  color:var(--muted);
  font-size:13px;
}
.chip-row{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding-bottom:4px;
  scrollbar-width:none;
}
.chip-row::-webkit-scrollbar{display:none}
.chip{
  flex:0 0 auto;
  min-height:40px;
  padding:0 17px;
  border:1px solid #e6e8ec;
  border-radius:12px;
  color:#292d34;
  background:#fff;
  font-weight:760;
  box-shadow:0 4px 10px rgba(23,27,33,.05);
}
.chip.is-active{
  color:#fff;
  border-color:var(--brand);
  background:var(--brand);
  box-shadow:0 7px 15px rgba(255,77,0,.21);
}

.content-section{margin-top:28px}
.section-heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:14px;
}
.section-heading h2{
  margin:0;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:21px;
  letter-spacing:-.35px;
}
.section-heading h2::before{
  content:"";
  width:4px;
  height:24px;
  border-radius:99px;
  background:var(--brand);
}
.text-button{
  padding:8px 0;
  border:0;
  color:#315078;
  background:transparent;
  font-weight:760;
}
.text-button span{font-size:19px}

.product-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:16px;
}
.product-card{
  min-width:0;
  overflow:hidden;
  border:1px solid #eceef1;
  border-radius:var(--radius-md);
  background:#fff;
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
  transition:transform .18s ease,box-shadow .18s ease;
}
.product-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
}
.product-card__media{
  position:relative;
  aspect-ratio:1.16/1;
  overflow:hidden;
  background:#f3f4f5;
}
.product-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.product-badge{
  position:absolute;
  z-index:2;
  top:10px;
  min-height:27px;
  padding:0 9px;
  border-radius:9px;
  display:flex;
  align-items:center;
  font-size:12px;
  font-weight:900;
}
.product-badge--number{
  left:10px;
  color:var(--brand);
  background:#fff0e8;
}
.product-badge--discount{
  right:10px;
  color:#fff;
  background:var(--brand);
}
.favorite-btn{
  position:absolute;
  right:9px;
  bottom:9px;
  width:36px;
  height:36px;
  border:1px solid rgba(219,223,229,.9);
  border-radius:12px;
  display:grid;
  place-items:center;
  color:#606774;
  background:rgba(255,255,255,.93);
  backdrop-filter:blur(8px);
}
.favorite-btn svg{width:21px;height:21px}
.favorite-btn.is-active{
  color:var(--brand);
  border-color:#ffd0bc;
  background:#fff1ea;
}
.favorite-btn.is-active svg{fill:currentColor}
.product-card__body{
  flex:1;
  padding:13px 13px 12px;
  display:flex;
  flex-direction:column;
  gap:7px;
}
.product-card__name{
  margin:0;
  min-height:40px;
  font-size:14px;
  line-height:1.35;
  font-weight:780;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.product-card__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}
.product-price{
  color:var(--brand);
  font-size:16px;
  font-weight:900;
  white-space:nowrap;
}
.product-sold{
  color:var(--muted);
  font-size:12px;
  white-space:nowrap;
}
.product-card__footer{
  margin-top:auto;
  display:flex;
  align-items:center;
  gap:8px;
}
.product-label{
  flex:1;
  min-width:0;
  color:var(--brand);
  font-size:11px;
  font-weight:760;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.shopee-btn{
  flex:0 0 auto;
  min-height:34px;
  padding:0 12px;
  border:0;
  border-radius:10px;
  color:#fff;
  background:var(--brand);
  font-size:12px;
  font-weight:850;
  box-shadow:0 6px 12px rgba(255,77,0,.20);
}
.product-grid--compact .product-card__media{aspect-ratio:1.6/1}
.home-tip{
  margin-top:27px;
  padding:14px 18px;
  border:1px solid #ffe9d2;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#555c66;
  background:#fff8ef;
  font-size:13px;
}
.home-tip p{margin:0}
.home-tip strong{color:var(--brand)}

.page-title-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:24px;
}
.page-kicker{
  display:block;
  margin-bottom:5px;
  color:var(--brand);
  font-size:13px;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.7px;
}
.page-title-row h1{
  margin:0;
  font-size:36px;
  letter-spacing:-1px;
}
.category-total{
  color:var(--muted);
  font-size:14px;
}
.category-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.category-card{
  width:100%;
  padding:20px;
  border:1px solid #e9ebef;
  border-radius:18px;
  display:flex;
  align-items:center;
  gap:16px;
  text-align:left;
  color:var(--ink);
  background:#fff;
  box-shadow:var(--shadow-sm);
  transition:transform .18s,box-shadow .18s,border-color .18s;
}
.category-card:hover{
  transform:translateY(-2px);
  border-color:#ffd0bb;
  box-shadow:var(--shadow-md);
}
.category-card__icon,.category-detail-icon{
  width:58px;
  height:58px;
  border-radius:16px;
  display:grid;
  place-items:center;
  flex:none;
  color:var(--brand);
  background:var(--brand-soft);
}
.category-card__icon svg,.category-detail-icon svg{
  width:30px;
  height:30px;
}
.category-card__copy{
  min-width:0;
  flex:1;
}
.category-card__copy strong{
  display:block;
  margin-bottom:3px;
  font-size:17px;
}
.category-card__copy span{
  color:var(--muted);
  font-size:13px;
}
.category-card__arrow{
  width:36px;
  height:36px;
  border-radius:11px;
  display:grid;
  place-items:center;
  color:var(--brand);
  background:#fff6f1;
}
.category-card__arrow svg{width:19px;height:19px}

.category-detail-header{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}
.icon-btn{
  width:44px;
  height:44px;
  padding:0;
  border:1px solid #e7e9ed;
  border-radius:13px;
  display:grid;
  place-items:center;
  color:#24282e;
  background:#fff;
}
.icon-btn:hover{background:#f8f9fa}
.category-detail-header h1{
  margin:0 0 2px;
  font-size:30px;
  letter-spacing:-.7px;
}
.category-detail-header p{
  margin:0;
  color:var(--muted);
  font-size:13px;
}
.category-detail-icon{
  width:48px;
  height:48px;
  border-radius:14px;
}
.category-detail-icon svg{width:26px;height:26px}
.sort-bar{
  display:flex;
  gap:10px;
  margin-bottom:18px;
  padding:10px;
  border:1px solid #e9ebef;
  border-radius:16px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.sort-btn{
  min-height:40px;
  padding:0 18px;
  border:1px solid #e5e7eb;
  border-radius:11px;
  color:#3b414b;
  background:#fff;
  font-weight:760;
}
.sort-btn.is-active{
  color:#fff;
  border-color:var(--brand);
  background:var(--brand);
}
.sort-btn--icon{
  width:42px;
  padding:0;
  margin-left:auto;
}
.sort-btn--icon svg{width:21px;height:21px}
.category-products{grid-template-columns:repeat(5,minmax(0,1fr))}


.favorites-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}
.favorites-header h1{
  margin:0;
  font-size:36px;
  letter-spacing:-1px;
}
.favorites-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.favorite-row{
  position:relative;
  min-width:0;
  padding:12px;
  border:1px solid #e9ebef;
  border-radius:18px;
  display:grid;
  grid-template-columns:124px minmax(0,1fr) 42px;
  align-items:center;
  gap:14px;
  background:#fff;
  box-shadow:var(--shadow-sm);
  transition:transform .18s ease,box-shadow .18s ease;
}
.favorite-row:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}
.favorite-row__media{
  width:124px;
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:14px;
  background:#f3f4f5;
}
.favorite-row__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.favorite-row__content{
  min-width:0;
}
.favorite-row__number{
  display:inline-flex;
  min-height:25px;
  padding:0 8px;
  border-radius:8px;
  align-items:center;
  color:var(--brand);
  background:var(--brand-soft);
  font-size:12px;
  font-weight:900;
}
.favorite-row__name{
  margin:8px 0 6px;
  font-size:16px;
  line-height:1.35;
  font-weight:800;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.favorite-row__price{
  display:block;
  margin-bottom:9px;
  color:var(--brand);
  font-size:17px;
  font-weight:900;
}
.favorite-row__open{
  min-height:36px;
  padding:0 13px;
  border:0;
  border-radius:10px;
  color:#fff;
  background:var(--brand);
  font-size:12px;
  font-weight:850;
}
.favorite-row__remove{
  width:40px;
  height:40px;
  border:0;
  border-radius:12px;
  display:grid;
  place-items:center;
  color:#8a9099;
  background:#f6f7f8;
}
.favorite-row__remove:hover{
  color:var(--brand);
  background:var(--brand-soft);
}
.favorite-row__remove svg{
  width:20px;
  height:20px;
}
.favorites-empty{
  min-height:420px;
  padding:50px 20px;
  border:1px dashed #dfe2e7;
  border-radius:22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:#fff;
}
.favorites-empty__icon{
  width:78px;
  height:78px;
  border-radius:24px;
  display:grid;
  place-items:center;
  color:var(--brand);
  background:var(--brand-soft);
}
.favorites-empty__icon svg{
  width:38px;
  height:38px;
}
.favorites-empty h2{
  margin:18px 0 7px;
  font-size:25px;
}
.favorites-empty p{
  margin:0 0 22px;
  color:var(--muted);
}

.placeholder-card{
  min-height:440px;
  padding:50px 20px;
  border:1px dashed #dfe2e7;
  border-radius:22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:#fff;
}
.placeholder-icon{
  width:72px;
  height:72px;
  border-radius:22px;
  display:grid;
  place-items:center;
  color:var(--brand);
  background:var(--brand-soft);
  font-size:34px;
}
.placeholder-card h1{
  margin:18px 0 7px;
  font-size:26px;
}
.placeholder-card p{
  max-width:440px;
  margin:0 0 22px;
  color:var(--muted);
}
.primary-btn{
  min-height:45px;
  padding:0 20px;
  border:0;
  border-radius:12px;
  color:#fff;
  background:var(--brand);
  font-weight:850;
}

.sheet{
  position:fixed;
  inset:0;
  z-index:80;
  display:none;
}
.sheet.is-open{display:block}
.sheet__backdrop{
  position:absolute;
  inset:0;
  border:0;
  background:rgba(19,21,26,.42);
}
.sheet__panel{
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:min(430px,100%);
  padding:24px;
  background:#fff;
  box-shadow:-18px 0 50px rgba(19,21,26,.18);
}
.sheet__handle{display:none}
.sheet__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  margin-bottom:24px;
}
.sheet__header h2{margin:0}
.filter-option{
  min-height:54px;
  margin-bottom:10px;
  padding:0 14px;
  border:1px solid #e6e8ec;
  border-radius:13px;
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
}
.filter-option input{accent-color:var(--brand)}
.sheet__panel>.primary-btn{width:100%;margin-top:10px}

.toast{
  position:fixed;
  left:50%;
  bottom:28px;
  z-index:100;
  max-width:min(90vw,420px);
  padding:12px 16px;
  border-radius:12px;
  color:#fff;
  background:#262a31;
  box-shadow:0 12px 30px rgba(0,0,0,.2);
  opacity:0;
  transform:translate(-50%,12px);
  pointer-events:none;
  transition:.2s ease;
}
.toast.is-visible{
  opacity:1;
  transform:translate(-50%,0);
}
.empty-state{
  grid-column:1/-1;
  min-height:220px;
  padding:30px;
  border:1px dashed #dfe2e7;
  border-radius:18px;
  display:grid;
  place-items:center;
  text-align:center;
  color:var(--muted);
  background:#fff;
}



/* TENTANG */
.about-mobile-topbar{display:none}
.about-layout{
  display:grid;
  grid-template-columns:minmax(320px,.82fr) minmax(480px,1.35fr);
  gap:20px;
  align-items:start;
}
.about-profile-card,
.about-panel{
  border:1px solid #e9ebef;
  border-radius:22px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.about-profile-card{
  padding:28px;
  position:sticky;
  top:28px;
}
.about-profile-card__brand{
  display:flex;
  align-items:center;
  gap:16px;
}
.about-profile-card__logo{
  width:72px;
  height:72px;
  border-radius:22px;
  display:grid;
  place-items:center;
  color:#fff;
  background:var(--brand);
  box-shadow:0 12px 26px rgba(255,77,0,.24);
}
.about-profile-card__logo svg{
  width:38px;
  height:38px;
}
.about-profile-card h1{
  margin:0;
  font-size:34px;
  letter-spacing:-.9px;
}
.about-profile-card__description{
  margin:22px 0 0;
  color:#555d68;
  font-size:16px;
  line-height:1.65;
}
.about-stats{
  margin-top:25px;
  padding-top:22px;
  border-top:1px solid #eceef1;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.about-stats div{
  min-width:0;
  text-align:center;
}
.about-stats strong{
  display:block;
  color:var(--brand);
  font-size:25px;
  line-height:1;
}
.about-stats span{
  display:block;
  margin-top:7px;
  color:var(--muted);
  font-size:12px;
}
.about-side{
  display:grid;
  gap:16px;
}
.about-panel{
  padding:24px;
}
.about-panel>h2{
  margin:0 0 17px;
  font-size:20px;
}
.about-links{
  display:grid;
  gap:11px;
}
.about-link{
  width:100%;
  min-height:74px;
  padding:12px 14px;
  border:1px solid #e7e9ed;
  border-radius:15px;
  display:grid;
  grid-template-columns:46px minmax(0,1fr) 26px;
  align-items:center;
  gap:13px;
  text-align:left;
  color:var(--ink);
  background:#fff;
  transition:border-color .18s,background .18s,transform .18s;
}
.about-link:hover{
  transform:translateY(-1px);
  border-color:#ffd0bb;
  background:#fffaf7;
}
.about-link__icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:var(--brand);
  background:var(--brand-soft);
  font-size:22px;
  font-weight:900;
}
.about-link strong{
  display:block;
  margin-bottom:3px;
  font-size:15px;
}
.about-link small{
  color:var(--muted);
  font-size:12px;
}
.about-link>svg{
  width:19px;
  height:19px;
  color:#9aa0a9;
}
.about-disclosure{
  display:flex;
  align-items:flex-start;
  gap:15px;
  background:linear-gradient(135deg,#fff7f1,#fffdfa);
}
.about-disclosure__icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  flex:none;
  color:var(--brand);
  background:#fff0e7;
}
.about-disclosure__icon svg{
  width:24px;
  height:24px;
}
.about-disclosure h2{
  margin:0 0 6px;
  font-size:18px;
}
.about-disclosure p{
  margin:0;
  color:#606873;
  font-size:13px;
  line-height:1.6;
}

/* FAVORIT V3 — daftar ringkas seperti referensi */
.favorites-mobile-topbar{display:none}
.favorites-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.favorite-row{
  min-height:148px;
  padding:12px;
  grid-template-columns:122px minmax(0,1fr) 42px;
  gap:15px;
  align-items:center;
}
.favorite-row__media{
  width:122px;
  height:122px;
  aspect-ratio:auto;
}
.favorite-row__number{
  color:#747a84;
  background:#f1f2f4;
}
.favorite-row__name{
  margin:7px 0 5px;
}
.favorite-row__price{
  margin-bottom:8px;
}

@media(max-width:1450px){
  .product-grid{grid-template-columns:repeat(5,minmax(0,1fr))}
  .category-products{grid-template-columns:repeat(4,minmax(0,1fr))}
}
@media(max-width:1180px){
  :root{--sidebar-width:226px}
  .main{padding-left:26px;padding-right:26px}
  .desktop-hero{
    grid-template-columns:1fr;
    padding:28px;
  }
  .desktop-hero__copy{display:none}
  .product-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .category-list{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:767px){

  body.route-about .mobile-header{display:none}
  body.route-about .main{padding-top:0}
  .about-mobile-topbar{
    position:sticky;
    top:0;
    z-index:25;
    height:62px;
    margin:0 -16px 14px;
    padding:0 16px;
    border-bottom:1px solid #e8eaee;
    display:grid;
    grid-template-columns:42px 1fr 42px;
    align-items:center;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
  }
  .about-mobile-topbar strong{
    text-align:center;
    font-size:17px;
  }
  .about-mobile-topbar__back{
    width:40px;
    height:40px;
    padding:0;
    border:0;
    display:grid;
    place-items:center;
    color:#25282d;
    background:transparent;
  }
  .about-mobile-topbar__back svg{
    width:23px;
    height:23px;
  }
  .about-layout{
    grid-template-columns:1fr;
    gap:12px;
  }
  .about-profile-card{
    position:static;
    padding:22px 18px;
    border-radius:18px;
  }
  .about-profile-card__logo{
    width:62px;
    height:62px;
    border-radius:19px;
  }
  .about-profile-card__logo svg{
    width:33px;
    height:33px;
  }
  .about-profile-card h1{
    font-size:27px;
  }
  .about-profile-card__description{
    margin-top:18px;
    font-size:14px;
    line-height:1.6;
  }
  .about-stats{
    margin-top:20px;
    padding-top:18px;
  }
  .about-stats strong{
    font-size:22px;
  }
  .about-panel{
    padding:18px;
    border-radius:18px;
    box-shadow:none;
  }
  .about-panel>h2{
    margin-bottom:14px;
    font-size:18px;
  }
  .about-link{
    min-height:68px;
    padding:10px 12px;
    grid-template-columns:43px minmax(0,1fr) 22px;
    border-radius:14px;
  }
  .about-link__icon{
    width:43px;
    height:43px;
    border-radius:13px;
  }
  .about-disclosure{
    padding:16px;
  }


  body.route-favorites .mobile-header{display:none}
  body.route-favorites .main{padding-top:0}
  .favorites-mobile-topbar{
    position:sticky;
    top:0;
    z-index:25;
    height:62px;
    margin:0 -16px 14px;
    padding:0 16px;
    border-bottom:1px solid #e8eaee;
    display:grid;
    grid-template-columns:42px 1fr 42px;
    align-items:center;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
  }
  .favorites-mobile-topbar strong{
    text-align:center;
    font-size:17px;
  }
  .favorites-mobile-topbar__back{
    width:40px;
    height:40px;
    padding:0;
    border:0;
    display:grid;
    place-items:center;
    color:#25282d;
    background:transparent;
  }
  .favorites-mobile-topbar__back svg{
    width:23px;
    height:23px;
  }
  .favorites-header{
    display:none;
  }
  .favorites-list{
    grid-template-columns:1fr;
    gap:10px;
  }
  .favorite-row{
    min-height:126px;
    padding:8px 2px;
    border:0;
    border-radius:0;
    grid-template-columns:102px minmax(0,1fr) 38px;
    gap:13px;
    box-shadow:none;
    background:#fff;
  }
  .favorite-row + .favorite-row{
    margin-top:2px;
  }
  .favorite-row:hover{
    transform:none;
    box-shadow:none;
  }
  .favorite-row__media{
    width:102px;
    height:112px;
    border-radius:13px;
  }
  .favorite-row__number{
    min-height:23px;
    padding:0 7px;
    border-radius:7px;
    color:#767b84;
    background:#f0f1f3;
    font-size:11px;
  }
  .favorite-row__name{
    margin:6px 0 4px;
    font-size:14px;
    line-height:1.28;
    -webkit-line-clamp:2;
  }
  .favorite-row__price{
    margin:0;
    font-size:16px;
  }
  .favorite-row__open{
    display:none;
  }
  .favorite-row__remove{
    width:36px;
    height:36px;
    border:0;
    border-radius:10px;
    color:#9aa0a9;
    background:transparent;
  }
  .favorite-row__remove svg{
    width:19px;
    height:19px;
  }
  .favorites-empty{
    min-height:520px;
    border:0;
    padding:40px 20px;
  }

  :root{--canvas:#fff}
  body{padding-bottom:calc(var(--bottom-nav-height) + env(safe-area-inset-bottom))}
  .sidebar,.desktop-hero{display:none}
  .main{
    margin-left:0;
    padding:0 16px 28px;
  }
  .page{width:100%}
  .mobile-header{
    position:sticky;
    top:0;
    z-index:25;
    min-height:80px;
    padding:17px 2px 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(14px);
  }
  .brand--mobile{gap:10px}
  .brand--mobile .brand__mark{
    width:41px;
    height:41px;
    border-radius:13px;
  }
  .brand--mobile strong{
    font-size:22px;
    letter-spacing:-.35px;
  }
  .notification-btn{
    position:relative;
    border:0;
  }
  .notification-btn span{
    position:absolute;
    right:0;
    top:0;
    width:20px;
    height:20px;
    border-radius:99px;
    display:grid;
    place-items:center;
    color:#fff;
    background:var(--brand);
    font-size:11px;
    font-weight:900;
  }
  .mobile-home-tools{display:block}
  .search-field input{height:54px;border-radius:15px}
  .search-hint{margin:9px 2px 14px;font-size:12px}
  .chip{min-height:38px;padding:0 16px}
  .content-section{margin-top:25px}
  .section-heading{margin-bottom:12px}
  .section-heading h2{font-size:20px}
  .section-heading h2::before{display:none}
  .text-button{color:var(--brand);font-size:14px}
  .product-grid,
  .product-grid--compact,
  .category-products{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:11px;
  }
  .product-card__media,
  .product-grid--compact .product-card__media{
    aspect-ratio:1/1.06;
  }
  .product-badge{
    top:8px;
    min-height:25px;
    padding:0 8px;
    font-size:12px;
  }
  .product-badge--number{left:8px}
  .product-badge--discount{right:8px}
  .favorite-btn{
    right:7px;
    bottom:7px;
    width:34px;
    height:34px;
  }
  .product-card__body{
    padding:11px 10px 10px;
    gap:6px;
  }
  .product-card__name{
    min-height:36px;
    font-size:13px;
  }
  .product-card__meta{display:block}
  .product-price{font-size:17px}
  .product-sold{display:block;margin-top:3px}
  .product-card__footer{display:block}
  .product-label{display:none}
  .shopee-btn{width:100%;min-height:38px;font-size:13px}
  .home-tip{display:none}

  .favorites-header{
    margin:5px 2px 18px;
    align-items:center;
  }
  .favorites-header .page-kicker{display:none}
  .favorites-header h1{font-size:24px}
  .favorites-list{
    grid-template-columns:1fr;
    gap:12px;
  }
  .favorite-row{
    padding:10px;
    grid-template-columns:94px minmax(0,1fr) 36px;
    gap:12px;
    border-radius:15px;
    box-shadow:none;
  }
  .favorite-row__media{
    width:94px;
    border-radius:13px;
  }
  .favorite-row__name{
    margin:6px 0 4px;
    font-size:14px;
  }
  .favorite-row__price{
    margin-bottom:0;
    font-size:16px;
  }
  .favorite-row__open{
    display:none;
  }
  .favorite-row__remove{
    width:36px;
    height:36px;
    border-radius:10px;
    background:transparent;
  }
  .favorites-empty{
    min-height:430px;
    border:0;
  }

  .page-title-row{
    margin:6px 2px 18px;
    align-items:center;
  }
  .page-kicker{display:none}
  .page-title-row h1{font-size:24px}
  .category-total{font-size:12px}
  .category-list{
    grid-template-columns:1fr;
    gap:12px;
  }
  .category-card{
    min-height:84px;
    padding:14px;
    border-radius:15px;
  }
  .category-card__icon{
    width:50px;
    height:50px;
    border-radius:14px;
  }
  .category-card__icon svg{width:27px;height:27px}
  .category-card__copy strong{font-size:15px}
  .category-card__copy span{font-size:12px}
  .category-card__arrow{background:transparent}
  .category-detail-header{
    margin:3px 0 15px;
  }
  .back-btn{
    width:40px;
    height:40px;
    border:0;
    background:#f7f8f9;
  }
  .category-detail-icon{
    width:42px;
    height:42px;
  }
  .category-detail-header h1{font-size:21px}
  .category-detail-header p{font-size:12px}
  .sort-bar{
    gap:8px;
    margin:0 -16px 15px;
    padding:9px 16px;
    border-width:1px 0;
    border-radius:0;
    box-shadow:none;
    overflow-x:auto;
    scrollbar-width:none;
  }
  .sort-bar::-webkit-scrollbar{display:none}
  .sort-btn{
    flex:0 0 auto;
    min-height:38px;
    padding:0 16px;
    border-radius:10px;
    font-size:13px;
  }
  .sort-btn--icon{
    width:40px;
    padding:0;
    margin-left:0;
  }

  .bottom-nav{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:60;
    height:calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
    padding:8px 10px calc(8px + env(safe-area-inset-bottom));
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid #e8eaee;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(18px);
    box-shadow:0 -10px 28px rgba(20,23,29,.08);
  }
  .bottom-nav__item{
    border:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    color:#747b86;
    background:transparent;
    font-size:11px;
    font-weight:730;
  }
  .bottom-nav__item svg{width:25px;height:25px}
  .bottom-nav__item.is-active{color:var(--brand)}

  .sheet__panel{
    left:0;
    right:0;
    top:auto;
    bottom:0;
    width:100%;
    padding:12px 18px calc(22px + env(safe-area-inset-bottom));
    border-radius:22px 22px 0 0;
  }
  .sheet__handle{
    display:block;
    width:42px;
    height:5px;
    margin:0 auto 12px;
    border-radius:99px;
    background:#d8dbe0;
  }
  .toast{
    bottom:calc(var(--bottom-nav-height) + 18px + env(safe-area-inset-bottom));
  }
}

@media(max-width:390px){

  .about-mobile-topbar{
    margin-left:-11px;
    margin-right:-11px;
    padding-left:11px;
    padding-right:11px;
  }


  .favorites-mobile-topbar{
    margin-left:-11px;
    margin-right:-11px;
    padding-left:11px;
    padding-right:11px;
  }

  .main{padding-left:11px;padding-right:11px}
  .mobile-header{padding-top:14px}
  .brand--mobile strong{font-size:20px}
  .product-grid,
  .product-grid--compact,
  .category-products{gap:9px}
  .product-card__name{font-size:12px}
  .product-price{font-size:15px}
  .shopee-btn{font-size:12px;padding:0 6px}
  .sort-bar{margin-left:-11px;margin-right:-11px;padding-left:11px;padding-right:11px}
}


/* FINAL INTERACTION COMPONENTS */
.filter-count{
  position:absolute;
  right:-5px;
  top:-5px;
  min-width:19px;
  height:19px;
  padding:0 5px;
  border:2px solid #fff;
  border-radius:99px;
  display:grid;
  place-items:center;
  color:#fff;
  background:var(--brand);
  font-size:10px;
  font-weight:900;
}
.sort-btn--icon{position:relative}
.sheet__subtitle{
  margin:4px 0 0;
  color:var(--muted);
  font-size:12px;
}
.sheet__actions{
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:10px;
}
.sheet__actions .primary-btn,
.sheet__actions .secondary-btn{
  width:100%;
}
.secondary-btn{
  min-height:45px;
  padding:0 18px;
  border:1px solid #e0e3e7;
  border-radius:12px;
  color:#3d434d;
  background:#fff;
  font-weight:820;
}
.secondary-btn:hover{background:#f7f8f9}
.secondary-btn--full{
  width:100%;
  margin-top:14px;
}
.notification-list{
  display:grid;
  gap:11px;
}
.notification-item{
  padding:14px;
  border:1px solid #e8eaee;
  border-radius:14px;
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  gap:12px;
  background:#fff;
}
.notification-item__icon{
  width:42px;
  height:42px;
  border-radius:13px;
  display:grid;
  place-items:center;
  color:var(--brand);
  background:var(--brand-soft);
  font-weight:900;
}
.notification-item strong{
  display:block;
  margin-bottom:4px;
  font-size:14px;
}
.notification-item p{
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.45;
}
.notification-empty{
  min-height:210px;
  padding:30px 15px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--muted);
}
.notification-empty__icon{
  width:64px;
  height:64px;
  margin-bottom:13px;
  border-radius:20px;
  display:grid;
  place-items:center;
  color:var(--brand);
  background:var(--brand-soft);
  font-size:27px;
}
.notification-empty strong{
  margin-bottom:5px;
  color:var(--ink);
}
.favorite-row__media[data-action],
.favorite-row__content[data-action]{
  cursor:pointer;
}
.text-button[hidden]{display:none!important}

@media(max-width:767px){
  .sheet__actions{grid-template-columns:1fr 1.35fr}
  .notification-item{padding:12px}
}


/* PAGINATION */
.section-count{
  color:var(--muted);
  font-size:13px;
  font-weight:750;
}
.pagination{
  margin:28px 0 4px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
}
.pagination:empty{display:none}
.pagination__button{
  min-width:42px;
  height:42px;
  padding:0 13px;
  border:1px solid #e1e4e8;
  border-radius:11px;
  display:grid;
  place-items:center;
  color:#4c535e;
  background:#fff;
  font-weight:800;
  box-shadow:0 4px 12px rgba(22,25,31,.05);
  transition:border-color .18s,background .18s,color .18s,transform .18s;
}
.pagination__button:hover:not(:disabled){
  transform:translateY(-1px);
  border-color:#ffb08d;
  color:var(--brand);
  background:#fff8f4;
}
.pagination__button.is-active{
  color:#fff;
  border-color:var(--brand);
  background:var(--brand);
  box-shadow:0 7px 16px rgba(255,77,0,.22);
}
.pagination__button:disabled{
  cursor:not-allowed;
  opacity:.42;
  box-shadow:none;
}
.pagination__ellipsis{
  min-width:24px;
  text-align:center;
  color:#8a9099;
  font-weight:800;
}
.pagination__label{
  display:inline;
}
@media(max-width:767px){
  .section-count{font-size:12px}
  .pagination{
    margin-top:22px;
    gap:6px;
  }
  .pagination__button{
    min-width:37px;
    height:38px;
    padding:0 10px;
    border-radius:10px;
    font-size:12px;
  }
}
@media(max-width:390px){
  .pagination{
    gap:5px;
  }
  .pagination__button{
    min-width:34px;
    height:36px;
    padding:0 8px;
  }
}


/* CLEAN PRODUCT CARD FOOTER */
.product-card__footer--single{
  display:block!important;
}
.shopee-btn--full{
  width:100%;
  justify-content:center;
}


/* PERSUASIVE COPY POLISH */
.search-hint strong{
  color:var(--brand);
  font-weight:900;
}
.shopee-btn,
.favorite-row__open{
  white-space:nowrap;
}
.shopee-btn{
  letter-spacing:-.1px;
}
.product-clicks{
  color:var(--brand);
  font-weight:760;
}
@media(max-width:390px){
  .shopee-btn{
    font-size:11.5px;
    padding-left:5px;
    padding-right:5px;
  }
}
