/* ════════════════════════════════════════════════════════════════════════════
 * atheer-brandlinks.css — شارات المتاجر وأيقونات الحسابات في شاشة الدخول
 *
 * تتبع المقاييس القائمة ولا تخترع لنفسها مقاسًا: نصف القطر من
 * `--at-radius-sm`، والارتفاع من `--at-control-h`، والألوان من الرموز — فلا
 * تصير هذه الكتلة الاستثناء التاسع في نظامٍ وُحِّد بعناية.
 * ════════════════════════════════════════════════════════════════════════════ */

.at-brandlinks {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; margin-block: 20px 8px;
}
.at-brandlinks__stores { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

/* ── شارة المتجر ──────────────────────────────────────────────────────────
 * سطرٌ صغير فوق واسم المتجر تحته — تركيب الشارة الرسميّ لدى المتجرين.
 * والملء داكن ثابت في الثيمين لأنّ الشارة **علامة تجاريّة** لا عنصر واجهة:
 * قلبُها مع الثيم يجعلها تبدو تقليدًا لا شارةً معتمدة. */
.at-storebadge {
  display: inline-flex; align-items: center; gap: 10px;
  min-block-size: var(--at-control-h, 40px);
  padding-inline: 14px; padding-block: 6px;
  border-radius: var(--at-radius-sm, 4px);
  background: #101319;
  border: 1px solid #2a3140;
  color: #fff; text-decoration: none;
  transition: border-color .12s, transform .12s, background .12s;
}
.at-storebadge:hover  { background: #171b23; border-color: #3d465a; }
.at-storebadge:active { transform: translateY(1px); }
.at-storebadge:focus-visible {
  outline: 2px solid var(--at-accent); outline-offset: 2px;
}
.at-storebadge__logo   { display: inline-flex; flex: none; }
.at-storebadge__logo svg { inline-size: 22px; block-size: 22px; }
.at-storebadge__txt    { display: flex; flex-direction: column; line-height: 1.15; }
.at-storebadge__top    { font-size: 9px; letter-spacing: .06em; text-transform: uppercase; opacity: .78; }
.at-storebadge__name   { font-size: 15px; font-weight: 600; }

/* 🔴 حالة «قريبًا»: تُرى ولا تُنقَر. `pointer-events: none` وحدها لا تكفي —
 * الوسم أزال `href` والتركيز أيضًا، وهذا يمنع الوصول بالمفتاح كذلك. */
.at-storebadge.is-soon {
  opacity: .55; cursor: default;
  pointer-events: none;
  border-style: dashed;
}

/* ── أيقونات الحسابات ─────────────────────────────────────────────────────
 * دائريّة عمدًا — والدائرة هنا معنًى لا زخرفة: هي شكل «الحساب» في كلّ
 * المنصّات، وهي أحد الاستثناءات الثلاثة المسموح بها في مقياس الحوافّ الحادّة. */
.at-brandlinks__social { display: flex; gap: 8px; }
.at-socialicon {
  inline-size: 34px; block-size: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--at-radius-pill, 999px);
  color: var(--at-text-muted, #6b7280);
  background: var(--surface-2, #f0f3f9);
  border: 1px solid var(--at-border, #cfd7e6);
  transition: color .12s, background .12s, border-color .12s, transform .12s;
}
.at-socialicon svg { inline-size: 17px; block-size: 17px; }
.at-socialicon:hover {
  color: var(--at-accent);
  border-color: color-mix(in oklab, var(--at-accent) 45%, transparent);
  background: var(--at-accent-soft-bg, color-mix(in oklab, var(--at-accent) 12%, transparent));
  transform: translateY(-1px);
}
.at-socialicon:focus-visible { outline: 2px solid var(--at-accent); outline-offset: 2px; }

/* في شاشة الدخول الكتلة تسبق التذييل مباشرةً، فتُضبط مسافتها معه. */
.auth-footer { margin-block-start: 0; }

@media (max-width: 576px) {
  .at-storebadge { padding-inline: 12px; }
  .at-storebadge__name { font-size: 14px; }
}

/* أيقونة حسابٍ غير معرَّف — تُرى ولا تُنقَر، كشارة المتجر تمامًا. */
.at-socialicon.is-soon {
  opacity: .42;
  cursor: default;
  pointer-events: none;
  border-style: dashed;
}

/* رابطٌ نظاميّ بلا وجهة — يُرى معطَّلًا ولا يُنقَر، كشارة المتجر. */
.auth-footer a.is-soon {
  opacity: .5; cursor: default; pointer-events: none;
  text-decoration: line-through; text-decoration-thickness: 1px;
}
