/* ==========================================================================
   أبو الدهب — متجر المكسرات والفواكه المجففة والمكدوس والمخللات
   ألوان العلامة: أسود #221F1F · ذهبي #BB8F45 · أبيض/كريمي
   ========================================================================== */

:root {
  --black: #221F1F;
  --black-soft: #2e2a28;
  --gold: #BB8F45;
  --gold-dark: #a67c34;
  --gold-light: #D8B679;
  --white: #FFFFFF;
  --cream: #FAF7F1;
  --cream-2: #F2ECE1;
  --text: #2b2724;
  --muted: #8a8178;
  --line: #ece5d8;
  --shadow: 0 8px 30px rgba(34, 31, 31, 0.08);
  --shadow-lg: 0 18px 50px rgba(34, 31, 31, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, .brand-font {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 20px; }

.section { padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: 32px; position: relative; display: inline-block; }
.section-head h2::after {
  content: ""; display: block; width: 60px; height: 3px;
  background: var(--gold); margin: 12px auto 0; border-radius: 2px;
}
.section-head p { color: var(--muted); margin-top: 8px; }

/* ---------- الأزرار ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 6px 18px rgba(187,143,69,.35); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold-dark); }
.btn-outline:hover { background: var(--gold); color: #fff; }

/* ---------- الشريط الإعلاني ---------- */
.topbar {
  background: var(--black); color: var(--cream);
  font-size: 13px; text-align: center; padding: 8px 12px; letter-spacing: .2px;
}
.topbar b { color: var(--gold-light); }

/* ---------- الهيدر ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h); display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.logo img { height: 54px; width: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 8px 14px; border-radius: 999px; font-weight: 600; color: var(--text);
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--gold-dark); background: var(--cream-2); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; color: var(--black);
  transition: background .15s;
}
.icon-btn:hover { background: var(--cream-2); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 4px; inset-inline-start: 4px;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
  background: var(--gold); color: #fff; font-size: 11px; font-weight: 700;
  display: grid; place-items: center; transform: scale(0); transition: transform .2s;
}
.cart-count.show { transform: scale(1); }

.hamburger { display: none; }

/* ---------- السلايدر ---------- */
.hero { padding: 20px 0 0; }
.slider {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.slides { display: flex; transition: transform .6s cubic-bezier(.6,.05,.2,1); }
.slide { min-width: 100%; position: relative; }
.slide picture { display: block; width: 100%; }
.slide img { width: 100%; height: 420px; object-fit: cover; display: block; }
.slide-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start; text-align: right;
  padding-inline: 6%; gap: 14px;
}
.slide-content h2 { color: #fff; font-size: 44px; max-width: 620px; text-shadow: 0 2px 12px rgba(0,0,0,.55); }
.slide-content p { color: var(--gold-light); font-size: 20px; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.slide-content .btn { margin-top: 8px; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.9);
  display: grid; place-items: center; color: var(--black); z-index: 3;
  box-shadow: var(--shadow); transition: background .15s;
}
.slider-arrow:hover { background: #fff; }
.slider-arrow svg { width: 22px; height: 22px; }
.slider-prev { inset-inline-start: 16px; }
.slider-next { inset-inline-end: 16px; }
.slider-dots {
  position: absolute; bottom: 16px; inset-inline: 0; display: flex;
  justify-content: center; gap: 8px; z-index: 3;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); transition: all .2s; cursor: pointer; }
.dot.active { background: var(--gold); width: 26px; border-radius: 999px; }

/* ---------- الأصناف ---------- */
.cats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.cat-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); text-align: center; cursor: pointer;
  transition: transform .2s, box-shadow .2s; border: 1px solid var(--line);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card .thumb { aspect-ratio: 1 / 1; background: var(--cream); }
.cat-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cat-card h3 { padding: 16px 8px; font-size: 19px; }
.cat-card h3 span { display: block; font-size: 12px; font-weight: 600; color: var(--gold-dark); }

/* ---------- بانر ترويجي ---------- */
.promo {
  background: linear-gradient(120deg, var(--black), var(--black-soft));
  color: #fff; border-radius: var(--radius); overflow: hidden;
  position: relative; padding: 48px 40px; text-align: center;
}
.promo::before, .promo::after {
  content: ""; position: absolute; border-radius: 50%;
  background: var(--gold); opacity: .14;
}
.promo::before { width: 260px; height: 260px; top: -80px; inset-inline-start: -60px; }
.promo::after { width: 200px; height: 200px; bottom: -80px; inset-inline-end: -40px; opacity: .1; }
.promo h2 { color: #fff; font-size: 30px; position: relative; }
.promo p { color: var(--gold-light); margin: 10px 0 22px; position: relative; }
.promo .btn { position: relative; }

/* ---------- المنتجات ---------- */
.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.filter-btn {
  padding: 9px 20px; border-radius: 999px; font-weight: 700; color: var(--text);
  background: #fff; border: 1px solid var(--line); transition: all .15s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active { background: var(--black); color: #fff; border-color: var(--black); }

/* التصنيفات الفرعية — صينية منفصلة وواضحة تحت التصنيف المختار */
.subfilters {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px;
  width: fit-content; max-width: 100%; margin: 0 auto 32px;
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: 18px; padding: 10px 16px;
}
.subfilters-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Cairo', sans-serif; font-weight: 800; font-size: 14px; color: var(--black);
  padding-inline-end: 12px; margin-inline-end: 2px; border-inline-end: 2px solid var(--gold-light);
}
.subfilters-label svg { width: 15px; height: 15px; color: var(--gold); }
.subfilter-btn { padding: 6px 15px; border-radius: 999px; font-weight: 600; font-size: 13.5px; color: var(--gold-dark); background: #fff; border: 1px solid var(--line); cursor: pointer; transition: .15s; }
.subfilter-btn:hover { border-color: var(--gold); }
.subfilter-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }

/* اختيار المقاس + سعر العرض */
.size-row-front { margin: 4px 0; }
.size-select { width: 100%; padding: 8px 10px; border: 1px solid var(--line); border-radius: 10px; background: #fff; font-weight: 600; color: var(--text); }
.single-size { display: inline-block; font-size: 13px; color: var(--muted); background: var(--cream-2); padding: 3px 10px; border-radius: 999px; }
.price del { color: var(--muted); font-weight: 600; font-size: 14px; margin-inline-end: 4px; }
.price .off { background: #e5f4ec; color: #2e7d52; font-size: 12px; font-weight: 700; padding: 1px 6px; border-radius: 6px; font-style: normal; }
.muted-price { color: var(--muted); font-size: 15px; }
.badge.sale { inset-inline-start: auto; inset-inline-end: 12px; background: #c0392b; }

.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card .thumb { position: relative; aspect-ratio: 1 / 1; background: var(--cream); }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute; top: 12px; inset-inline-start: 12px;
  background: var(--gold); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
}
.badge.oos { inset-inline-start: auto; inset-inline-end: 12px; background: #6b6459; }
.product-info { padding: 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-info h3 { font-size: 18px; }
.product-info .weight { color: var(--muted); font-size: 13px; }
.product-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; }
.price { color: var(--gold-dark); font-weight: 800; font-size: 20px; font-family: 'Cairo', sans-serif; }
.price small { font-size: 13px; font-weight: 600; }
.add-btn {
  width: 42px; height: 42px; border-radius: 12px; background: var(--black); color: #fff;
  display: grid; place-items: center; transition: background .15s, transform .15s;
}
.add-btn:hover { background: var(--gold); transform: scale(1.06); }
.add-btn svg { width: 20px; height: 20px; }

/* ---------- الفوتر ---------- */
.footer { background: var(--black); color: #cfc9c0; margin-top: 24px; }
.footer-head {
  color: #fff; font-family: 'Cairo', sans-serif; font-size: 19px; font-weight: 700;
  margin-bottom: 22px; position: relative; padding-bottom: 12px;
}
.footer-head::after {
  content: ""; position: absolute; inset-inline-start: 0; bottom: 0;
  width: 46px; height: 3px; border-radius: 3px; background: var(--gold);
}
.footer-head.center { text-align: center; }
.footer-head.center::after { inset-inline-start: 50%; transform: translateX(50%); }
.footer a { color: #cfc9c0; transition: color .15s; }
.footer a:hover { color: var(--gold-light); }

/* الشبكة العلوية */
.footer-main {
  display: grid; grid-template-columns: 1.1fr 1fr 1.3fr; gap: 48px;
  padding: 60px 0 48px;
}

/* عمود تواصل معنا */
.fcontact { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.fcontact-item > a, .fcontact-item > div {
  display: flex; align-items: center; gap: 14px; color: inherit;
}
.fc-ic {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid rgba(187,143,69,.4); background: rgba(187,143,69,.08);
  display: grid; place-items: center; color: var(--gold); transition: all .18s;
}
.fcontact-item > a:hover .fc-ic { background: var(--gold); border-color: var(--gold); color: #fff; }
.fc-ic svg { width: 20px; height: 20px; }
.fc-txt { display: flex; flex-direction: column; line-height: 1.5; }
.fc-txt b { color: #fff; font-size: 15px; font-weight: 600; }
.fc-txt b.phone { direction: ltr; unicode-bidi: isolate; }
.fc-txt small { color: #9a938a; font-size: 12.5px; }

/* روابط سريعة */
.flinks { list-style: none; display: flex; flex-direction: column; }
.flinks li { border-bottom: 1px dashed #3a3330; }
.flinks li:last-child { border-bottom: 0; }
.flinks a { display: flex; align-items: center; gap: 10px; padding: 12px 0; font-size: 15px; }
.flinks a::before {
  content: "\203A"; color: var(--gold); font-size: 20px; line-height: 1;
  transition: transform .15s;
}
.flinks a:hover::before { transform: translateX(-4px); }

/* عمود العلامة */
.footer-brand .flogo {
  width: 148px; height: 148px; border-radius: 50%; margin-bottom: 18px;
  background: #221F1F; box-shadow: 0 0 0 2px rgba(187,143,69,.55), 0 10px 30px rgba(0,0,0,.45);
}
.ftagline { color: var(--gold-light); font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 12px; }
.fabout { color: #b3aca3; font-size: 14.5px; line-height: 1.9; max-width: 360px; }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid #4a4340;
  display: grid; place-items: center; transition: all .18s;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }

/* شرائط سفلية */
.footer-band { border-top: 1px solid #322c2a; }
.footer-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 0;
}
.feature { text-align: center; position: relative; padding: 0 16px; }
.feature + .feature::before {
  content: ""; position: absolute; inset-inline-end: 100%; top: 8px; bottom: 8px;
  width: 1px; background: #322c2a;
}
.feature-ic {
  display: inline-grid; place-items: center; width: 56px; height: 56px;
  color: var(--gold); margin-bottom: 14px;
}
.feature-ic svg { width: 40px; height: 40px; }
.feature h5 { color: #fff; font-family: 'Cairo', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: #9a938a; font-size: 13.5px; line-height: 1.7; }

/* طرق الدفع */
.footer-pay { padding: 40px 0; text-align: center; }
.pay-methods { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; margin-top: 8px; }
.pay-card {
  min-width: 210px; height: 74px; padding: 0 26px; border-radius: 14px;
  border: 1px solid #3a3330; background: rgba(255,255,255,.02);
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.pay-ic { color: var(--gold); display: grid; place-items: center; }
.pay-ic svg { width: 30px; height: 30px; }
.pay-txt { display: flex; flex-direction: column; line-height: 1.4; text-align: start; }
.pay-txt b { color: #fff; font-size: 15px; }
.pay-txt small { color: #9a938a; font-size: 12.5px; }
.whish-logo { height: 30px; width: auto; display: block; }

.footer-bottom {
  border-top: 1px solid #322c2a; padding: 22px 0;
  text-align: center; font-size: 13.5px; color: #9a938a;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.footer-bottom b { color: var(--gold-light); }
.footer-bottom .powered { font-size: 12.5px; color: #7c756c; }
.footer-bottom .powered a { color: var(--gold-light); font-weight: 700; }
.footer-bottom .powered a:hover { color: var(--gold); text-decoration: underline; }

/* ---------- درج السلة ---------- */
.overlay {
  position: fixed; inset: 0; background: rgba(20,17,17,.5); opacity: 0;
  visibility: hidden; transition: opacity .3s; z-index: 200; backdrop-filter: blur(2px);
}
.overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; inset-inline-start: 0; height: 100%; width: 400px; max-width: 90vw;
  background: var(--cream); z-index: 210; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.6,.05,.2,1);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; background: var(--black); color: #fff;
}
.cart-header h3 { color: #fff; font-size: 20px; }
.cart-close { color: #fff; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; }
.cart-close:hover { background: rgba(255,255,255,.12); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.cart-empty svg { width: 64px; height: 64px; color: var(--line); margin-bottom: 12px; }

.cart-item { display: flex; gap: 12px; background: #fff; border-radius: var(--radius-sm); padding: 10px; margin-bottom: 12px; border: 1px solid var(--line); }
.cart-item img { width: 66px; height: 66px; border-radius: 8px; object-fit: cover; background: var(--cream); }
.cart-item .ci-info { flex: 1; min-width: 0; }
.cart-item h4 { font-size: 15px; font-family: 'Tajawal'; font-weight: 700; color: var(--black); }
.cart-item .ci-weight { font-size: 12px; color: var(--muted); }
.cart-item .ci-price { color: var(--gold-dark); font-weight: 800; margin-top: 2px; }
.qty { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; background: var(--cream); border-radius: 999px; padding: 3px; }
.qty button { width: 26px; height: 26px; border-radius: 50%; background: #fff; color: var(--black); font-weight: 800; font-size: 16px; display: grid; place-items: center; border: 1px solid var(--line); }
.qty button:hover { background: var(--gold); color: #fff; }
.qty span { min-width: 26px; text-align: center; font-weight: 700; }
.ci-remove { color: var(--muted); align-self: flex-start; padding: 4px; }
.ci-remove:hover { color: #c0392b; }
.ci-remove svg { width: 18px; height: 18px; }

.cart-footer { border-top: 1px solid var(--line); padding: 18px 20px; background: #fff; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 18px; }
.cart-total .t-val { font-family: 'Cairo'; font-weight: 800; font-size: 24px; color: var(--gold-dark); }
.checkout-btn { width: 100%; justify-content: center; font-size: 16px; padding: 14px; }
.checkout-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ---------- شاشة معلومات الطلب ---------- */
.checkout-sheet .checkout-form { flex: 1; overflow-y: auto; padding: 18px 20px; }
.co-hint { font-size: 12.5px; color: var(--muted); background: var(--cream-2); border-radius: 10px; padding: 9px 12px; margin-bottom: 16px; }
.checkout-form label { display: block; font-weight: 700; font-size: 14px; color: var(--black); margin-bottom: 14px; }
.checkout-form label .req { color: #c0392b; }
.checkout-form input, .checkout-form textarea {
  width: 100%; margin-top: 6px; padding: 11px 13px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; font-family: inherit; font-size: 14px; font-weight: 500; color: var(--black);
}
.checkout-form input:focus, .checkout-form textarea:focus { outline: none; border-color: var(--gold); }
.checkout-form textarea { resize: vertical; }
.loc-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 11px; border: 1px dashed var(--gold); border-radius: 10px;
  background: var(--cream-2); color: var(--gold-dark); font-weight: 700; font-size: 14px; cursor: pointer; transition: .15s;
}
.loc-btn:hover { background: var(--gold); color: #fff; border-style: solid; }
.loc-btn svg { width: 18px; height: 18px; }
.loc-status { font-size: 13px; font-weight: 600; margin-top: 8px; min-height: 18px; text-align: center; }
.loc-status .loc-ok { color: var(--ok, #2e7d52); }
.loc-status .loc-wait { color: var(--muted); }
.loc-status .loc-fail { color: #c0392b; }
.co-err { color: #c0392b; font-size: 13px; font-weight: 700; margin-top: 10px; text-align: center; min-height: 16px; }

/* ---------- توست ---------- */
.toast {
  position: fixed; bottom: 24px; inset-inline: 0; margin-inline: auto; width: max-content;
  max-width: 90vw; background: var(--black); color: #fff; padding: 12px 22px;
  border-radius: 999px; box-shadow: var(--shadow-lg); z-index: 300; display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(20px); transition: all .3s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast svg { width: 20px; height: 20px; color: var(--gold-light); }

/* ---------- قائمة الموبايل ---------- */
.mobile-nav {
  position: fixed; inset: 0; background: var(--cream); z-index: 150; padding: 24px;
  transform: translateX(100%); transition: transform .3s; display: flex; flex-direction: column; gap: 8px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .mn-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mobile-nav a { padding: 14px 12px; border-radius: 12px; font-weight: 700; font-size: 18px; border-bottom: 1px solid var(--line); }
.mobile-nav a:hover { background: var(--cream-2); }

/* ==========================================================================
   الاستجابة (Responsive)
   ========================================================================== */
@media (max-width: 980px) {
  .cats-grid, .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-features { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .feature:nth-child(3)::before { display: none; }
  .slide-content h2 { font-size: 34px; }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .hamburger { display: grid; }
  .cats-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .slide img { height: 62vh; min-height: 360px; max-height: 560px; }
  .slide-content { padding-inline-end: 24px; align-items: center; text-align: center; }
  .slide-content h2 { font-size: 26px; }
  .slide-content p { font-size: 16px; }
  .section { padding: 44px 0; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-head { text-align: center; }
  .footer-head::after { inset-inline-start: 50%; transform: translateX(50%); }
  /* التواصل والروابط: كتلة موسّطة، وكل العناصر على نفس المحور (متناسقة) */
  .fcontact, .flinks { align-items: stretch; width: max-content; max-width: 100%; margin-inline: auto; padding-inline: 8px; }
  .fcontact-item > a, .fcontact-item > div, .flinks a { justify-content: flex-start; }
  .fc-txt { text-align: start; }
  .flinks li { width: 100%; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .fabout { margin-inline: auto; }
  .socials { justify-content: center; }
  .footer-features { grid-template-columns: 1fr 1fr; }
  .feature { padding: 0 8px; }
  .feature::before { display: none !important; }
  .pay-card { min-width: 0; flex: 1 1 160px; }
}
@media (max-width: 440px) {
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-info { padding: 12px; }
  .price { font-size: 17px; }
  .logo img { height: 44px; }
}
