* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  background: #f7f7f8;
  color: #111827;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 24px;
}

/* Navbar */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: #e11d48;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #111827;
  font-weight: 500;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #111827;
  color: #fff;
  margin-top: 40px;
}

/* ===== Shop ===== */
.page-title{
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}
.page-subtitle{
  margin: 6px 0 0;
  color: #6b7280;
}

.shop-head{
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip{
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  font-size: 14px;
}
.chip.active{
  border-color: #e11d48;
  color: #e11d48;
}

.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 960px){
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .product-grid{ grid-template-columns: 1fr; }
}

.product-card{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.product-media{
  position: relative;
  display: block;
  height: 220px;
  background: #f3f4f6;
}
.product-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge{
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #111827;
  color: #fff;
}
.badge.out{ background: #6b7280; }
.badge.in{ background: #e11d48; }

.product-body{
  padding: 14px 14px 16px;
}

.product-meta{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #6b7280;
  font-size: 12px;
}

.product-title{
  margin: 8px 0 10px;
  font-size: 16px;
  line-height: 1.25;
}
.product-title a{
  text-decoration: none;
  color: #111827;
}

.product-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.price{
  font-weight: 700;
  color: #111827;
}

.btn{
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  background: #e11d48;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.btn:hover{ opacity: 0.92; }

.empty-state{
  grid-column: 1 / -1;
  padding: 18px;
  background: #fff;
  border: 1px dashed #e5e7eb;
  border-radius: 16px;
}

.product-media {
  margin-bottom: 6px;
}

.product-title {
  margin-top: 10px;
}

.badge {
  z-index: 2;
}

/* ===== Detail Page ===== */
.detail-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 900px){
  .detail-grid{ grid-template-columns: 1fr; }
}

.detail-img{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.detail-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.crumb{
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 10px;
}
.crumb a{ color: #6b7280; text-decoration: none; }
.crumb span{ margin: 0 6px; }

.detail-title{
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
}

.detail-price{
  margin: 10px 0 14px;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.detail-row{
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #e5e7eb;
  font-size: 14px;
}
.detail-row .label{ color: #6b7280; }

.ok{ color: #059669; font-weight: 700; }
.bad{ color: #dc2626; font-weight: 700; }

.detail-desc{
  margin: 14px 0 0;
  color: #374151;
  line-height: 1.6;
}

.buybox{
  margin-top: 16px;
  padding: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}

.buy-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 520px){
  .buy-row{ grid-template-columns: 1fr; }
}

.field label{
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}

.field select,
.field input{
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
  background: #fff;
}

.btn.wide{
  width: 100%;
  border: 0;
  cursor: pointer;
}

.btn:disabled{
  opacity: 0.6;
  cursor: not-allowed;
}

.alert{
  margin: 12px 0;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
}
.alert.error{
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.alert.success{
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.alert a{
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.muted{ color: #6b7280; }
.muted.small{ font-size: 12px; margin-top: 10px; }

/* ===== Auth ===== */
.auth{
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 30px 0;
}
.auth-card{
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.auth-title{
  margin: 0;
  font-size: 24px;
}
.auth-form{
  margin-top: 12px;
}
.auth-form label{
  display:block;
  margin: 10px 0 6px;
  font-size: 13px;
  color: #6b7280;
}
.auth-form input{
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
}

/* ===== Cart ===== */
.cart-grid{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  margin-top: 16px;
}
@media (max-width: 900px){
  .cart-grid{ grid-template-columns: 1fr; }
}

.cart-item{
  display: grid;
  grid-template-columns: 90px 1fr 260px;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 12px;
}
@media (max-width: 900px){
  .cart-item{ grid-template-columns: 80px 1fr; }
  .cart-actions{ grid-column: 1 / -1; }
}

.cart-thumb{
  width: 90px;
  height: 90px;
  border-radius: 14px;
  object-fit: cover;
  background: #f3f4f6;
}

.cart-name{ font-weight: 700; }
.cart-price{ margin-top: 6px; font-weight: 700; }

.cart-actions{
  display: grid;
  justify-items: end;
  gap: 10px;
}
.qty-form{
  display: flex;
  gap: 8px;
  align-items: center;
}
.qty-form input{
  width: 80px;
  padding: 10px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.btn.small{
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}
.btn.ghost{
  background: transparent;
  color: #111827;
  border: 1px solid #e5e7eb;
}
.cart-subtotal{
  font-weight: 800;
}

.cart-summary{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
  height: fit-content;
}
.sum-row{
  display:flex;
  justify-content: space-between;
  padding: 10px 0 14px;
  border-top: 1px solid #e5e7eb;
  margin-top: 10px;
}

/* ===== Checkout ===== */
.checkout-grid{
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  margin-top: 16px;
}
@media (max-width: 900px){
  .checkout-grid{ grid-template-columns: 1fr; }
}

.checkout-form, .checkout-summary{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
}

.checkout-form h3, .checkout-summary h3{
  margin-top: 0;
}

.checkout-form label{
  display:block;
  margin: 10px 0 6px;
  font-size: 13px;
  color: #6b7280;
}

.checkout-form input,
.checkout-form textarea{
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
}

.sum-item{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #e5e7eb;
}
.sum-name{ font-weight: 700; }

.sum-total{
  display:flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  margin-top: 12px;
  font-size: 16px;
}

/* ===== Home (Index) ===== */
main.container{ padding-top: 28px; }

.hero{
  margin-top: 10px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.hero-text{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.hero-badge{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.hero-text h1{
  font-size: 44px;
  margin: 12px 0 10px;
  line-height: 1.05;
}
.hero-text p{
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.6;
}

.hero-actions{
  display:flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hero-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
@media (max-width: 520px){
  .hero-stats{ grid-template-columns: 1fr; }
}
.stat{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(225,29,72,.08), rgba(225,29,72,0));
}
.stat b{ display:block; }
.stat span{ display:block; margin-top: 4px; }

.hero-card{
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(1200px 300px at 20% 0%, rgba(225,29,72,.20), transparent 60%),
              radial-gradient(800px 240px at 90% 30%, rgba(17,24,39,.18), transparent 55%),
              var(--card);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.hero-card-inner{ padding: 18px; height: 100%; display:flex; flex-direction: column; gap: 14px; }

.hero-card-top{
  display:flex;
  justify-content: space-between;
  align-items:center;
}
.pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(225,29,72,.12);
  border: 1px solid rgba(225,29,72,.25);
  font-weight: 800;
  font-size: 12px;
}
.pill.outline{
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.hero-product{
  display:flex;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,.65);
}
:root[data-theme="dark"] .hero-product{ background: rgba(15,23,42,.65); }

.hero-product-img{
  width: 120px;
  height: 120px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(225,29,72,.25), rgba(17,24,39,.12));
  border: 1px solid var(--line);
  flex: 0 0 auto;
}
.hero-product-info h3{
  margin: 0;
  font-size: 16px;
}
.hero-product-info p{ margin: 6px 0 0; color: var(--muted); }

.hero-product-bottom{
  margin-top: 10px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
}
.price-big{
  font-weight: 900;
  color: var(--text);
}

.home-sections{
  margin-top: 18px;
}
.section-head h2{
  margin: 0;
  font-size: 22px;
}
.section-head p{ margin: 6px 0 0; }

.cat-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}
@media (max-width: 900px){
  .cat-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .cat-grid{ grid-template-columns: 1fr; }
}
.cat-card{
  text-decoration: none;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items:center;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.cat-card:hover{
  transform: translateY(-2px);
  border-color: rgba(225,29,72,.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
.cat-icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(225,29,72,.12);
  border: 1px solid rgba(225,29,72,.25);
  font-size: 20px;
}

.cta{
  margin: 18px 0 10px;
}
.cta-box{
  background: linear-gradient(135deg, rgba(225,29,72,.14), rgba(17,24,39,.10));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-box h2{ margin: 0; font-size: 22px; }
.cta-box p{ margin: 6px 0 0; max-width: 60ch; }

/* ===== HEADER / NAVBAR ===== */
.navbar{
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* Logo */
.logo{
  font-size: 20px;
  font-weight: 800;
  color: #e11d48;
  text-decoration: none;
}

/* Center menu */
.nav-center{
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav-center a{
  text-decoration: none;
  font-weight: 500;
  color: #111827;
  position: relative;
}

.nav-center a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #e11d48;
  transition: width .2s ease;
}

.nav-center a:hover::after{
  width: 100%;
}

/* Right actions */
.nav-right{
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn{
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.cart-btn{
  position: relative;
  text-decoration: none;
  font-size: 18px;
}

.cart-badge{
  position: absolute;
  top: -6px;
  right: -8px;
  background: #e11d48;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 700;
}

.user-name{
  font-weight: 600;
  font-size: 14px;
  color: #111827;
}

/* Buttons */
.btn{
  background: #e11d48;
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn.small{
  padding: 7px 12px;
  font-size: 14px;
}

.btn.ghost{
  background: transparent;
  color: #111827;
  border: 1px solid #e5e7eb;
}

/* ===== About ===== */
.about{ margin-top: 10px; }

.about-hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 900px){
  .about-hero{ grid-template-columns: 1fr; }
}

.about-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.about-card-inner{ padding: 18px; }

.about-list{ margin-top: 12px; display:grid; gap: 10px; }
.about-item{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(225,29,72,.08), rgba(225,29,72,0));
}
.about-item b{ display:block; }
.about-item p{ margin: 6px 0 0; }

.about-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; }
}

.about-box{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.about-box h2{ margin: 0 0 8px; font-size: 18px; }

.about-ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.about-ul li{ margin: 6px 0; }

/* ===== Contact ===== */
.contact{ margin-top: 10px; }

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 16px;
  margin-top: 14px;
}
@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.contact-card, .info-box{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.contact-form label{
  display:block;
  margin: 10px 0 6px;
  font-size: 13px;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: var(--card);
  color: var(--text);
}
.contact-form textarea{ resize: vertical; }

.info-row{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.info-row .label{ color: var(--muted); }
.info-row .value{ font-weight: 700; }

.faq{ margin-top: 12px; }
.faq p{ margin: 6px 0 0; }

/* ===== UI POLISH PACK (ArShoes) ===== */
:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --border:#e5e7eb;
  --soft:#f8fafc;
  --brand:#e11d48;
  --brand2:#fb7185;
  --shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}

body{ color:var(--text); background:var(--bg); }
.container{ max-width:1100px; margin:0 auto; padding: 0 18px; }

/* Navbar */
.navbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,0.7);
}
.nav-container{
  max-width:1100px;
  margin:0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.logo{
  font-weight: 900;
  letter-spacing: .2px;
  text-decoration:none;
  color: var(--brand);
  font-size: 20px;
}
.nav-center{
  display:flex;
  gap: 22px;
  align-items:center;
}
.nav-center a{
  text-decoration:none;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  opacity: .85;
}
.nav-center a:hover{ opacity: 1; color: var(--brand); }

.nav-right{ display:flex; align-items:center; gap:10px; }

/* Mobile menu button */
.menu-btn{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius: 12px;
  padding: 8px 10px;
  cursor:pointer;
  font-weight: 800;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color:#fff;
  text-decoration:none;
  font-weight: 800;
  font-size: 13px;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  box-shadow: 0 8px 22px rgba(225, 29, 72, .22);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px) scale(.99); }
.btn.ghost{
  background:#fff;
  color: var(--brand);
  border-color: var(--border);
  box-shadow:none;
}
.btn.small{ padding: 8px 12px; font-size: 13px; }
.btn.wide{ width:100%; }

/* Cart button & badge */
.cart-btn{
  position:relative;
  text-decoration:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius: 999px;
  padding: 8px 12px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: var(--text);
}
.cart-badge{
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--brand);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  font-weight: 900;
  padding: 0 6px;
}

/* User name chip */
.user-name{
  padding: 8px 12px;
  border:1px solid var(--border);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  background:#fff;
}

/* Cards */
.card, .auth-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Toast */
.toast{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display:none;
  background:#0f172a;
  color:#fff;
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 320px;
  font-weight: 700;
  font-size: 13px;
}
.toast.show{ display:block; animation: pop .2s ease; }
@keyframes pop { from{ transform: translateY(8px); opacity:0 } to{ transform: translateY(0); opacity:1 } }

/* Sticky shadow on scroll (JS adds .scrolled) */
.navbar.scrolled{
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
}

/* Mobile layout */
@media (max-width: 860px){
  .menu-btn{ display:inline-flex; }
  .nav-center{
    display:none;
    position:absolute;
    left: 18px;
    right: 18px;
    top: 62px;
    background:#fff;
    border:1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 10px;
    align-items:flex-start;
  }
  .nav-center.open{ display:flex; }
  .nav-center a{ width:100%; padding: 10px 12px; border-radius: 12px; }
  .nav-center a:hover{ background: var(--soft); }
}

/* ===== FONT SYSTEM (ArShoes Elegant) ===== */
body{
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Headings pakai Playfair */
h1, h2, h3, h4, h5, h6,
.logo{
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}

/* Hero title lebih berasa */
.hero h1,
.hero-title{
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Button & nav tetap modern */
.nav-center a,
.btn,
.user-name{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

/* Muted text lebih soft */
.muted{
  font-weight: 500;
  color: #64748b;
}

/* ===== FORCE FONT RESET (KILL ARIAL) ===== */

/* Semua teks default */
html, body {
  font-family: 'Nunito Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Semua paragraf & teks umum */
p, span, li, a, label, input, textarea, button, small {
  font-family: 'Nunito Sans', sans-serif !important;
}

/* Heading & logo tetap elegan */
h1, h2, h3, h4, h5, h6,
.logo {
  font-family: 'Playfair Display', serif !important;
  letter-spacing: -0.02em;
}

/* Hero description lebih halus */
.hero p,
.hero-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

/* Button & nav clean */
.btn,
.nav-center a,
.user-name {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 700;
}

/* ===== STICKY FOOTER FIX (ArShoes) ===== */
html, body { height: 100%; }

body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* main harus ngambil sisa tinggi biar footer terdorong ke bawah */
main.container{
  flex: 1 0 auto;
}

/* footer selalu di bawah */
.site-footer{
  margin-top: auto;
}

/* ===== FORCE NUNITO SANS FOR ADMIN DASHBOARD ===== */

/* Semua elemen di halaman admin */
body,
.admin * {
  font-family: 'Nunito Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Judul & heading admin */
.admin h1,
.admin h2,
.admin h3,
.admin h4,
.admin h5,
.admin h6,
.page-title,
.dashboard-title {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Card title & section title admin */
.card h3,
.card-title,
.section-title {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 600;
}

/* Table admin */
.admin table,
.admin th,
.admin td {
  font-family: 'Nunito Sans', sans-serif !important;
}

/* ===== ABSOLUTE FONT OVERRIDE FOR ADMIN (FINAL) ===== */

/* Semua teks admin tanpa kompromi */
body.admin,
body.admin * {
  font-family: 'Nunito Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Judul halaman admin */
body.admin h1,
body.admin h2,
body.admin h3,
body.admin h4,
body.admin h5,
body.admin h6 {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}

/* Page title & subtitle (yang bandel Arial) */
body.admin .page-title,
body.admin .page-subtitle,
body.admin .dashboard-title,
body.admin .section-title {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 600 !important;
}

/* Card title */
body.admin .card h3,
body.admin .card h4 {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 600 !important;
}

/* Table header & content */
body.admin table,
body.admin th,
body.admin td {
  font-family: 'Nunito Sans', sans-serif !important;
}

/* Heading besar ala hero */
.page-title,
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}
