/* =============================================
   DIGITECH ACCESSORIES HUB — Main Stylesheet
   accessories.digitechmedia.com
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  background: #f4f5fb;
  color: #1a1a2e;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

:root {
  --red:        #FF3737;
  --red-dark:   #cc2020;
  --red-light:  #fff0f0;
  --blue:       #261CC1;
  --blue-dark:  #1a12a0;
  --blue-light: #eeeffe;
  --green:      #16a34a;
  --green-light:#f0fdf4;
  --amber:      #f59e0b;
  --bg:         #f4f5fb;
  --surface:    #ffffff;
  --surface2:   #f0f1fa;
  --border:     #e0e2f0;
  --text:       #1a1a2e;
  --muted:      #6b6f8a;
}

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--blue);
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 16px rgba(38,28,193,.3);
}
.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-icon {
  background: var(--red); color: #fff;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; border-radius: 7px; flex-shrink: 0;
}
.logo-text  { color: #fff; font-size: 15px; font-weight: 800; line-height: 1.25; }
.logo-sub   { color: rgba(255,255,255,.6); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.nav-links  { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.nav-link {
  color: rgba(255,255,255,.75); cursor: pointer;
  font-size: 12px; padding: 7px 13px; border-radius: 6px;
  border: none; background: none; font-family: inherit; font-weight: 600;
  transition: all .2s;
}
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,.15); color: #fff; }
.cart-btn {
  background: var(--red); color: #fff;
  border: none; padding: 9px 18px;
  font-family: inherit; font-size: 12px; font-weight: 700;
  cursor: pointer; border-radius: 7px; position: relative;
  transition: background .2s; margin-left: 6px;
}
.cart-btn:hover { background: var(--red-dark); }
.cart-badge {
  position: absolute; top: -8px; right: -8px;
  background: #fff; color: var(--red);
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 11px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; border: 2px solid var(--blue);
}

/* ===== HERO ===== */
.hero {
  background: var(--blue);
  padding: 68px 28px 76px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: var(--red); opacity: .09; border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: 40%;
  width: 280px; height: 280px;
  background: #fff; opacity: .04; border-radius: 50%;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; position: relative; z-index: 1;
}
.hero-tag {
  background: var(--red); color: #fff;
  display: inline-block; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px;
  margin-bottom: 16px; font-weight: 700;
}
.hero-title { font-size: 44px; font-weight: 900; line-height: 1.1; margin-bottom: 16px; color: #fff; }
.hero-title em { color: var(--red); font-style: normal; }
.hero-sub   { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.95; margin-bottom: 28px; }
.hero-btns  { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-visual { display: flex; flex-direction: column; gap: 12px; }
.hero-img   { border-radius: 12px; overflow: hidden; border: 3px solid rgba(255,255,255,.15); }
.hero-img img { width: 100%; height: 230px; object-fit: cover; }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-card  {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; padding: 14px;
}
.hero-card-accent { width: 28px; height: 3px; background: var(--red); border-radius: 2px; margin-bottom: 8px; }
.hero-card-label  { font-size: 10px; color: rgba(255,255,255,.6); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; }
.hero-card-val    { font-size: 18px; font-weight: 900; color: #fff; }

/* ===== BUTTONS ===== */
.btn-red   { background: var(--red);   color: #fff; border: none; padding: 13px 26px; font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer; border-radius: 7px; transition: background .15s; }
.btn-red:hover   { background: var(--red-dark); }
.btn-white { background: #fff; color: var(--blue); border: none; padding: 13px 26px; font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer; border-radius: 7px; transition: opacity .15s; }
.btn-white:hover { opacity: .9; }
.btn-blue  { background: var(--blue); color: #fff; border: none; padding: 13px 26px; font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer; border-radius: 7px; transition: background .15s; }
.btn-blue:hover  { background: var(--blue-dark); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  padding: 18px 28px;
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num   { font-size: 22px; font-weight: 900; color: var(--blue); }
.stat-label { font-size: 10px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; font-weight: 600; }

/* ===== SECTION LAYOUT ===== */
.section { max-width: 1100px; margin: 0 auto; padding: 56px 28px; }
.section-header { display: flex; align-items: center; gap: 14px; margin-bottom: 34px; }
.section-accent { width: 4px; height: 28px; background: var(--red); border-radius: 2px; flex-shrink: 0; }
.section-sub    { font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 2px; }
.section-title  { font-size: 24px; font-weight: 900; color: var(--text); }
.section-line   { flex: 1; height: 1px; background: var(--border); }

/* ===== CATEGORY GRID ===== */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 28px; }
.cat-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 16px 8px;
  text-align: center; cursor: pointer; transition: all .2s;
}
.cat-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.cat-card.active { border-color: var(--blue); background: var(--blue-light); }
.cat-name  { font-size: 12px; font-weight: 700; color: var(--text); }
.cat-count { font-size: 10px; color: var(--muted); margin-top: 3px; }

/* ===== PRODUCT GRID ===== */
.products-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
}
.products-count { font-size: 13px; color: var(--muted); font-weight: 600; }
.search-box {
  background: var(--surface); border: 1.5px solid var(--border);
  color: var(--text); padding: 9px 14px;
  font-family: inherit; font-size: 13px;
  width: 260px; outline: none; border-radius: 8px; transition: border-color .2s;
}
.search-box:focus { border-color: var(--blue); }
.search-box::placeholder { color: var(--muted); }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prod-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: all .2s;
  display: flex; flex-direction: column;
}
.prod-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(38,28,193,.1); }
.prod-img   { height: 165px; overflow: hidden; background: var(--surface2); position: relative; flex-shrink: 0; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.prod-card:hover .prod-img img { transform: scale(1.05); }
.prod-badge { position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 4px; }
.prod-badge.blue  { background: var(--blue); }
.prod-badge.green { background: var(--green); }
.prod-info  { padding: 15px; flex: 1; display: flex; flex-direction: column; }
.prod-cat   { font-size: 10px; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.prod-name  { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.prod-desc  { font-size: 11px; color: var(--muted); margin-bottom: 12px; line-height: 1.75; flex: 1; }
.prod-bottom { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.prod-price  { font-size: 16px; font-weight: 900; color: var(--red); }
.prod-old    { font-size: 11px; color: var(--muted); text-decoration: line-through; margin-left: 4px; }
.add-btn {
  background: var(--blue); color: #fff; border: none;
  padding: 8px 13px; font-family: inherit; font-size: 11px; font-weight: 700;
  cursor: pointer; border-radius: 6px; transition: background .15s; white-space: nowrap;
}
.add-btn:hover { background: var(--blue-dark); }

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 200;
  display: flex; justify-content: flex-end;
}
.cart-panel {
  background: var(--surface); width: 400px; max-width: 100%;
  height: 100%; display: flex; flex-direction: column;
  border-left: 2px solid var(--border);
}
.cart-header { padding: 18px 22px; background: var(--blue); display: flex; justify-content: space-between; align-items: center; }
.cart-title  { font-size: 14px; font-weight: 800; color: #fff; }
.close-btn   { background: rgba(255,255,255,.2); border: none; color: #fff; width: 30px; height: 30px; cursor: pointer; font-size: 16px; border-radius: 6px; font-family: inherit; transition: background .2s; }
.close-btn:hover { background: rgba(255,255,255,.35); }
.cart-items  { flex: 1; overflow-y: auto; padding: 14px; }
.cart-item   { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 52px; height: 52px; border-radius: 7px; object-fit: cover; flex-shrink: 0; background: var(--surface2); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name  { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 2px; line-height: 1.4; }
.cart-item-price { font-size: 12px; color: var(--red); font-weight: 700; margin-bottom: 6px; }
.cart-item-qty   { display: flex; align-items: center; gap: 6px; }
.qty-btn   { background: var(--surface2); border: 1px solid var(--border); color: var(--text); width: 24px; height: 24px; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; border-radius: 4px; font-weight: 700; font-family: inherit; }
.qty-num   { font-size: 13px; min-width: 20px; text-align: center; font-weight: 700; }
.cart-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 17px; align-self: flex-start; font-family: inherit; }
.cart-remove:hover { color: var(--red); }
.cart-footer { padding: 18px 22px; border-top: 2px solid var(--border); }
.cart-total  { display: flex; justify-content: space-between; margin-bottom: 12px; align-items: center; }
.cart-total-label { font-size: 13px; color: var(--muted); font-weight: 600; }
.cart-total-val   { font-weight: 900; color: var(--text); font-size: 18px; }
.checkout-btn { width: 100%; background: var(--red); color: #fff; border: none; padding: 14px; font-family: inherit; font-size: 14px; font-weight: 800; cursor: pointer; border-radius: 7px; transition: background .15s; }
.checkout-btn:hover { background: var(--red-dark); }
.empty-cart      { text-align: center; padding: 52px 20px; color: var(--muted); }
.empty-cart-icon { font-size: 48px; margin-bottom: 12px; }
.empty-cart-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; color: var(--text); }

/* ===== CHECKOUT MODAL ===== */
.modal-wrap {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6); z-index: 300;
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.modal {
  background: var(--surface); border-radius: 14px;
  width: 100%; max-width: 540px; max-height: 94vh;
  overflow-y: auto; border: 1.5px solid var(--border);
}
.modal-header { padding: 20px 24px; background: var(--blue); border-radius: 12px 12px 0 0; display: flex; justify-content: space-between; align-items: center; }
.modal-title  { font-size: 15px; font-weight: 800; color: #fff; }
.modal-body   { padding: 22px 24px; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 16px; }
.form-label { font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; display: block; font-weight: 700; }
.form-input {
  width: 100%; background: var(--surface2);
  border: 1.5px solid var(--border); color: var(--text);
  padding: 10px 13px; font-family: inherit; font-size: 13px;
  outline: none; border-radius: 7px; transition: border-color .2s;
}
.form-input:focus { border-color: var(--blue); }
.form-input.error { border-color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ===== ORDER SUMMARY ===== */
.order-summary { background: var(--blue-light); border: 1.5px solid rgba(38,28,193,.15); border-radius: 10px; padding: 14px; margin-bottom: 16px; }
.order-summary-title { font-size: 10px; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; font-weight: 800; }
.order-line       { display: flex; justify-content: space-between; font-size: 12px; padding: 3px 0; color: var(--muted); }
.order-line-total { font-weight: 900; color: var(--blue); font-size: 15px; border-top: 1.5px solid rgba(38,28,193,.15); padding-top: 10px; margin-top: 8px; display: flex; justify-content: space-between; }

/* ===== MTN MOMO ===== */
.momo-box    { background: #fff9e6; border: 1.5px solid var(--amber); border-radius: 10px; padding: 16px; margin-bottom: 16px; }
.momo-box.success { background: var(--green-light); border-color: var(--green); }
.momo-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.momo-logo   { background: var(--amber); color: #000; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 12px; flex-shrink: 0; }
.momo-title  { font-weight: 800; font-size: 14px; color: #92400e; }
.momo-sub    { font-size: 11px; color: #b45309; }
.momo-steps  { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.momo-step   { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: #78350f; line-height: 1.5; }
.momo-step-num { background: var(--amber); color: #000; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 10px; flex-shrink: 0; margin-top: 1px; }
.momo-prompt-box { background: #fef3c7; border: 1.5px dashed var(--amber); border-radius: 8px; padding: 14px; text-align: center; margin-top: 10px; }
.momo-amount { font-size: 20px; font-weight: 900; color: #92400e; }
.momo-ref    { font-size: 11px; color: #b45309; margin-top: 4px; font-family: monospace; letter-spacing: 1px; }
.momo-timer  { font-size: 13px; color: #b45309; font-weight: 700; margin-top: 8px; }
.momo-confirm-btn { width: 100%; background: var(--amber); color: #000; border: none; padding: 13px; font-family: inherit; font-size: 13px; font-weight: 800; cursor: pointer; border-radius: 7px; margin-top: 12px; transition: opacity .2s; }
.momo-confirm-btn:hover { opacity: .9; }

/* ===== PAYMENT METHODS ===== */
.pay-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.pay-method { background: var(--surface2); border: 1.5px solid var(--border); border-radius: 8px; padding: 11px; text-align: center; cursor: pointer; font-size: 12px; font-weight: 600; color: var(--muted); transition: all .2s; }
.pay-method.selected { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
.pay-method.selected.momo-opt { border-color: var(--amber); background: #fff9e6; color: #92400e; }
.pay-method-icon { font-size: 18px; margin-bottom: 3px; }
.pay-info-box { border-radius: 8px; padding: 14px; margin-bottom: 16px; font-size: 13px; line-height: 1.8; }
.pay-info-box.airtel { background: #f0fdf4; border: 1.5px solid #86efac; color: #166534; }
.pay-info-box.bank   { background: var(--blue-light); border: 1.5px solid rgba(38,28,193,.2); color: var(--blue); }
.pay-info-box.cod    { background: #fafafa; border: 1.5px solid var(--border); color: var(--muted); }

/* ===== SUCCESS SCREEN ===== */
.success-screen { text-align: center; padding: 38px 22px; }
.success-icon  { font-size: 68px; margin-bottom: 14px; }
.success-title { font-size: 22px; font-weight: 900; color: var(--blue); margin-bottom: 8px; }
.success-ref   { background: var(--blue-light); border: 1.5px solid rgba(38,28,193,.15); border-radius: 8px; padding: 10px; margin: 14px 0; font-size: 13px; font-weight: 700; color: var(--blue); }
.success-msg   { color: var(--muted); font-size: 13px; line-height: 2; }

/* ===== FAQ ===== */
.faq-section { background: var(--surface); border-top: 2px solid var(--border); border-bottom: 2px solid var(--border); }
.faq-inner   { max-width: 1100px; margin: 0 auto; padding: 56px 28px; }
.faq-item    { border-bottom: 1px solid var(--border); padding: 16px 0; cursor: pointer; }
.faq-item:last-child { border-bottom: none; }
.faq-q       { display: flex; justify-content: space-between; align-items: center; color: var(--text); font-weight: 700; font-size: 14px; gap: 12px; }
.faq-a       { color: var(--muted); font-size: 13px; line-height: 1.9; padding-top: 10px; display: none; }
.faq-a.open  { display: block; }
.faq-arrow   { color: var(--blue); font-size: 14px; font-weight: 900; flex-shrink: 0; transition: transform .25s; }
.faq-arrow.open { transform: rotate(180deg); }

/* ===== ABOUT ===== */
.about-text  { max-width: 720px; color: var(--muted); font-size: 14px; line-height: 2; margin-bottom: 12px; }
.store-img   { width: 100%; border-radius: 12px; max-height: 320px; object-fit: cover; margin: 24px 0; }
.about-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.about-card  { background: var(--surface); border: 1.5px solid var(--border); border-radius: 12px; padding: 22px; border-top: 4px solid var(--red); }
.about-card-icon  { font-size: 26px; margin-bottom: 8px; }
.about-card-label { font-size: 10px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.about-card-val   { font-size: 13px; font-weight: 800; color: var(--text); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; max-width: 840px; }
.contact-row  { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.contact-icon { font-size: 14px; width: 36px; height: 36px; background: var(--blue-light); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-lbl  { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 2px; }
.contact-val  { font-size: 13px; color: var(--text); font-weight: 600; }
.contact-form { background: var(--surface); border: 1.5px solid var(--border); border-radius: 12px; padding: 24px; border-top: 4px solid var(--red); }
.contact-form h3 { font-weight: 800; margin-bottom: 18px; color: var(--text); font-size: 15px; }

/* ===== FOOTER ===== */
footer { background: var(--blue); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding: 48px 28px 32px; }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer-brand-icon { background: var(--red); color: #fff; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; border-radius: 5px; }
.footer-brand-name { color: #fff; font-size: 14px; font-weight: 800; }
.footer-desc  { color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.9; }
.footer-col-title { color: #fff; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; font-weight: 800; }
.footer-link  { color: rgba(255,255,255,.65); font-size: 12px; display: block; margin-bottom: 8px; cursor: pointer; transition: color .2s; }
.footer-link:hover { color: var(--red); }
.footer-contact-item { color: rgba(255,255,255,.75); font-size: 12px; display: block; margin-bottom: 8px; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 14px 28px; border-top: 1px solid rgba(255,255,255,.15); display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 6px; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 22px; right: 22px;
  color: #fff; padding: 11px 18px;
  font-size: 13px; font-weight: 700; z-index: 9999;
  border-radius: 8px; border-left: 4px solid var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  animation: slideIn .3s ease; max-width: 300px;
  background: var(--blue);
}
.toast.success { background: var(--green); border-left-color: #fff; }
.toast.warning { background: var(--amber); border-left-color: #fff; color: #000; }
@keyframes slideIn { from { transform: translateX(130%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== NO RESULTS ===== */
.no-results { text-align: center; padding: 52px 0; color: var(--muted); }
.no-results-icon { font-size: 40px; margin-bottom: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner   { grid-template-columns: 1fr; gap: 28px; }
  .hero-title   { font-size: 32px; }
  .cat-grid     { grid-template-columns: repeat(3, 1fr); }
  .prod-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid   { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  nav           { padding: 0 14px; }
  .logo-text    { font-size: 12px; }
  .nav-link     { padding: 5px 7px; font-size: 11px; }
  .hero         { padding: 44px 14px 56px; }
  .hero-title   { font-size: 26px; }
  .section      { padding: 40px 14px; }
  .prod-grid    { grid-template-columns: 1fr; }
  .cat-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; padding: 28px 14px 18px; }
  .footer-bottom { padding: 12px 14px; flex-direction: column; text-align: center; }
  .stats-bar    { gap: 20px; }
  .cart-panel   { width: 100%; }
  .form-row     { grid-template-columns: 1fr; }
  .about-grid   { grid-template-columns: 1fr; }
}
