/* بطاقة مدمجة وصغيرة */
.fcs-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--fcs-card-radius, 14px);
  border: 2px solid transparent;
  background: var(--card-bg, #fff);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  overflow: hidden;
  height: 100%;
  min-width: 0;
}
.fcs-card::before{
  content:""; position:absolute; inset:0; border-radius: inherit; padding:1.5px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-color, #0ea5e9) 35%, #ffffff 65%), transparent);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none;
}

/* شارة البراند */
.fcs-brand-chip{
  position:absolute; inset-block-start:8px; inset-inline-start:8px; z-index:3;
  padding:4px 8px; font-size:11px; font-weight:800; color:#fff;
  border-radius: 9px 9px 9px 4px;
  background: linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,0)), var(--brand-color,#0ea5e9);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--brand-color,#0ea5e9) 35%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-color,#0ea5e9) 75%, #000 0%);
}

/* الصورة صغيرة */
.fcs-thumb{ display:block; aspect-ratio: 1 / 1; overflow:hidden; background:#f7f8fc; }
.fcs-thumb img{ width:100%; height:100%; object-fit:contain; display:block; }

/* العنوان والمحتوى */
.fcs-info{ padding:10px 10px 12px; display:flex; align-items:center; justify-content:center; text-align:center; flex:1 1 auto; }
.fcs-inner{ width: 92%; max-width: var(--fcs-inner-max, 200px); margin: 0 auto; display:flex; flex-direction:column; gap: var(--fcs-gap, 6px); }

.fcs-title{ font-size:13px; font-weight:800; line-height:1.35; color:var(--text-color,#222); text-decoration:none;
  display: -webkit-box; -webkit-line-clamp: var(--fcs-title-lines, 2); -webkit-box-orient: vertical; overflow:hidden; text-overflow:ellipsis; }
.ag-badge-wrap{ min-height: 22px; margin-top:2px; margin-bottom:4px; display:flex; flex-wrap:wrap; gap:6px; justify-content:center; }
.ag-badge-wrap .ag-badge,
.fcs-card .ag-badge-wrap .ag-product-badge-wrapper { display:flex; flex-wrap:wrap; gap:6px; justify-content:center; }
.fcs-card .ag-badge-wrap .ag-product-badge { display:inline-flex; align-items:center; gap:6px; padding:5px 9px; border-radius:999px; font-size:11px; font-weight:800; line-height:1; }

/* السعر */
.fcs-price{ font-weight:900; font-size:14px; color:var(--fcs-price-color,#111827); }
.fcs-price-guest{ font-size:10px; font-weight:800; color:#e91b21; background:#f3f4f6; border:1px dashed #e5e7eb; padding:6px 10px; border-radius:999px; width:max-content; margin: 2px auto 0; }

/* عداد كمية (مخصص) */
.fcs-qty-row{ display:flex; align-items:center; gap:6px; border:1px solid #e5e7eb; border-radius:10px; padding:4px; width:auto; background:#fff; margin:2px auto 0; }
.fcs-qty-btn{ width:35px; height:24px; border-radius:8px; border:1px solid #e5e7eb; background:#f8fafc; cursor:pointer; }
.fcs-qty-input{ width:45px; height:24px; text-align:center; border:none; outline:none; font-weight:800; font-size:13px; }

/* الأزرار */
.fcs-add, .fcs-view-options, .fcs-login-view{ margin-top:6px; border-radius:10px; padding:10px 12px; font-weight:900; width:100%; max-width:180px; margin-inline:auto; background:var(--fcs-button-bg,#e91b21); color:var(--fcs-button-text,#fff); text-align:center; }
.fcs-card.is-out .fcs-add{ opacity:.5; pointer-events:none; }

/* حالة المخزون تحت الزر */
.fcs-stock-inline{ margin-top:6px; display:inline-flex; align-items:center; gap:8px; background:#fff; padding:5px 10px; border-radius:999px; font-size:12px; font-weight:800; box-shadow:0 4px 12px rgba(0,0,0,.06); margin-inline:auto; }
.fcs-stock-inline .dot{ width:8px; height:8px; border-radius:50%; display:inline-block; }
.fcs-stock-inline.ok{ color:var(--fcs-stock-ok,#16a34a); }
.fcs-stock-inline.ok .dot{ background:var(--fcs-stock-ok,#16a34a); }
.fcs-stock-inline.no{ color:var(--fcs-stock-no,#dc2626); }
.fcs-stock-inline.no .dot{ background:var(--fcs-stock-no,#dc2626); }

/* سويبر */
.fcs-section { margin-bottom: 22px; }
.fcs-cat-title{ font-size: clamp(16px, 1.6vw, 18px); margin: 0 0 10px; }
.fcs-swiper{ position: relative; }
.fcs-nav{ position:absolute; inset-block-start: 40%; inset-inline: 0; display:flex; justify-content:space-between; pointer-events:none; }
.fcs-prev, .fcs-next{
  pointer-events:auto; width:32px; height:32px; border-radius:50%; background: var(--fcs-nav-bg, rgba(0,0,0,.06));
  display:flex; align-items:center; justify-content:center; font-size:18px;
}

/* انسجام مع Blocksy */
:root{ --card-bg: var(--ct-block-background, #fff); --text-color: var(--ct-text-color, #222); --heading-color: var(--ct-headings-color, #111); }
