/* ==== HSA Skeletons (cards) ==== */

#hsa-skeletons[hidden] { display: none !important; }

#hsa-skeletons {
    /* با گرید محصولات هم‌راستا شود */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    padding: 0;
    margin: 0 0 24px;
}

/* کارت اسکلت */
.hsa-skel-card {
    border: 1px solid #eef0f3;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* شِیمر عمومی */
.hsa-skel-shine {
    position: relative;
    background: #f2f3f5;
    overflow: hidden;
}
.hsa-skel-shine::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 50%, rgba(255,255,255,0) 100%);
    animation: hsaShimmer 1.4s infinite;
}
@keyframes hsaShimmer {
    100% { transform: translateX(100%); }
}

/* تصویر با نسبت 1:1 */
.hsa-skel-thumb {
    aspect-ratio: 1 / 1;
    border-bottom: 1px solid #eef0f3;
}

/* بدنه کارت */
.hsa-skel-body {
    padding: 10px 12px 12px;
    display: grid;
    grid-template-rows: auto auto auto auto;
    gap: 8px;
}

/* عنوان دو خطی */
.hsa-skel-title-line {
    height: 12px;
    border-radius: 6px;
}
.hsa-skel-title-line + .hsa-skel-title-line { width: 70%; }

/* امتیاز/متای کم‌رنگ */
.hsa-skel-meta {
    height: 10px;
    width: 40%;
    border-radius: 6px;
    opacity: .7;
}

/* قیمت */
.hsa-skel-price {
    height: 16px;
    width: 50%;
    border-radius: 8px;
}

/* دکمه */
.hsa-skel-btn {
    height: 34px;
    border-radius: 8px;
}

/* حالت لودینگ روی گرید اصلی — بدون جابه‌جایی چیدمان */
#hsa-grid[aria-busy="true"] .hsa-products {
    visibility: hidden;
}
