/* ============================================================
   business-profile.css – استایل‌های اختصاصی صفحهٔ کسب‌وکار
   ============================================================ */

/* تیک طلایی برای کسب‌وکارهای تأییدشده */
.profile-page .verified-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    flex-shrink: 0;
    position: relative;
}
.profile-page .verified-gold::after {
    content: '\2713';
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

/* دکمه لوکیشن (آبی فیروزه‌ای) */
.profile-page .actions .btn-location {
    background: linear-gradient(45deg, #0ea5e9, #0284c7);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    padding: 12px 10px;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    flex: 1;
    text-decoration: none;
}
.profile-page .actions .btn-location:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* ردیف دکمه فروشگاه (تمام عرض) */
.profile-page .actions-row.store-row {
    width: 100%;
    margin-top: 4px;
}

/* دکمه فروشگاه بزرگ */
.profile-page .actions .btn-store {
    background: linear-gradient(45deg, #10b981, #047857);
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    padding: 14px 20px;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    flex: 1;
    text-decoration: none;
    width: 100%;
}
.profile-page .actions .btn-store:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
@keyframes pulseGold {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}