/* ============================================
   ال‌جی بازار - استایل کامل
   ============================================ */

@font-face {
    font-family: 'Dana';
    src: url('/fonts/dana/Dana-Regular.woff2') format('woff2'), url('/fonts/dana/Dana-Regular.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Dana';
    src: url('/fonts/dana/Dana-Medium.woff2') format('woff2'), url('/fonts/dana/Dana-Medium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Dana';
    src: url('/fonts/dana/Dana-DemiBold.woff2') format('woff2'), url('/fonts/dana/Dana-DemiBold.woff') format('woff');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Dana';
    src: url('/fonts/dana/Dana-Bold.woff2') format('woff2'), url('/fonts/dana/Dana-Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Dana', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fff;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ هدر ============ */
.lgbazar-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
    transition: box-shadow 0.3s;
}
.lgbazar-header.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 12px 0;
    gap: 12px;
    position: relative;
}

@media (min-width: 1200px) {
    .header-wrap {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) 240px auto;
        align-items: center;
        gap: 12px 16px;
    }
    .logo { grid-column: 1; }
    .nav-main { grid-column: 2; }
    .header-search-wrap { grid-column: 3; }
    .header-actions { grid-column: 4; }
}

/* لوگو */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    color: #A50034;
}
.logo-img { max-height: 50px; width: auto; }
.logo-icon { color: #A50034; display: flex; align-items: center; }
.logo-text {
    font-size: 1.1em;
    font-weight: 700;
    color: #A50034;
    white-space: nowrap;
    line-height: 1.2;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 769px) {
    .header-wrap .nav-main {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }
    .nav-mobile-panel { display: none !important; }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header-wrap .nav-main {
        gap: 12px;
    }
    .nav-main > a,
    .nav-main > .nav-item > a {
        font-size: 0.82em;
    }
    .phone-text { display: none; }
    .btn-phone {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
    }
}

/* منوی اصلی */
.nav-main {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .nav-main {
        flex: unset;
        justify-content: center;
        gap: 20px;
    }
}

.nav-main > a,
.nav-main > .nav-item > a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.88em;
    transition: color 0.3s;
    padding: 6px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-main > a:hover,
.nav-main > .nav-item > a:hover { color: #A50034; }

.nav-main > a::after,
.nav-main > .nav-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #A50034;
    transition: width 0.3s;
}
.nav-main > a:hover::after,
.nav-main > .nav-item > a:hover::after { width: 100%; }

.nav-item { position: relative; }
.nav-item > a i { font-size: 0.7em; transition: transform 0.3s; }
.nav-item:hover > a i,
.nav-item.open > a i { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}
.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #2c3e50;
    font-size: 0.9em;
    transition: all 0.2s;
}
.nav-dropdown a:hover { background: #f8f9fa; color: #A50034; padding-right: 25px; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* جستجوی هدر — فقط دسکتاپ بزرگ؛ بقیه آیکون + sheet */
.header-search-wrap {
    position: relative;
    flex: 0 0 auto;
    width: 240px;
    max-width: 240px;
    min-width: 0;
}

@media (min-width: 1200px) {
    .header-search-wrap {
        width: 100%;
        max-width: 240px;
        grid-column: 3;
    }
}

@media (max-width: 1199px) {
    .header-search-wrap {
        display: none !important;
    }
    .header-search-mobile {
        display: inline-flex !important;
    }
}

.header-search {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.header-search:focus-within {
    border-color: #A50034;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(165, 0, 52, 0.1);
}

.header-search__icon {
    padding: 0 10px 0 12px;
    color: #9ca3af;
    font-size: 14px;
    flex-shrink: 0;
}

.header-search__input {
    flex: 1;
    min-width: 0;
    width: 0;
    border: none;
    background: transparent;
    padding: 9px 4px;
    font-family: inherit;
    font-size: 13px;
    color: #1f2937;
    outline: none;
}

.header-search__input::placeholder {
    color: #9ca3af;
}

.header-search__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 3px;
    border-radius: 8px;
    background: #A50034;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.2s;
    font-size: 13px;
}

.header-search__submit:hover {
    background: #8a002c;
}

.header-search-mobile {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #f8f9fa;
    color: #374151;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* موبایل — sheet جستجو */
.search-mobile-sheet {
    position: fixed;
    inset: 0;
    z-index: 1300;
    pointer-events: none;
}

.search-mobile-sheet:not([hidden]) {
    pointer-events: auto;
}

.search-mobile-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0;
    transition: opacity 0.25s;
}

.search-mobile-sheet.is-open .search-mobile-sheet__backdrop {
    opacity: 1;
}

.search-mobile-sheet__panel {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    padding: 16px;
}

.search-mobile-sheet.is-open .search-mobile-sheet__panel {
    transform: translateY(0);
}

.search-mobile-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 700;
}

.search-mobile-sheet__head button {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #eee;
    background: #f9fafb;
}

.header-search--mobile {
    border-radius: 12px;
    max-width: none;
}

.header-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: var(--lgbazar-text, #333);
    text-decoration: none;
    background: #f8f9fa;
    border: 1px solid #eee;
}

.header-cart-btn:hover { color: #A50034; border-color: #A50034; }

.header-cart-btn__badge,
.mb-cart__badge {
    position: absolute;
    top: -4px;
    inset-inline-start: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #A50034;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.header-cart-btn__badge.is-empty,
.mb-cart__badge.is-empty {
    opacity: 0.92;
}

.mb-cart__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.mb-cart__badge {
    top: -6px;
    inset-inline-start: -8px;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #A50034;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s;
    white-space: nowrap;
}
.btn-phone:hover {
    background: #7A0028;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(231, 76, 60, 0.3);
}
.btn-phone i { font-size: 0.9em; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    font-size: 22px;
    color: #2c3e50;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
}
.menu-toggle .menu-icon-close { display: none; }
.menu-toggle.active .menu-icon-open { display: none; }
.menu-toggle.active .menu-icon-close { display: inline; }
.menu-toggle:hover { background: #f8f9fa; }
.menu-toggle.active { color: #A50034; background: #f8f9fa; }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.nav-overlay.visible { display: block; opacity: 1; }
body.nav-open { overflow: hidden; }

.nav-mobile-panel {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 88vw);
    background: #fff;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    z-index: 999;
    overflow: hidden;
}
.nav-mobile-panel.open {
    display: flex;
    transform: translateX(0);
}
.nav-mobile-head {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
}
.nav-mobile-head span { font-weight: 700; font-size: 1.05em; color: #2c3e50; }
.nav-mobile-head button {
    width: 40px; height: 40px; border: none; background: #f8f9fa;
    border-radius: 8px; color: #A50034; font-size: 1.2em; cursor: pointer;
}
.nav-mobile-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.nav-mobile-foot {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
    flex-shrink: 0;
}
.nav-mobile-call, .nav-mobile-wa {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; border-radius: 10px; text-decoration: none; font-weight: 700;
}
.nav-mobile-call { background: #A50034; color: #fff; }
.nav-mobile-wa { background: #25D366; color: #fff; }

/* ============ اسلاید — تصویر کامل بدون کراپ و بدون متن ============ */
.lgbazar-slides { position: relative; background: #f4f4f4; }
.lgbazar-swiper { height: auto !important; }
.lgbazar-slides .swiper-slide,
.lgbazar-slides.single { height: auto; }
.slide-img-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    min-height: 200px;
    max-height: min(72vh, 560px);
}
.slide-img {
    width: 100%;
    height: auto;
    max-height: min(72vh, 560px);
    object-fit: contain;
    object-position: center;
    display: block;
}
.lgbazar-slides .slide-bg,
.lgbazar-slides .slide-overlay { display: none !important; }

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7) !important;
    width: 12px !important;
    height: 12px !important;
}
.swiper-pagination-bullet-active { background: #fff !important; transform: scale(1.2); }

/* ============ هیرو ============ */
.lgbazar-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    padding: 80px 0;
    text-align: right;
}
.hero-inner {
    display: block;
}
.hero-inner--media {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 40px;
    align-items: stretch;
}
.hero-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-media-frame {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: stretch;
    padding: 18px;
}
.hero-media-frame__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-media-frame__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(42px);
    opacity: 0.55;
    animation: heroBlobFloat 8s ease-in-out infinite;
}
.hero-media-frame__blob--1 {
    width: 180px;
    height: 180px;
    top: -20px;
    left: -10px;
    background: rgba(165, 0, 52, 0.28);
}
.hero-media-frame__blob--2 {
    width: 140px;
    height: 140px;
    right: 0;
    bottom: 10px;
    background: rgba(37, 211, 102, 0.22);
    animation-delay: -3s;
}
.hero-media-frame__ring {
    position: absolute;
    inset: 8px;
    border: 2px dashed rgba(165, 0, 52, 0.18);
    border-radius: 28px;
    animation: heroRingSpin 22s linear infinite;
}
.hero-media-frame__chip {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #A50034;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(165, 0, 52, 0.15);
    border: 1px solid rgba(165, 0, 52, 0.12);
}
.hero-media {
    position: relative;
    z-index: 2;
    flex: 1;
    width: 100%;
    min-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f4f6f8 100%);
    box-shadow:
        0 24px 50px rgba(26, 26, 26, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset;
    border: 3px solid rgba(255, 255, 255, 0.85);
}
.hero-media__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255,255,255,0.28) 0%, transparent 42%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}
.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
}
.hero-video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    background: #000;
}
@keyframes heroBlobFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.05); }
}
@keyframes heroRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.lgbazar-hero h1 {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #2c3e50;
}
.hero-sub { font-size: 1.2em; color: #7f8c8d; margin-bottom: 35px; max-width: 700px; line-height: 1.8; }
.hero-sub p { margin: 0 0 0.65em; }
.hero-sub p:last-child { margin-bottom: 0; }
.hero-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 100%;
}
.hero-buttons .btn {
    justify-content: center;
    min-width: 0;
    padding: 14px 12px;
    font-size: 0.92em;
    white-space: nowrap;
}
.hero-buttons .btn-large {
    padding: 14px 12px;
    font-size: 0.92em;
}

/* ============ دکمه‌ها ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-large { padding: 16px 32px; font-size: 1.05em; }
.btn-primary { background: #A50034; color: #fff; }
.btn-primary:hover {
    background: #7A0028;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}
.btn-success { background: #25D366; color: #fff; }
.btn-success:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.btn-outline { background: transparent; color: #A50034; border: 2px solid #A50034; }
.btn-outline:hover { background: #A50034; color: #fff; transform: translateY(-2px); }

/* ============ تماس سریع ============ */
.quick-contact {
    background: linear-gradient(135deg, #1f2937 0%, #2c3e50 55%, #34495e 100%);
    padding: 44px 0;
    color: #fff;
}
.quick-contact-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.qc-text h3 {
    font-size: 1.45em;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.qc-text__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #A50034, #d4145a);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(165, 0, 52, 0.35);
}
.qc-text p { color: rgba(255,255,255,0.82); font-size: 0.96em; line-height: 1.7; max-width: 520px; }
.qc-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.qc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    text-decoration: none;
    min-width: 0;
}
.qc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    background: rgba(255,255,255,0.12);
}
.qc-btn__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15em;
    color: #fff;
}
.qc-btn--phone .qc-btn__icon { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.qc-btn--phone2 .qc-btn__icon { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.qc-btn--mobile .qc-btn__icon { background: linear-gradient(135deg, #16a34a, #22c55e); }
.qc-btn--whatsapp .qc-btn__icon { background: linear-gradient(135deg, #128c7e, #25D366); }
.qc-btn strong { font-size: 1em; font-weight: 700; letter-spacing: 0.01em; white-space: nowrap; }
.about-text { font-size: 1.05em; color: #5f6b7a; line-height: 1.9; max-width: 860px; margin: 0 auto; text-align: center; }
.about-text p { margin: 0 0 0.75em; }
.about-text p:last-child { margin-bottom: 0; }

/* ============ اعتماد ============ */
.lgbazar-trust {
    background: linear-gradient(180deg, #f6f8fa 0%, #ffffff 55%, #f9fafb 100%);
    padding: 52px 0;
    border-bottom: 1px solid #eceff3;
}
.trust-badges-wrap { position: relative; }
.trust-badges-scroll {
    position: relative;
}
.trust-badges-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 4px;
    width: 28px;
    background: linear-gradient(90deg, #f9fafb 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.trust-badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 132px;
    padding: 20px 14px 18px;
    background: #fff;
    border: 1px solid #e9edf2;
    border-radius: 18px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 18px rgba(26, 26, 26, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.trust-badge-card:hover {
    transform: translateY(-4px);
    border-color: rgba(165, 0, 52, 0.22);
    box-shadow: 0 14px 30px rgba(165, 0, 52, 0.1);
}
.trust-badge-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35em;
    flex-shrink: 0;
}
.trust-badge-card__label {
    font-size: 0.92em;
    font-weight: 700;
    line-height: 1.65;
    color: #2c3e50;
}
.trust-badge-card--0 .trust-badge-card__icon { background: linear-gradient(135deg, #fff4e8, #ffe8cc); color: #c27803; }
.trust-badge-card--1 .trust-badge-card__icon { background: linear-gradient(135deg, #eef6ff, #dbeafe); color: #1d4ed8; }
.trust-badge-card--2 .trust-badge-card__icon { background: linear-gradient(135deg, #f3efff, #e8ddff); color: #6d28d9; }
.trust-badge-card--3 .trust-badge-card__icon { background: linear-gradient(135deg, #eefaf3, #d9f5e5); color: #0f766e; }
.trust-badge-card--4 .trust-badge-card__icon { background: linear-gradient(135deg, #fff1f4, #ffdbe5); color: #A50034; }
.trust-badge-card--5 .trust-badge-card__icon { background: linear-gradient(135deg, #eef8ff, #d7efff); color: #0369a1; }
.trust-badge-card--6 .trust-badge-card__icon { background: linear-gradient(135deg, #f0fdf4, #dcfce7); color: #15803d; }
.trust-badge-card--7 .trust-badge-card__icon { background: linear-gradient(135deg, #fff7f9, #ffe4ea); color: #be123c; }

/* legacy */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}
.trust-item:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}
.trust-item i { color: #27ae60; font-size: 1.5em; flex-shrink: 0; }
.trust-item span { font-weight: 500; color: #2c3e50; }

/* ============ عنوان بخش ============ */
.section-head { text-align: center; margin-bottom: 50px; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255, 255, 255, 0.9); }
.section-head h2 {
    font-size: 2.3em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}
.section-head h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    background: #A50034;
    border-radius: 2px;
}
.section-head p { color: #7f8c8d; font-size: 1.05em; margin-top: 20px; }
.lgbazar-form .section-head h2::after { background: #fff; }

/* CTA داخل بخش — legacy */
.section-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ecf0f1;
}
.section-cta p {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 1.05em;
}

/* بنر CTA مشاوره */
.consult-cta-banner {
    position: relative;
    margin-top: 48px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #A50034 0%, #7A0028 55%, #5c001e 100%);
    color: #fff;
    box-shadow: 0 22px 50px rgba(165, 0, 52, 0.22);
}
.consult-cta-banner__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 25%, rgba(255,255,255,0.14) 0%, transparent 42%),
        radial-gradient(circle at 88% 78%, rgba(37,211,102,0.16) 0%, transparent 38%),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px);
    pointer-events: none;
}
.consult-cta-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 30px;
    flex-wrap: wrap;
}
.consult-cta-banner__head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1 1 280px;
    min-width: 0;
}
.consult-cta-banner__icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.consult-cta-banner__title {
    margin: 0 0 8px;
    font-size: 1.35em;
    font-weight: 800;
    line-height: 1.45;
}
.consult-cta-banner__text {
    margin: 0;
    font-size: 0.98em;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}
.consult-cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 0 1 auto;
}
.consult-cta-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.92em;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.consult-cta-banner__btn--primary {
    background: #fff;
    color: #A50034;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}
.consult-cta-banner__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.consult-cta-banner__btn--wa {
    background: #25D366;
    color: #fff;
}
.consult-cta-banner__btn--wa:hover {
    background: #1da851;
    transform: translateY(-2px);
}
.consult-cta-banner__btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.consult-cta-banner__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============ دسته‌بندی — بنر ============ */
.lgbazar-services { padding: 80px 0; background: #fff; }
.cat-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.cat-banner-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #ecf0f1;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.cat-banner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(165, 0, 52, 0.35);
    box-shadow: 0 16px 36px rgba(165, 0, 52, 0.12);
}
.cat-banner-card__img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9fa 0%, #f1f3f5 100%);
}
.cat-banner-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.cat-banner-card:hover .cat-banner-card__img img {
    transform: scale(1.05);
}
.cat-banner-card__body {
    padding: 16px 14px 18px;
    text-align: center;
    background: #fff;
}
.cat-banner-card__title {
    margin: 0;
    font-size: 1.05em;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.55;
    display: inline-block;
    position: relative;
}
.cat-banner-card__title::after {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #A50034, #d6336c);
    transition: width 0.28s ease;
}
.cat-banner-card:hover .cat-banner-card__title {
    color: #A50034;
}
.cat-banner-card:hover .cat-banner-card__title::after {
    width: 44px;
}

/* ============ جدیدترین محصولات ============ */
.lgbazar-latest-products {
    padding: 72px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 45%, #f8f9fa 100%);
}
.latest-products-shell {
    position: relative;
    padding: 26px 52px 30px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(165, 0, 52, 0.1);
    box-shadow: 0 22px 55px rgba(26, 26, 26, 0.08);
    overflow: hidden;
}
.latest-products-shell::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #A50034, #d6336c, #A50034);
}
.home-products-swiper {
    position: relative;
    overflow: hidden;
    padding: 8px 4px 4px;
    width: 100%;
}
.home-products-swiper .swiper-wrapper {
    align-items: stretch;
}
.home-products-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.hp-product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: #fff;
    border: 1px solid #edf0f2;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.hp-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(165, 0, 52, 0.28);
    box-shadow: 0 16px 34px rgba(165, 0, 52, 0.12);
}
.hp-product-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 220px;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    padding: 16px;
    background: linear-gradient(110deg, #f3f5f7 0%, #e9ecef 45%, #f3f5f7 90%);
    background-size: 200% 100%;
    animation: hpImgShimmer 1.4s ease-in-out infinite;
    text-decoration: none;
    overflow: hidden;
}
.hp-product-card__media:has(.hp-product-card__img.is-loaded),
.hp-product-card__media:has(.hp-product-card__placeholder) {
    animation: none;
    background: linear-gradient(180deg, #fafbfc 0%, #f3f5f7 100%);
}
.hp-product-card__media img,
.hp-product-card__img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center center;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.hp-product-card__img:not(.is-loaded) {
    opacity: 0.85;
}
.hp-product-card__img.is-loaded {
    opacity: 1;
}
@keyframes hpImgShimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
.hp-product-card:hover .hp-product-card__media img {
    transform: none;
}
.hp-product-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #c5ccd3;
    font-size: 2.4em;
}
.hp-product-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #0f6b23;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.hp-product-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 16px 18px;
    flex: 1 1 auto;
    min-height: 168px;
}
.hp-product-card__title {
    margin: 0;
    font-size: 0.94em;
    font-weight: 700;
    line-height: 1.55;
    min-height: 3.1em;
    max-height: 3.1em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-product-card__title a {
    color: #2c3e50;
    text-decoration: none;
}
.hp-product-card__title a:hover {
    color: #A50034;
}
.hp-product-card__price {
    font-size: 1.08em;
    font-weight: 800;
    color: #A50034;
    letter-spacing: -0.01em;
    min-height: 1.35em;
}
.hp-product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 11px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #A50034 0%, #7A0028 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.88em;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hp-product-card__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(165, 0, 52, 0.28);
}
.hp-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #A50034;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hp-swiper-btn:hover {
    background: #A50034;
    color: #fff;
}
.latest-products-shell > .hp-swiper-btn--prev { right: 10px; left: auto; }
.latest-products-shell > .hp-swiper-btn--next { left: 10px; right: auto; }
.hp-swiper-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
@media (max-width: 640px) {
    .latest-products-shell { padding: 20px 44px 24px; }
    .latest-products-shell > .hp-swiper-btn { width: 36px; height: 36px; font-size: 13px; }
    .latest-products-shell > .hp-swiper-btn--prev { right: 6px; }
    .latest-products-shell > .hp-swiper-btn--next { left: 6px; }
    .hp-product-card__media { flex: 0 0 180px; height: 180px; min-height: 180px; max-height: 180px; }
}

/* legacy service cards (اگر جایی استفاده شود) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.service-card {
    background: #fff;
    border: 1px solid #ecf0f1;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
    color: #2c3e50;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card:hover {
    border-color: #A50034;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.15);
}
.card-image {
    width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
    margin-bottom: 20px; background: #f8f9fa;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, #A50034, #7A0028);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 2em;
}
.service-card h3 { font-size: 1.15em; font-weight: 600; margin-bottom: 12px; color: #2c3e50; }
.service-card p { color: #7f8c8d; font-size: 0.9em; margin-bottom: 18px; flex-grow: 1; }
.card-link {
    color: #A50034;
    font-weight: 600;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}
.service-card:hover .card-link { gap: 10px; }

/* ============ درباره ============ */
.lgbazar-about { padding: 80px 0; background: #f8f9fa; }

/* ============ مقالات ============ */
.lgbazar-articles { padding: 80px 0; background: #fff; }
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    color: #2c3e50;
}
.article-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); }
.article-image { height: 180px; background: #ecf0f1; overflow: hidden; }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.article-card:hover .article-image img { transform: scale(1.05); }
.article-body { padding: 25px; }
.article-body h3 { font-size: 1.1em; font-weight: 600; margin-bottom: 12px; line-height: 1.5; }
.article-body p { color: #7f8c8d; font-size: 0.9em; margin-bottom: 15px; }

/* ============ FAQ ============ */
.lgbazar-faq { padding: 80px 0; background: #f8f9fa; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}
.faq-item[open] { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); }
.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: background 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #f8f9fa; }
.faq-item summary i { color: #A50034; transition: transform 0.3s; font-size: 0.9em; }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-answer { padding: 0 25px 25px; }
.faq-answer p { color: #7f8c8d; line-height: 1.8; }

/* ============ نقشه ============ */
.lgbazar-map {
    background: #f6f8fa;
    padding: 56px 0 64px;
    border-top: 1px solid #eceff3;
}
.home-map-address {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #5f6b7a;
    font-weight: 600;
}
.home-map-address i { color: #A50034; }
.home-map-hours {
    margin-top: 10px;
    color: #7f8c8d;
    line-height: 1.8;
    font-size: 0.95em;
}
.home-map-shell {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}
.home-map-frame {
    position: relative;
    width: 100%;
    min-height: 360px;
    height: min(52vh, 460px);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e3e8ee;
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
    background: #e9edf2;
}
.home-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.home-map-dir-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    background: #A50034;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 22px rgba(165, 0, 52, 0.22);
}
.home-map-dir-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(165, 0, 52, 0.28);
    color: #fff;
}

/* ============ فرم ============ */
.lgbazar-form {
    background: linear-gradient(135deg, #A50034 0%, #7A0028 100%);
    color: #fff;
    padding: 80px 0 96px;
}
.request-form {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.request-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}
.form-field {
    display: flex;
    align-items: stretch;
    min-height: 54px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.form-field--full {
    grid-column: 1 / -1;
    align-items: stretch;
    min-height: 0;
}
.form-field__icon {
    flex: 0 0 48px;
    width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #A50034;
    font-size: 1.05em;
    background: #fff7f9;
    border-inline-start: 1px solid #f0e6ea;
}
.form-field--full .form-field__icon {
    align-self: stretch;
    padding-top: 14px;
}
.form-field input,
.form-field select,
.form-field textarea {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    border: none;
    margin: 0;
    padding: 0 14px;
    min-height: 54px;
    font-family: inherit;
    font-size: 0.96em;
    color: #2c3e50;
    background: transparent;
    outline: none;
    direction: rtl;
    text-align: right;
}
.form-field textarea {
    min-height: 104px;
    padding: 14px;
    resize: vertical;
    line-height: 1.7;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #95a5a6;
    opacity: 1;
}
.form-field__phone {
    direction: ltr;
    text-align: left;
}
.form-field__phone::placeholder {
    direction: rtl;
    text-align: right;
}
.form-field select {
    cursor: pointer;
    appearance: none;
    padding-left: 38px;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A50034'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat left 12px center;
    background-size: 18px;
}
.form-field select option {
    color: #2c3e50;
    background: #fff;
}
.btn-submit {
    width: 100%;
    padding: 16px;
    background: #fff;
    color: #A50034;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-submit:hover { background: #2c3e50; color: #fff; transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-msg {
    margin-top: 14px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}
.form-msg.success { background: #d4edda; color: #155724; display: block; }
.form-msg.error { background: #f8d7da; color: #721c24; display: block; }

.form-or {
    text-align: center;
    margin: 30px 0 20px;
    color: rgba(255,255,255,0.8);
    position: relative;
}
.form-or::before,
.form-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: rgba(255,255,255,0.3);
}
.form-or::before { right: 0; }
.form-or::after { left: 0; }
.form-or span {
    background: transparent;
    padding: 0 15px;
    font-size: 0.95em;
}

.form-call-cta {
    text-align: center;
    margin-top: 8px;
    padding-bottom: 28px;
}
.btn-call-big {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    color: #A50034;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.btn-call-big:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.btn-call-big i { font-size: 2em; }
.btn-call-big div { display: flex; flex-direction: column; text-align: right; }
.btn-call-big small { font-size: 0.75em; opacity: 0.7; font-weight: 500; }
.btn-call-big strong { font-size: 1.2em; }

/* ============ فوتر ============ */
.lgbazar-footer { background: #1a1a1a; color: #aaa; position: relative; padding-top: 100px; }
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    transform: translateY(-99%);
}
.footer-wave svg { width: 100%; height: 100%; display: block; }
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.footer-logo img {
    max-height: 70px;
    width: auto;
}
.footer-logo-icon {
    display: flex;
    align-items: center;
    background: rgba(231,76,60,0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    justify-content: center;
}
.footer-logo h3 {
    color: #fff;
    font-size: 1.3em;
    font-weight: 700;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: #A50034;
    border-radius: 2px;
}
.footer-col p { color: #aaa; line-height: 1.8; margin-bottom: 15px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.contact-item { display: flex; align-items: center; gap: 12px; color: #aaa; transition: color 0.3s; }
.contact-item:hover { color: #A50034; }
.contact-item i { color: #A50034; width: 20px; text-align: center; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #aaa;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.footer-links a:hover { color: #A50034; transform: translateX(-5px); }
.footer-links a i { color: #A50034; font-size: 0.8em; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1em;
    transition: all 0.3s;
}
.social-links a:hover { background: #A50034; transform: translateY(-3px); }

.footer-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #A50034;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}
.footer-call-btn:hover {
    background: #7A0028;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(231, 76, 60, 0.3);
}

.footer-bottom {
    background: #0d0d0d;
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}
.footer-enamad {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: #fff;
    border-radius: 10px;
    line-height: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.footer-enamad img {
    display: block;
    max-height: 72px;
    width: auto;
    height: auto;
}

/* ============ دکمه شناور ============ */
.floating-call {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #A50034;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}
.floating-call:hover { transform: scale(1.1); background: #7A0028; }
.floating-call-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #A50034;
    animation: pulse 2s infinite;
    z-index: -1;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}

.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}
.floating-whatsapp:hover { transform: scale(1.1); background: #1da851; }

/* نوار پایین موبایل */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 999;
}
.mb-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px;
    color: #2c3e50;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 0.75em;
    font-weight: 500;
}
.mb-item i {
    font-size: 1.4em;
    color: #A50034;
}
.mb-item.mb-wa i { color: #25D366; }
.mb-item:active { background: #f8f9fa; }

/* ============ موبایل ============ */
@media (max-width: 992px) {
    .nav-main { gap: 20px; }
    .lgbazar-hero h1 { font-size: 2.3em; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .quick-contact-inner {
        flex-direction: column;
        text-align: center;
    }
    .qc-text h3 { justify-content: center; }
    .qc-buttons { justify-content: center; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .header-wrap {
        padding: 12px 0;
        gap: 10px;
        display: flex;
    }

    .logo { padding-right: 12px; }
    
    .menu-toggle { display: flex; }

    /* منوی دسکتاپ داخل هدر مخفی — پنل جدا باز می‌شود */
    .header-wrap .nav-main { display: none !important; }

    .nav-mobile-head, .nav-mobile-foot { display: flex; }

    .nav-mobile-body .nav-main,
    .nav-mobile-body {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-mobile-body > a,
    .nav-mobile-body > .nav-item > a,
    .nav-mobile-body .nav-main > a,
    .nav-mobile-body .nav-main > .nav-item > a {
        padding: 16px 20px;
        min-height: 52px;
        width: 100%;
        text-align: right;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #2c3e50;
        text-decoration: none;
    }
    .nav-mobile-body > a::after,
    .nav-mobile-body > .nav-item > a::after,
    .nav-mobile-body .nav-main > a::after,
    .nav-mobile-body .nav-main > .nav-item > a::after { display: none; }
    .nav-mobile-body > a:hover,
    .nav-mobile-body > .nav-item > a:hover,
    .nav-mobile-body .nav-main > a:hover,
    .nav-mobile-body .nav-main > .nav-item > a:hover { background: #f8f9fa; }
    .nav-mobile-body .nav-item { width: 100%; position: relative; }
    .nav-mobile-body .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        display: none;
        overflow: hidden;
    }
    .nav-mobile-body .nav-item.open > .nav-dropdown {
        display: block;
    }
    .nav-mobile-body .nav-dropdown a {
        padding: 14px 20px 14px 36px;
        min-height: 48px;
        border-bottom: 1px solid #ecf0f1;
        display: flex;
        align-items: center;
        color: #2c3e50;
        text-decoration: none;
    }
    
    .phone-text { display: none; }
    .btn-phone {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
    }
    .btn-phone i { font-size: 1.1em; }
    
    .lgbazar-swiper,
    .lgbazar-slides .swiper-slide,
    .lgbazar-slides.single { height: auto; }
    
    .slide-img-wrap { max-height: none; min-height: 160px; }
    
    .slide-overlay h2 { font-size: 1.6em; }
    .slide-overlay p { font-size: 1em; }
    
    .lgbazar-hero { padding: 40px 0; }
    .hero-inner--media {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero-content {
        order: 1;
    }
    .hero-media-frame {
        order: 2;
        padding: 12px;
        min-height: 280px;
    }
    .hero-image, .hero-video {
        min-height: 260px;
    }
    .hero-media-frame__chip {
        top: 20px;
        right: 20px;
        font-size: 11px;
        padding: 6px 11px;
    }
    .lgbazar-hero h1 { font-size: 1.7em; }
    .hero-sub { font-size: 1em; }
    .hero-buttons {
        grid-template-columns: 1fr;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .qc-buttons { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .qc-btn { width: 100%; min-width: 0; padding: 10px 12px; }
    .quick-contact { padding: 22px 0; }
    .qc-text h3 { font-size: 1.12em; margin-bottom: 6px; }
    .qc-text p { font-size: 0.86em; line-height: 1.55; max-width: none; }
    
    .lgbazar-trust { padding: 24px 0 28px; }
    .trust-badges-wrap.container { padding-left: 0; padding-right: 0; max-width: 100%; }
    .trust-badges-scroll {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 2px;
    }
    .trust-badges-scroll::-webkit-scrollbar { display: none; }
    .trust-badges-scroll::after { opacity: 1; }
    .trust-badges-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 0 20px;
        width: max-content;
        min-width: 100%;
    }
    .trust-badge-card {
        flex: 0 0 132px;
        width: 132px;
        min-height: 108px;
        padding: 14px 10px 12px;
        border-radius: 14px;
        scroll-snap-align: start;
    }
    .trust-badge-card__icon {
        width: 42px;
        height: 42px;
        font-size: 1.1em;
        border-radius: 12px;
    }
    .trust-badge-card__label {
        font-size: 0.78em;
        line-height: 1.5;
    }
    
    .consult-cta-banner {
        margin-top: 28px;
    }
    .consult-cta-banner__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 14px;
        gap: 12px;
    }
    .consult-cta-banner__head {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    .consult-cta-banner__icon {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        font-size: 1.15em;
        border-radius: 12px;
    }
    .consult-cta-banner__title {
        font-size: 1.02em;
        margin-bottom: 4px;
    }
    .consult-cta-banner__text {
        font-size: 0.84em;
        line-height: 1.5;
    }
    .consult-cta-banner__actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .consult-cta-banner__btn {
        width: auto;
        flex: 1 1 calc(50% - 4px);
        padding: 10px 10px;
        font-size: 0.86em;
        min-height: 42px;
    }
    
    .home-map-frame {
        min-height: 260px;
        height: 52vw;
        max-height: 320px;
        border-radius: 14px;
    }
    .home-map-dir-btn { width: 100%; justify-content: center; }
    
    .section-head h2 { font-size: 1.6em; }
    
    .lgbazar-services, .lgbazar-about, .lgbazar-articles, .lgbazar-faq, .lgbazar-map, .lgbazar-form, .lgbazar-latest-products {
        padding: 50px 0;
    }
    .lgbazar-form {
        padding-bottom: 72px;
    }
    .form-call-cta {
        padding-bottom: 36px;
    }
    
    .cat-banner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .home-products-swiper { padding: 8px 34px 4px; }
    .hp-product-card__media {
        flex-basis: 190px;
        height: 190px;
        min-height: 190px;
        max-height: 190px;
        padding: 12px;
    }
    .hp-product-card__body { min-height: 156px; }
    .hp-swiper-btn { width: 36px; height: 36px; }
    .request-form { padding: 18px 14px; }
    .request-form__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .form-field--full { grid-column: auto; }
    
    .btn-call-big {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .footer-logo { justify-content: center; }
    .footer-col h4::after { right: 50%; transform: translateX(50%); }
    .footer-contact, .social-links { justify-content: center; align-items: center; }
    .contact-item { justify-content: center; }
    .footer-links { text-align: center; }
    .footer-links a { justify-content: center; }
    
    .floating-call { bottom: 75px; left: 16px; width: 54px; height: 54px; font-size: 1.3em; }
    .floating-whatsapp { bottom: 140px; left: 16px; width: 54px; height: 54px; font-size: 1.5em; }
    
    .mobile-bottom-bar { display: flex; padding-bottom: env(safe-area-inset-bottom, 0); }
    body { padding-bottom: 65px; }
    main#main { padding-bottom: 8px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .logo { padding-right: 14px; }
    .logo-text { font-size: 0.95em; }
    .logo-img { max-height: 42px; }
    .header-wrap { gap: 8px; padding: 10px 0; }
    
    .trust-grid, .services-grid, .cat-banner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .cat-banner-card__body { padding: 12px 10px 14px; }
    .cat-banner-card__title { font-size: 0.92em; }
    .lgbazar-hero h1 { font-size: 1.4em; }
    .hero-sub { font-size: 0.95em; }
    .section-head h2 { font-size: 1.4em; }
    
    .footer-wave { height: 60px; }
    .lgbazar-footer { padding-top: 60px; }
    
    .qc-text h3 { font-size: 1.2em; }
    
    .request-form { padding: 20px 15px; }
    
    .btn-call-big { gap: 12px; padding: 14px 16px; }
    .btn-call-big i { font-size: 1.6em; }
    .btn-call-big strong { font-size: 1.05em; }
}