@charset "UTF-8";
@font-face{
    font-family: 'AppText';
    src: url('../../fonts/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'AppBold';
    src: url('../../fonts/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --font-text: 'AppText', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-bold: 'AppBold', 'AppText', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --front-bg-header: #0F172A;
    --front-bg-header-soft: #111827;
    --front-text-header: #E5E7EB;
    --front-text-muted: #9CA3AF;
    --front-accent: #22C55E;
    --front-accent2: #0EA5E9;
    --front-border-soft: #1F2937;
    --front-radius-pill: 999px;
    --front-transition-fast: 0.18s ease-out;
}

html, body{
    font-family: var(--font-text), serif;
    font-weight: 400;
    margin: 0;
    background-color: #F3F4F6; /* پس‌زمینه روشن سایت خبری */
    color: #111827;
    line-height: 1.6;
}
*{
    font-family: "AppText", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1, h2, h3, h4, h5, h6,
b, strong{
    font-family: var(--font-bold), serif;
    font-weight: 700; /* برای سازگاری با اجزای بوت‌استرپ */
}
a {
    font-family: var(--font-text), serif;
    text-decoration: none;
    color: inherit;
}

.front-main {
    min-height: 60vh;
}

/* کانتینر عمومی فرانت (جایگزین container بوت‌استرپ) */
.front-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.front-container-head {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* --- هدر / منو --- */


.front-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(to left, var(--front-bg-header), var(--front-bg-header-soft));
    color: var(--front-text-header);
    border-bottom: 1px solid var(--front-border-soft);
}

.front-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
}

/* لوگو */

.front-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.front-brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 0, var(--front-accent), var(--front-accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #020617;
    font-size: 0.95rem;
}

.front-brand-text {
    display: flex;
    flex-direction: column;
}

.front-brand-name {
    font-size: 1.3rem;
    color: #22C55EFF;
    font-weight: 700;
}

.front-brand-tagline {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* منوی دسکتاپ */

.front-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.front-nav-link {
    position: relative;
    color: var(--front-text-header);
    opacity: 0.9;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity var(--front-transition-fast), color var(--front-transition-fast);
}

.front-nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: var(--front-radius-pill);
    background: linear-gradient(to left, var(--front-accent), var(--front-accent2));
    transition: width var(--front-transition-fast);
}

.front-nav-link:hover {
    opacity: 1;
}

.front-nav-link:hover::after {
    width: 100%;
}

.front-nav-link.is-active {
    opacity: 1;
    font-weight: 600;
}

.front-nav-link.is-active::after {
    width: 100%;
}

/* تلفن + دکمه‌ها */

.front-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.front-header-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.7rem;
    border-radius: var(--front-radius-pill);
    border: 1px solid var(--front-border-soft);
    background: rgba(15, 23, 42, 0.75);
    font-size: 0.8rem;
    white-space: nowrap;
}

.front-header-phone-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--front-accent);
}

/* دکمه‌ها */

.front-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.front-btn {
    font-family: var(--font-text), serif;
    border-radius: var(--front-radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.45rem 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background var(--front-transition-fast), color var(--front-transition-fast),
    border-color var(--front-transition-fast), transform var(--front-transition-fast),
    box-shadow var(--front-transition-fast);
}
.mt-2 {
    margin-top: 0.5rem !important;
}
.front-btn-primary {
    background: linear-gradient(135deg, var(--front-accent), var(--front-accent2));
    color: #020617;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

.front-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 35px rgba(34, 197, 94, 0.6);
}

.front-btn-outline {
    background: transparent;
    color: var(--front-text-header);
    border-color: var(--front-border-soft);
}

.front-btn-outline:hover {
    background: rgba(15, 23, 42, 0.95);
    border-color: #4B5563;
}

/* منوی موبایل */

.front-menu-toggle {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #374151;
    background: rgba(15, 23, 42, 0.95);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.front-menu-toggle span,
.front-menu-toggle span::before,
.front-menu-toggle span::after {
    font-family: var(--font-text), serif;
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #E5E7EB;
    position: relative;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
::placeholder{
    font-family: var(--font-text), serif;
}
.front-menu-toggle span::before,
.front-menu-toggle span::after {
    content: "";
    position: absolute;
    right: 0;
}

.front-menu-toggle span::before {
    transform: translateY(-6px);
}

.front-menu-toggle span::after {
    transform: translateY(6px);
}

.front-menu-toggle.is-open span {
    transform: rotate(45deg);
}

.front-menu-toggle.is-open span::before {
    transform: rotate(-90deg);
}

.front-menu-toggle.is-open span::after {
    opacity: 0;
}

.front-nav-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -280px;                 /* بیرون از صفحه در حالت بسته */
    width: 260px;
    padding: 4rem 1rem 1rem;
    background: #020617;
    box-shadow: -12px 0 30px rgba(15, 23, 42, 0.6);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 0.95rem;
    z-index: 1100;
    opacity: 0;
    transition: right 0.25s ease-out, opacity 0.25s ease-out;
}

/* حالت باز */
.front-nav-mobile.is-open {
    right: 0;
    opacity: 1;
}

/* بک‌دراپ پشت منو */

.front-nav-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out;
}

.front-nav-mobile-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* وقتی منو باز است، اسکرول بدنه قفل شود */
body.front-nav-mobile-open {
    overflow: hidden;
}

/* منوی موبایل فقط در زیر 1025px لازم است */
@media (min-width: 1025px) {
    .front-nav-mobile,
    .front-nav-mobile-backdrop {
        display: none !important;
    }
}


.front-nav-mobile-extra {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.front-nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* --- اسکلت صفحه نخست --- */

.front-section {
    padding: 2rem 0;
}

.front-section-alt {
    background-color: #FFFFFF;
}

.front-hero {
    padding-top: 1.5rem;
}

.front-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 1.5rem;
    align-items: center;
}

.front-hero-title {
    font-size: clamp(1.8rem, 2.4vw + 1.2rem, 2.6rem);
    margin: 0 0 0.6rem;
}

.front-hero-subtitle {
    font-size: 0.95rem;
    color: #4B5563;
    max-width: 32rem;
    margin-bottom: 1.2rem;
}

.front-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.3rem;
}

/* نوار سرچ */

.front-search-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    align-items: stretch;
    background: #FFFFFF;
    border-radius: 999px;
    border: 1px solid #E5E7EB;
    padding: 0.15rem 0.2rem 0.15rem 0.15rem;
}

.front-search-input {
    flex: 1;
    border: none;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    background: transparent;
    outline: none;
}

.front-search-input::placeholder {
    color: #9CA3AF;
}

/* باکس سمت راست هیرو (مثلاً قیمت‌های لحظه‌ای) */

.front-hero-box {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    min-height: 220px;
}

/* کارت‌های ساده برای بخش‌های پایین */

.front-section-title {
    font-size: 1.2rem;
    margin: 0 0 0.4rem;
}

.front-section-subtitle {
    font-size: 0.9rem;
    color: #6B7280;
    max-width: 34rem;
    margin-bottom: 1.2rem;
}

.front-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.front-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.front-card-placeholder {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    min-height: 140px;
}

/* --- ریسپانسیو --- */

@media (max-width: 1024px) {
    /* قبلی‌ها */
    .front-hero-inner {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    }
    .front-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* جدید: از تبلت به پایین منوی همبرگری فعال شود */
    .front-header-inner {
        padding: 0.55rem 0;
    }

    .front-nav {
        display: none;
    }

    .front-header-phone {
        display: none;
    }

    .front-header-actions {
        display: none;
    }

    .front-menu-toggle {
        display: inline-flex;
    }
}



@media (max-width: 768px) {
    .front-hero {
        padding-top: 1.2rem;
    }

    .front-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .front-hero-box {
        min-height: 180px;
    }

    .front-grid-2,
    .front-grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }
    .front-header-inner {
        padding: 0.55rem 0;
    }

    .front-nav {
        display: none;
    }

    .front-header-phone {
        display: none;
    }

    .front-header-actions {
        display: none;
    }

    .front-menu-toggle {
        display: inline-flex;
    }

    /* اینجا دیگر display برای منوی موبایل تنظیم نمی‌شود؛
       حالت باز/بسته فقط با JS کنترل می‌شود */

    .front-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .front-hero-box {
        min-height: 180px;
    }

    .front-grid-2,
    .front-grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .front-hero {
        padding-top: 1.2rem;
    }
}
/* --- Modal Auth (بدون Bootstrap) --- */

.front-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;            /* با کلاس is-open نمایش داده می‌شود */
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.front-modal.is-open {
    display: flex;
}

.front-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
}

.front-modal-dialog {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 420px;
    margin: 0 1rem;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.front-modal-header {
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.front-modal-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.front-modal-close {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    color: #6B7280;
    padding: 0.2rem;
}

.front-modal-close:hover {
    color: #111827;
}

.front-modal-body {
    padding: 0.9rem 1.1rem 1.1rem;
    overflow-y: auto;
}

/* تب‌ها */

.front-tabs {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #F3F4F6;
    padding: 0.15rem;
    margin-bottom: 0.9rem;
}

.front-tab {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: #6B7280;
    transition: background 0.15s ease-out, color 0.15s ease-out;
    white-space: nowrap;
}

.front-tab.is-active {
    background: #FFFFFF;
    color: #111827;
    box-shadow: 0 0 0 1px #E5E7EB;
}

.front-tab-panels {
    margin-top: 0.25rem;
}

.front-tab-panel {
    display: none;
}

.front-tab-panel.is-active {
    display: block;
}

/* فرم‌ها داخل مودال */

.front-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.front-form-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.front-label {
    font-size: 0.85rem;
    color: #374151;
}

.front-input {
    border-radius: 10px;
    border: 1px solid #D1D5DB;
    padding: 0.45rem 0.7rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.front-input:focus {
    border-color: #22C55E;
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.3);
}

.front-help {
    font-size: 0.78rem;
    color: #6B7280;
    margin: 0;
}

.front-btn-block {
    width: 100%;
    justify-content: center;
}

.is-hidden {
    display: none !important;
}





























/* --- Footer --- */

.front-footer {
    margin-top: 2rem;
    background: #020617;
    color: #9CA3AF;
    border-top: 1px solid #111827;
    font-size: 0.85rem;
}

.front-footer-inner {
    padding: 1.5rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.front-footer-brand {
    max-width: 360px;
}

.front-footer-desc {
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #FFFFFF;
}

.front-footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.front-footer-col {
    min-width: 0;
}

.front-footer-title {
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #22C55EFF;;
}

.front-footer-link {
    display: block;
    margin-bottom: 0.25rem;
    color: #E5E7EB;
    font-size: 0.82rem;
    transition: color 0.15s ease-out;
}

.front-footer-link:hover {
    color: #a5ffde;
}

.front-footer-contact-item {
    margin-bottom: 0.25rem;
    font-size: 0.82rem;
}

.front-footer-contact-value {
    color: #E5E7EB;
}

/* خط پایین فوتر */

.front-footer-bottom {
    border-top: 1px solid #111827;
    padding: 0.75rem 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #FFFFFF;
}

/* ریسپانسیو فوتر */

@media (min-width: 768px) {
    .front-footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .front-footer-links {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .front-footer-links {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* --- لیست بک‌لینک‌ها و رپورتاژها --- */

.front-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.front-list-item {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 0.6rem 0.8rem;
    transition: box-shadow 0.15s ease-out, transform 0.15s ease-out, border-color 0.15s ease-out;
}

.front-list-item:hover {
    border-color: #A7F3D0;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
    transform: translateY(-1px);
}

.front-list-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.front-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.8rem;
    font-size: 0.78rem;
    color: #6B7280;
}

/* در موبایل، فاصله‌ی عمودی کمی بیشتر شود */

@media (max-width: 480px) {
    .front-list-item {
        padding: 0.7rem 0.85rem;
    }
}
/* --- چهارچوب قیمت‌های بک‌لینک (دکمه‌ای) --- */

.front-backlink-prices {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 0.75rem 0.9rem;
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.front-backlink-prices-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.8rem;
    align-items: baseline;
    justify-content: space-between;
}

.front-backlink-prices-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

.front-backlink-prices-hint {
    font-size: 0.78rem;
    color: #9CA3AF;
}

/* ظرف دکمه‌ها */

.front-backlink-prices-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    max-height: 140px;       /* ارتفاع کنترل‌شده */
    overflow-y: auto;        /* اگر دکمه زیاد شد، اسکرول عمودی */
    padding-top: 0.15rem;
}

/* دکمه‌های کوچک (استایل روی front-btn سوار می‌شود) */

.front-btn-chip {
    padding: 0.25rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 999px;
    line-height: 1.2;
}

/* در موبایل کمی فاصله بیشتر بدهیم */

@media (max-width: 480px) {
    .front-backlink-prices {
        padding: 0.7rem 0.75rem;
    }

    .front-backlink-prices-tags {
        max-height: 170px;
    }
}
.front-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

/* خود بنر (استایل عمومی که قبلاً داشتی) */
.front-banner {
    position: relative;
    border-radius: 14px;
    background: transparent;
    border: 1px dashed #D1D5DB;
    padding: 0.6rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    color: #020617;
    overflow: hidden;
    min-height: 70px;
}

.front-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(15, 23, 42, 0.16), transparent);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.front-banner-label {
    position: relative;
    font-size: 0.85rem;
    font-weight: 600;
}

.front-banner-size {
    position: relative;
    font-size: 0.75rem;
    opacity: 0.9;
}

/* سایز کوچک بنرها */
.front-banner--small {
    min-height: 70px;
}

/* ریسپانسیو شبکه بنرها */
@media (max-width: 1024px) {
    .front-banner-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .front-banner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .front-banner-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
.front-banner-img {
    display: block;
    width: 100%;
    max-width: 250px;
    height: auto;          /* نسبت تصویر حفظ شود */
    border-radius: 10px;   /* اگر خواستی گوشه‌ها کمی گرد باشد */
    margin: 0 auto;        /* وسط‌چین داخل باکس بنر */
}
/* --- بنرهای شناور پایین صفحه (چپ و راست) --- */

.front-float-ad {
    position: fixed;
    bottom: 16px;
    z-index: 1100;
    width: 200px;             /* با عرض تصویرت هماهنگ کن */
    max-width: calc(50% - 24px);
    padding: 6px;
    border-radius: 16px;
    background: #F9FAFB;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    animation: front-float-ad-in 0.25s ease-out;
}

.front-float-ad--right {
    right: 16px;
}

.front-float-ad--left {
    left: 16px;
}

.front-float-ad-img {
    display: block;
    width: 100%;
    border-radius: 12px;
}

/* دکمه بستن */

.front-float-ad-close {
    align-self: flex-start;
    border: none;
    background: #FFFFFF;
    border-radius: 999px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.25);
    margin-bottom: 2px;
}

.front-float-ad-close:hover {
    background: #F3F4F6;
}

/* انیمیشن ظاهر شدن */

@keyframes front-float-ad-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.front-float-ad-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
    margin-top: 4px;
}

.front-float-ad-text {
    font-size: 0.78rem;
    color: #4B5563;
    margin-top: 2px;
}

/* دکمه بنر شناور – کوچک و تمام‌عرض */
.front-btn-small {
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
}

.front-float-ad-cta {
    margin-top: 4px;
    width: 100%;
    justify-content: center;
}
/* --- بنر تمام‌عرض صفحه نخست (۹۷۰×۹۰) --- */

.front-section-top-banner {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
}

.front-top-banner {
    display: flex;
    justify-content: center;
}

.front-top-banner-img {
    display: block;
    width: 100%;
    max-width: 970px;  /* ابعاد پیشنهادی بنر */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

/* در موبایل بنر با عرض کامل کانتینر نمایش داده شود */
@media (max-width: 768px) {
    .front-top-banner-img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 6px 14px rgba(15, 23, 42, 0.15);
    }
}
