/* ===== Container ===== */
.afghelp-market-showcase {
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.showcase-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1e293b;
	font-family: Vazirmatn;
	text-align: center;
}

.showcase-header p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 24px;
	font-family: Vazirmatn;
	text-align: center;
}

/* ===== Grid ===== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ===== Business Card ===== */
.business-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}

.business-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #2e7d32;
}

.business-card-secondary {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.card-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #e2e8f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1e293b;
	font-family: Vazirmatn;
}
.card-meta {
	font-family: Vazirmatn;
	font-size: 12px;
	margin-bottom: 15px;
}
.card-rating {
    font-size: 13px;
    color: #f59e0b;
    margin-bottom: 6px;
	font-family: Vazirmatn;
}

.card-address {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.4;
	font-family: Vazirmatn;
}

.card-link {
	font-size: 12px;
	color: #2470f7;
	text-decoration: none;
	font-weight: 600;
	font-family: Vazirmatn;
	background: #fff;
	padding: 7px 10px;
	border-radius: 5px;
	border: 2px solid #2470f7;
}


/* ===== اسکلتون (Skeleton Loading) ===== */
.business-card.skeleton {
    background: #f8fafc;
}

.skeleton-image {
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton-title {
    height: 18px;
    width: 70%;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 8px;
	font-family: Vazirmatn;
}

.skeleton-rating {
    height: 14px;
    width: 40%;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-address {
    height: 12px;
    width: 85%;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-link {
    height: 14px;
    width: 35%;
    background: #e2e8f0;
    border-radius: 4px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== Footer ===== */
.showcase-footer {
    margin-top: 24px;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.showcase-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
	font-family: Vazirmatn;
}

.showcase-link:hover {
    text-decoration: underline;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .business-card {
        padding: 12px;
    }
    
    .card-image {
        width: 70px;
        height: 70px;
    }
}
.card-actions {
	text-align: left;
}