:root{
  --blue:#0b4aa2;
  --blue2:#0a3b86;
  --orange:#f08a00;
  --black:#0b0b0b;
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --bg:#f5f6f8;
  --card:#ffffff;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

button,input,select,textarea{
  font:inherit;
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
}

.muted{
  color:var(--muted);
}

/* =========================
   TOPBAR
========================= */
.topbar{
  background:var(--black);
  color:#fff;
  font-size:12px;
}

.topbar__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0;
  gap:12px;
  flex-wrap:wrap;
}

.topbar__left,
.topbar__right{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}

.topbar__link{
  opacity:.95;
  transition:.2s ease;
}

.topbar__link:hover{
  opacity:1;
  text-decoration:underline;
}

/* =========================
   HEADER
========================= */
.header{
  background:#fff;
  border-bottom:1px solid #e9eef4;
}

.header__row{
  display:grid;
  grid-template-columns:220px minmax(560px, 1fr) 220px;
  gap:24px;
  align-items:center;
  padding:14px 0;
}

.logo{
  display:flex;
  align-items:center;
}

.logo__img{
  height:55px;
  width:auto;
  object-fit:contain;
}

/* =========================
   SEARCH
========================= */
.search--main{
  width:100%;
  max-width:none;
  margin:0;
}

.search{
  display:flex;
  align-items:center;
  width:100%;
  border:2px solid var(--orange);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}

.search input{
  width:100%;
  min-width:0;
  padding:14px 18px;
  border:none;
  outline:none;
  font-size:15px;
  background:#fff;
}

.search button{
  width:58px;
  height:48px;
  border:none;
  background:#fff;
  cursor:pointer;
  font-size:18px;
  flex-shrink:0;
}

/* =========================
   ICON MENU
========================= */
.iconMenu{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:22px;
}

.iconMenu__item{
  border:none;
  background:transparent;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:4px 6px;
}

.iconMenu__icon{
  font-size:24px;
}

.iconMenu__text{
  font-size:12px;
  font-weight:900;
  color:var(--blue);
}

.iconMenu__item:hover .iconMenu__text{
  color:var(--blue2);
}

/* =========================
   BLUE STRIP
========================= */
.strip{
  background:var(--blue);
  color:#fff;
}

.strip__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:6px 0;
  font-size:12px;
  gap:12px;
  flex-wrap:wrap;
}

.strip__mini{
  display:flex;
  align-items:center;
  gap:8px;
  opacity:.95;
}

.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#fff;
  display:inline-block;
}

/* =========================
   HERO ANTERIOR
========================= */
.hero{
  min-height:290px;
  background:
    linear-gradient(rgba(0,0,0,.22),rgba(0,0,0,.22)),
    linear-gradient(135deg,#bfc6cf,#e8ecf2);
  position:relative;
  border-bottom:1px solid var(--line);
}

.hero__wrap{
  min-height:290px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero__overlay{
  width:min(760px,100%);
  background:rgba(255,255,255,.88);
  border:1px solid #dbe1ea;
  border-radius:18px;
  padding:18px 20px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.hero__title{
  font-size:42px;
  font-weight:1000;
  line-height:1;
  color:var(--orange);
}

.hero__title span{
  color:var(--blue);
}

.hero__desc{
  margin:10px 0 14px;
  color:var(--muted);
  line-height:1.45;
  font-size:15px;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================
   BOTONES
========================= */
.btn{
  padding:10px 14px;
  border-radius:12px;
  border:none;
  background:var(--blue);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

.btn:hover{
  background:var(--blue2);
}

.btnDark{
  background:#111827 !important;
}

.smallbtn{
  padding:8px 10px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-weight:800;
}

.smallbtn:hover{
  border-color:#cbd5e1;
}

.ghostBtn{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:900;
  cursor:pointer;
}

.ghostBtn:hover{
  border-color:#cbd5e1;
}

.btnWide{
  grid-column:1 / -1;
  padding:11px 14px;
  border-radius:12px;
  border:none;
  background:var(--blue);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.btnWide:hover{
  background:var(--blue2);
}

/* =========================
   MAIN / UTILS
========================= */
.main{
  padding:18px 0 28px;
}

.metaRow{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.hint{
  color:var(--muted);
  font-size:13px;
}

/* =========================
   QUICK FILTERS
========================= */
.quick{
  display:grid;
  grid-template-columns:1fr 1fr 1fr auto auto;
  gap:10px;
  align-items:center;
}

.quick select{
  padding:10px;
  border-radius:12px;
  border:1px solid var(--line);
  outline:none;
  background:#fff;
}

.check{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:13px;
}

.checkRow{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:10px;
  color:var(--muted);
}

.hintSmall{
  margin-top:8px;
  color:var(--muted);
  font-size:12px;
}

/* =========================
   GRID HOME / TARJETAS
========================= */
.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:12px;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
}

.card__img{
  height:130px;
  background:#ffffff;
  display:grid;
  place-items:center;
  color:#6b7280;
  font-weight:800;
}

.card__body{
  padding:12px;
}

.badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.badge{
  font-size:12px;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#f8fafc;
  color:var(--muted);
}

.badge--ok{
  border-color:#bbf7d0;
  background:#f0fdf4;
  color:#166534;
}

.badge--no{
  border-color:#fecaca;
  background:#fef2f2;
  color:#991b1b;
}

.card__title{
  margin:0 0 6px;
  font-weight:900;
}

.card__meta{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.35;
}

.card__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:10px;
}

.price{
  font-size:16px;
  font-weight:1000;
}

/* =========================
   CATALOGO / FILTROS
========================= */
.catalogPage{
  padding:6px 0 28px;
}

.resultsTop{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:6px 0 14px;
}

.crumbs{
  color:var(--muted);
  font-size:13px;
}

.crumbs span{
  margin:0 6px;
  color:#9aa3af;
}

.resultsControls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.toggleView{
  display:flex;
  gap:8px;
}

.viewBtn{
  width:38px;
  height:34px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-weight:900;
}

.viewBtn.isActive{
  background:var(--blue);
  color:#fff;
  border-color:var(--blue);
}

.control{
  display:flex;
  align-items:center;
  gap:10px;
}

.control label{
  font-size:13px;
  color:var(--muted);
}

.control select{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  outline:none;
}

.resultsMeta{
  margin-left:auto;
  color:var(--muted);
  font-size:13px;
}

.resultsMeta strong{
  color:var(--text);
}

.catalogLayout{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:18px;
  align-items:start;
}

.filters{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  position:sticky;
  top:12px;
}

.filters h3{
  margin:0 0 12px;
  font-size:16px;
  letter-spacing:.5px;
}

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

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

.field label{
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}

.field input,
.field select{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  outline:none;
  background:#fff;
}

.filtersBox{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  background:#fff;
}

.filtersTitle{
  font-weight:900;
  margin-bottom:10px;
}

.filtersBox details{
  border-top:1px solid var(--line);
  padding:10px 0;
}

.filtersBox details:first-of-type{
  border-top:none;
}

.filtersBox summary{
  cursor:pointer;
  font-weight:800;
}

.filterBtns{
  display:flex;
  justify-content:flex-end;
  margin-top:10px;
}

.results{
  min-height:420px;
}

.productGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.productCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}

.productImg{
  height:170px;
  background:#ffffff;
  display:grid;
  place-items:center;
  padding:12px;
}

.productImg img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:0;
  background:#ffffff;
  border-radius:10px;
  filter:drop-shadow(0 4px 10px rgba(0,0,0,.08));
}

.productBody{
  padding:12px;
}

.productCode{
  font-weight:1000;
}

.productName{
  margin:6px 0 8px;
  color:var(--muted);
  font-size:12px;
  line-height:1.35;
}

.brandRow{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:12px;
}

.compareRow{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:10px;
  color:var(--muted);
}

.badgeBrand{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  border-radius:999px;
  padding:4px 10px;
  font-weight:900;
  font-size:11px;
}

.emptyState{
  margin-top:20px;
  padding:18px;
  border:1px dashed var(--line);
  border-radius:16px;
  color:var(--muted);
  background:#fff;
}

/* =========================
   PRE FOOTER
========================= */
.preFooter{
  background:var(--blue);
  margin-top:0;
  padding:52px 0 42px;
  position:relative;
  overflow:visible;
}

.preFooter__row{
  display:grid;
  grid-template-columns:520px 1fr;
  gap:80px;
  align-items:center;
}

.preFooter__card{
  background:#1565ea;
  min-height:430px;
  padding:38px 34px 28px;
  box-shadow:0 14px 30px rgba(0,0,0,.22);
  position:relative;
  transform:translateY(-95px);
}

.preFooter__titleMain{
  font-size:64px;
  line-height:.95;
  font-weight:1000;
  color:#fff;
  letter-spacing:1px;
  text-shadow:0 4px 10px rgba(0,0,0,.25);
}

.preFooter__titleSub{
  font-size:62px;
  line-height:.95;
  font-weight:1000;
  letter-spacing:1px;
  margin-top:8px;
  color:transparent;
  -webkit-text-stroke:2px #73ff35;
}

.preFooter__miniBtn{
  display:inline-block;
  margin-top:18px;
  padding:8px 18px;
  border:2px solid #dbeafe;
  border-radius:12px;
  color:#fff;
  font-weight:800;
  font-size:13px;
  text-decoration:none;
}

.preFooter__miniBtn:hover{
  background:rgba(255,255,255,.08);
}

.preFooter__iconWrap{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:26px;
}

.preFooter__book{
  width:260px;
  height:190px;
  border:8px solid #24f0db;
  border-radius:18px;
  position:relative;
  display:flex;
  justify-content:space-between;
  padding:18px;
  box-shadow:0 0 0 6px rgba(36,240,219,.08) inset;
}

.preFooter__book::before{
  content:"";
  position:absolute;
  top:-8px;
  bottom:-8px;
  left:50%;
  width:8px;
  transform:translateX(-50%);
  background:#24f0db;
  border-radius:10px;
}

.preFooter__book span{
  width:46%;
  border:6px solid #24f0db;
  border-radius:14px;
  height:100%;
  position:relative;
}

.preFooter__book span:first-child::before{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  top:22px;
  height:8px;
  background:#24f0db;
  box-shadow:0 26px 0 #24f0db, 0 52px 0 #24f0db;
  border-radius:6px;
}

.preFooter__book span:first-child::after{
  content:"";
  position:absolute;
  left:18px;
  bottom:22px;
  width:54px;
  height:38px;
  border-left:8px solid #24f0db;
  border-bottom:8px solid #24f0db;
  transform:skewX(-18deg);
}

.preFooter__newsletter{
  color:#fff;
  text-align:center;
  padding-right:20px;
}

.preFooter__newsletter h3{
  margin:0 0 14px;
  font-size:42px;
  font-weight:300;
  letter-spacing:.3px;
}

.preFooter__newsletter p{
  margin:0 0 26px;
  font-size:22px;
  color:rgba(255,255,255,.92);
  line-height:1.45;
}

.newsletterForm{
  display:flex;
  justify-content:center;
  align-items:stretch;
  max-width:760px;
  margin:0 auto;
}

.newsletterForm input{
  flex:1;
  min-width:0;
  padding:20px 22px;
  border:none;
  outline:none;
  background:#f5f5f5;
  font-size:18px;
  border-radius:0;
}

.newsletterForm button{
  border:none;
  background:#ff7a00;
  color:#fff;
  font-weight:900;
  padding:0 30px;
  min-width:180px;
  cursor:pointer;
  font-size:17px;
}

/* =========================
   FOOTER PREMIUM
========================= */
.footer,
.footer__row{
  display:none;
}

.siteFooter{
  background:linear-gradient(90deg,#1d1d20 0%, #2a2a2e 100%);
  color:#fff;
  padding:34px 0 18px;
  margin-top:0;
}

.footerGrid{
  display:grid;
  grid-template-columns:1.1fr 1fr 1.1fr 1fr 1fr;
  gap:34px;
  align-items:start;
}

.footerCol h3{
  margin:0 0 16px;
  font-size:24px;
  font-weight:300;
  letter-spacing:.5px;
  color:#fff;
}

.footerCol a{
  display:block;
  color:#bfc3cc;
  text-decoration:none;
  margin-bottom:10px;
  font-size:17px;
  line-height:1.45;
}

.footerCol a:hover{
  color:#fff;
}

.footerJoin p{
  margin:0 0 14px;
  color:#fff;
  font-size:18px;
  line-height:1.45;
}

.footerBtn{
  display:inline-block;
  background:#fff;
  color:#1f2937;
  padding:12px 18px;
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
  font-size:15px;
}

.footerBtn:hover{
  background:#f3f4f6;
}

.footerBrand{
  text-align:center;
}

.footerLogo{
  width:130px;
  background:#fff;
  padding:8px;
  border-radius:12px;
  margin-bottom:12px;
}

.footerSocial{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:10px;
}

.footerSocial a{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#fff;
  color:#111827;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:900;
  margin-bottom:0;
}

.footerBottom{
  margin-top:26px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.14);
  text-align:center;
  color:#d1d5db;
  font-size:15px;
}

/* =========================
   PRODUCTOS DESTACADOS / CARRUSEL
========================= */
.featuredHero{
  background:#f5f6f8;
  padding:34px 0 38px;
}

.featuredHero__title{
  text-align:center;
  margin:0 0 26px;
  font-size:20px;
  font-weight:1000;
  color:#111827;
  letter-spacing:.4px;
}

.featuredCarouselShell{
  display:grid;
  grid-template-columns:52px 1fr 52px;
  gap:12px;
  align-items:center;
}

.featuredViewport{
  overflow:hidden;
  width:100%;
}

.featuredCarousel{
  display:flex;
  gap:18px;
  transition:transform .35s ease;
  will-change:transform;
}

.featuredCard{
  flex:0 0 calc((100% - 54px) / 4);
  background:transparent;
  text-decoration:none;
}

.featuredCard__img{
  height:238px;
  background:#fff;
  border:1px solid #d9dee7;
  border-radius:14px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  overflow:hidden;
}

.featuredCard__img img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.featuredCard__noimg{
  color:#9ca3af;
  font-size:14px;
  font-weight:900;
}

.featuredCard__body{
  padding:14px 6px 0;
  text-align:center;
}

.featuredCard__name{
  font-size:14px;
  line-height:1.25;
  font-weight:900;
  color:#111827;
  min-height:36px;
  max-width:100%;
}

.featuredCard__sku{
  margin-top:8px;
  font-size:16px;
  line-height:1.2;
  font-weight:1000;
  color:var(--blue);
  word-break:break-word;
}

.featuredCard__brand{
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}

.featuredArrow{
  width:44px;
  height:44px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:var(--orange);
  font-size:34px;
  line-height:1;
  box-shadow:0 6px 16px rgba(0,0,0,.10);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.featuredArrow:hover{
  background:#fff7ed;
}

.featuredHero__actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* =========================
   BADGES / CUENTA / HOME EXTRA
========================= */
.cartBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:18px;
  height:18px;
  padding:0 6px;
  border-radius:999px;
  background:#f08a00;
  color:#fff;
  font-size:11px;
  font-weight:900;
  margin-left:4px;
}

.notificationBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:18px;
  height:18px;
  padding:0 6px;
  border-radius:999px;
  background:#ef4444;
  color:#fff;
  font-size:11px;
  font-weight:900;
  margin-left:4px;
}

.accountWrap{
  max-width:1200px;
  margin:24px auto;
  padding:0 16px;
}

.accountLayout{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:22px;
  align-items:start;
}

.sideCard,
.accountMainCard{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.sideHeader{
  background:#0b4aa2;
  color:#fff;
  padding:18px;
  font-weight:900;
  font-size:18px;
}

.sideBody{
  padding:16px;
}

.profileMini{
  text-align:center;
  padding-bottom:16px;
  border-bottom:1px solid #eef2f7;
  margin-bottom:16px;
}

.profileMini img{
  width:110px;
  height:110px;
  object-fit:cover;
  border-radius:50%;
  margin:0 auto 12px;
  border:4px solid #e5e7eb;
  background:#f8fafc;
  display:block;
}

.profileMini h3{
  margin:0 0 4px;
  font-size:20px;
  color:#111827;
}

.profileMini p{
  margin:0;
  color:#6b7280;
  font-size:14px;
  word-break:break-word;
}

.sideMenu{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.sideMenu a{
  display:block;
  padding:12px 14px;
  border-radius:12px;
  font-weight:800;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  color:#111827;
  text-decoration:none;
}

.sideMenu a.active{
  background:#0b4aa2;
  color:#fff;
  border-color:#0b4aa2;
}

.accountMainCard{
  padding:20px;
}

.accountTitle{
  margin:0 0 8px;
  font-size:28px;
  font-weight:900;
  color:#111827;
}

.accountSubtitle{
  margin:0 0 18px;
  color:#6b7280;
}

.homeSection{
  padding:28px 0;
}

.sectionTitle{
  font-size:28px;
  font-weight:900;
  margin:0 0 18px;
  color:#111827;
}

.productCard{
  display:block;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  color:#111827;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
  transition:.2s ease;
}

.productCard:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.productCard__img{
  height:180px;
  background:#f8fafc;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.productCard__img img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.noImage{
  font-weight:900;
  color:#9ca3af;
}

.productCard__body{
  padding:14px;
}

.productCard__body h3{
  margin:0 0 8px;
  font-size:16px;
  font-weight:900;
}

.productCard__body p{
  margin:0;
  color:#6b7280;
  font-size:14px;
}

/* =========================
   NOTIFICACIONES DROPDOWN
========================= */
.notifWrap{
  position:relative;
  display:inline-flex;
  align-items:center;
}

.notifBtn{
  border:none;
  background:transparent;
  cursor:pointer;
  color:inherit;
  padding:0;
  font:inherit;
}

.notifDropdown{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  width:360px;
  max-width:calc(100vw - 32px);
  background:#ffffff;
  color:#111827;
  border:1px solid #e5e7eb;
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  overflow:hidden;
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
  transition:.18s ease;
  z-index:1200;
}

.notifWrap.isOpen .notifDropdown{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.notifDropdown__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 16px;
  border-bottom:1px solid #eef2f7;
  background:#f8fafc;
}

.notifDropdown__head strong{
  font-size:15px;
  color:#111827;
}

.notifDropdown__head a{
  font-size:13px;
  color:#0b4aa2;
  font-weight:900;
  text-decoration:none;
}

.notifDropdown__body{
  max-height:420px;
  overflow:auto;
}

.notifItem{
  display:block;
  padding:14px 16px;
  border-bottom:1px solid #eef2f7;
  text-decoration:none;
  color:#111827;
  background:#fff;
}

.notifItem:hover{
  background:#f8fbff;
}

.notifItem:last-child{
  border-bottom:none;
}

.notifItem.isUnread{
  background:#eff6ff;
}

.notifItem__title{
  font-weight:900;
  font-size:14px;
  margin-bottom:4px;
}

.notifItem__msg{
  font-size:13px;
  color:#4b5563;
  line-height:1.45;
  margin-bottom:6px;
}

.notifItem__time{
  font-size:12px;
  color:#6b7280;
}

.notifEmpty{
  padding:16px;
  color:#6b7280;
  font-size:14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1100px){
  .header__row{
    grid-template-columns:180px minmax(320px, 1fr) 170px;
    gap:18px;
  }

  .logo__img{
    height:50px;
  }

  .iconMenu{
    justify-content:flex-end;
    gap:14px;
  }

  .iconMenu__text{
    font-size:11px;
  }

  .preFooter__row{
    grid-template-columns:1fr;
    gap:20px;
  }

  .preFooter__card{
    transform:none;
    min-height:auto;
  }

  .footerGrid{
    grid-template-columns:repeat(2,1fr);
  }

  .productGrid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .featuredCard{
    flex:0 0 calc((100% - 36px) / 3);
  }
}

@media (max-width:1000px){
  .productGrid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:900px){
  .header__row{
    grid-template-columns:1fr;
    gap:14px;
  }

  .logo{
    justify-content:center;
  }

  .search--main{
    width:100%;
  }

  .iconMenu{
    justify-content:center;
  }

  .catalogLayout{
    grid-template-columns:1fr;
  }

  .filters{
    position:relative;
    top:auto;
  }

  .productGrid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .accountLayout{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .featuredCarouselShell{
    grid-template-columns:40px 1fr 40px;
    gap:8px;
  }

  .featuredCard{
    flex:0 0 calc((100% - 18px) / 2);
  }

  .featuredCard__img{
    height:200px;
  }

  .featuredArrow{
    width:36px;
    height:36px;
    font-size:26px;
  }
}

@media (max-width:700px){
  .preFooter__titleMain,
  .preFooter__titleSub{
    font-size:42px;
  }

  .preFooter__newsletter h3{
    font-size:28px;
  }

  .preFooter__newsletter p{
    font-size:16px;
  }

  .newsletterForm{
    flex-direction:column;
  }

  .newsletterForm button{
    min-height:52px;
  }

  .footerGrid{
    grid-template-columns:1fr;
  }

  .footerBrand{
    text-align:left;
  }

  .footerSocial{
    justify-content:flex-start;
  }

  .hero__title{
    font-size:32px;
  }

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

  .notifDropdown{
    right:-40px;
    width:320px;
  }
}

@media (max-width:600px){
  .productGrid{
    grid-template-columns:1fr;
  }
}

@media (max-width:520px){
  .featuredCard{
    flex:0 0 100%;
  }
}

@media (max-width:480px){
  .grid{
    grid-template-columns:1fr;
  }
}
/* =========================
   TRACKING PREMIUM
========================= */
.trackingPage{
  padding:22px 0 32px;
}

.trackingWrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}

.trackingTopbar{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.trackingPage__title{
  margin:0 0 6px;
  font-size:34px;
  font-weight:1000;
  color:#111827;
}

.trackingPage__subtitle{
  margin:0;
  color:#6b7280;
  font-size:15px;
}

.trackingHero{
  background:linear-gradient(135deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid #dbe5f1;
  border-radius:24px;
  box-shadow:0 16px 34px rgba(11,74,162,.08);
  padding:24px;
  margin-bottom:18px;
}

.trackingHero__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.trackingHero__folio{
  color:#0b4aa2;
  font-size:13px;
  font-weight:900;
  letter-spacing:.3px;
  margin-bottom:8px;
}

.trackingHero__title{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.05;
  font-weight:1000;
  color:#111827;
}

.trackingHero__desc{
  margin:0;
  color:#4b5563;
  font-size:15px;
  line-height:1.5;
}

.progressWrap{
  margin-top:10px;
}

.progressBar{
  width:100%;
  height:12px;
  border-radius:999px;
  background:#e5e7eb;
  overflow:hidden;
  position:relative;
}

.progressBar__fill{
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#0b4aa2 0%, #2563eb 100%);
  transition:width .35s ease;
}

.progressSteps{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:8px;
  margin-top:16px;
}

.progressStep{
  text-align:center;
  position:relative;
}

.progressStep__dot{
  width:18px;
  height:18px;
  border-radius:50%;
  background:#d1d5db;
  margin:0 auto 8px;
  border:3px solid #fff;
  box-shadow:0 0 0 1px #d1d5db;
}

.progressStep__label{
  font-size:12px;
  font-weight:800;
  line-height:1.3;
  color:#6b7280;
}

.progressStep.isDone .progressStep__dot{
  background:#16a34a;
  box-shadow:0 0 0 1px #16a34a;
}

.progressStep.isDone .progressStep__label{
  color:#166534;
}

.progressStep.isCurrent .progressStep__dot{
  background:#2563eb;
  box-shadow:0 0 0 1px #2563eb, 0 0 0 6px rgba(37,99,235,.10);
}

.progressStep.isCurrent .progressStep__label{
  color:#1d4ed8;
}

.progressStep.isRejected .progressStep__dot,
.progressStep.isCancelled .progressStep__dot{
  background:#dc2626;
  box-shadow:0 0 0 1px #dc2626;
}

.progressStep.isRejected .progressStep__label,
.progressStep.isCancelled .progressStep__label{
  color:#991b1b;
}

.progressStep.isPending .progressStep__label{
  color:#9ca3af;
}

.trackingGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}

.trackingCard{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:22px;
  padding:20px;
  box-shadow:0 12px 26px rgba(0,0,0,.04);
  margin-bottom:18px;
}

.trackingCard__title{
  margin:0 0 14px;
  font-size:22px;
  font-weight:1000;
  color:#111827;
}

.trackingCard__sub{
  margin:0;
  color:#6b7280;
  font-size:14px;
}

.trackingInfoGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.trackingInfoBox{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:14px;
}

.trackingInfoBox b{
  display:block;
  margin-bottom:6px;
  font-size:13px;
  color:#6b7280;
}

.trackingShipHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.trackingShipGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.trackingShipBox{
  background:linear-gradient(180deg,#f8fbff 0%, #ffffff 100%);
  border:1px solid #dbe5f1;
  border-radius:18px;
  padding:16px;
  min-height:94px;
}

.trackingShipBox__label{
  display:block;
  font-size:12px;
  color:#6b7280;
  font-weight:800;
  margin-bottom:8px;
}

.trackingShipBox strong{
  font-size:15px;
  color:#111827;
  line-height:1.4;
  word-break:break-word;
}

.trackingPhotoWrap{
  margin-top:18px;
}

.trackingPhotoWrap__title{
  font-size:14px;
  font-weight:900;
  color:#111827;
  margin-bottom:10px;
}

.trackingPhotoLink{
  display:inline-block;
}

.trackingPhoto{
  width:280px;
  max-width:100%;
  border-radius:18px;
  border:1px solid #e5e7eb;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
  background:#fff;
}

.trackingTimeline{
  display:flex;
  flex-direction:column;
  gap:0;
}

.trackingTimeline__item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:14px 0;
  border-bottom:1px solid #eef2f7;
}

.trackingTimeline__item:last-child{
  border-bottom:none;
}

.trackingTimeline__dot{
  width:16px;
  height:16px;
  border-radius:50%;
  background:#d1d5db;
  margin-top:4px;
  flex-shrink:0;
  box-shadow:0 0 0 1px #d1d5db;
}

.trackingTimeline__content{
  flex:1;
}

.trackingTimeline__title{
  font-size:16px;
  font-weight:900;
  color:#111827;
  margin-bottom:4px;
}

.trackingTimeline__desc{
  font-size:14px;
  color:#6b7280;
  line-height:1.45;
}

.trackingTimeline__item.isDone .trackingTimeline__dot{
  background:#16a34a;
  box-shadow:0 0 0 1px #16a34a;
}

.trackingTimeline__item.isCurrent .trackingTimeline__dot{
  background:#2563eb;
  box-shadow:0 0 0 1px #2563eb, 0 0 0 6px rgba(37,99,235,.08);
}

.trackingTimeline__item.isRejected .trackingTimeline__dot,
.trackingTimeline__item.isCancelled .trackingTimeline__dot{
  background:#dc2626;
  box-shadow:0 0 0 1px #dc2626;
}

@media (max-width:1000px){
  .trackingShipGrid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .progressSteps{
    grid-template-columns:repeat(3,minmax(0,1fr));
    row-gap:14px;
  }
}

@media (max-width:800px){
  .trackingGrid,
  .trackingInfoGrid{
    grid-template-columns:1fr;
  }

  .trackingHero__title{
    font-size:26px;
  }
}

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

  .progressSteps{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .trackingPage__title{
    font-size:28px;
  }

  .trackingHero{
    padding:18px;
  }

  .trackingCard{
    padding:16px;
  }
}