﻿/* ---show product---*/

/* Product Page Layout & General */
.lh-20 {
    line-height: 20px;
}

.justify-center {
    justify-content: center;
}

.mt-20 {
    margin-top: 20px;
}

/* Pricing & Labels */
.price-display {
    font-size: x-large;
    color: #00629b;
    margin-bottom: 10px;
}

.old-price {
    font-size: medium;
    color: #9d9d9d;
}

.off-label-red {
    background-color: #bb0000;
    color: #fff;
    position: absolute;
    font-size: x-large;
    margin: 20px -65px;
}

.off-label-xs {
    background-color: #bb0000;
    color: #fff;
    position: absolute;
    font-size: large;
    margin: 20px;
}

/* Buttons & Actions */
.btn-action-base {
    border-radius: 10px;
    line-height: 40px;
}

.btn-unavailable {
    background-color: #808080;
    color: #fff;
}

.btn-unavailable-fixed {
    position: fixed;
    z-index: 2147483647;
    line-height: 50px;
    background-color: #808080;
}

.btn-operator-fixed {
    position: fixed;
    line-height: 50px;
    z-index: 2147483647;
    background-color: #1278d4;
}

.btn-soon-fixed {
    position: fixed;
    line-height: 50px;
    z-index: 2147483647;
    background-color: #1278d4;
}

.btn-select-color {
    border-color: #0092e6;
    color: #00629b;
}

.btn-add-cart {
    border-color: #00629b;
}

.fixed-high-z {
    position: fixed;
    z-index: 2147483647;
}

/* Gallery */
.gallery-main-img {
    width: 500px;
    height: 450px;
}

/* Tabs */
.tab-font-100 {
    font-size: 100%;
}

@media (max-width: 768px) {
    .tabs-comment .nav-tabs > li {
        font-size: 11px; /* سایز بهینه برای گوشی */
        margin-left: 2px;
        margin-right: 1px;
    }

        .tabs-comment .nav-tabs > li a {
            padding: 8px 10px; /* فضای داخلی کمتر برای جا شدن بهتر تب‌ها */
        }
}
/* new show product */

/* تم رنگی اختصاصی Gemini */
:root {
    --gm-main: #00629b;
    --gm-bg-light: #f8fafc;
    --gm-border: #e2e8f0;
    --gm-text: #334155;
    --gm-gray: #94a3b8;
}

/* کانتینر اصلی */
.gm-product-card {
    direction: rtl;
    border: 1px solid var(--gm-border);
    border-radius: 15px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 20px;
}

.gm-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--gm-bg-light);
    border-bottom: 1px solid var(--gm-border);
}

.gm-title {
    font-size: 15px;
    font-weight: bold;
    color: var(--gm-main);
    margin: 0;
}

/* بخش کپسولی */
.gm-capsule-row {
    padding: 10px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gm-capsule {
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 11px;
    color: #334155;
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    white-space: nowrap;
}

    .gm-capsule i {
        margin-left: 6px;
        color: #00629b;
        font-size: 14px;
    }

/* وضعیت‌ها */
.gm-status-group {
    padding: 10px 15px;
}

.gm-status-item {
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--gm-text);
    display: flex;
    align-items: center;
}

    .gm-status-item i {
        color: var(--gm-main);
        margin-left: 10px;
        font-size: 18px;
        width: 22px;
        text-align: center;
    }

/* انتخاب رنگ */
.gm-color-section {
    padding: 10px 15px;
    border-top: 1px solid var(--gm-border);
}

.gm-color-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.gm-color-input {
    position: absolute;
    opacity: 0;
    width: 0;
}

.gm-color-label {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--gm-border);
    padding: 7px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 12px;
    transition: 0.3s;
}

.gm-color-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-left: 8px;
    border: 1px solid rgba(0,0,0,0.1);
}

/* وضعیت انتخاب شده */
.gm-color-input:checked + .gm-color-label {
    border-color: var(--gm-main);
    background: var(--gm-main);
    color: #fff;
}

/* باکس دکمه و قیمت */
.gm-action-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f0f7ff;
    margin: 10px 15px 15px;
    border-radius: 12px;
    border: 1px solid #e1eefb;
}

.gm-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--gm-main);
}

.gm-btn-buy {
    background: var(--gm-main);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    border: none;
}

/* حالت‌های خاص دکمه */
.gm-btn-select {
    background: #fff;
    color: var(--gm-main) !important;
    border: 1.5px dashed var(--gm-main) !important;
}

.gm-btn-disabled {
    background: #cbd5e1 !important;
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
}

/* موبایل - حالت شناور */
@media (max-width: 768px) {
    .gm-floating {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 12px 15px;
        z-index: 9999;
        margin: 0;
        border-radius: 15px 15px 0 0;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }
}

.gm-blink {
    animation: gm-blinker 1.5s linear infinite;
    color: #d32f2f;
    font-weight: bold;
    font-size: 11px;
}

@keyframes gm-blinker {
    50% {
        opacity: 0;
    }
}
/* هاور دکمه فعال */
.gm-btn-buy:not(.gm-btn-disabled):not(.gm-btn-soon):hover {
    background-color: #004d7a !important;
    color: #FFF !important;
    transform: translateY(-2px);
    transition: 0.3s;
}
/* دکمه اپراتور (سبز واتس‌اپ) */
.gm-btn-operator {
    background-color: #25d366 !important;
    color: #fff !important;
}
/* دکمه بزودی (خاکستری) */
.gm-btn-soon {
    background-color: #64748b !important;
    color: #fff !important;
    cursor: default;
    pointer-events: none;
}
/* دکمه ناموجود */
.gm-btn-disabled {
    background-color: #cbd5e1 !important;
    color: #94a3b8 !important;
    pointer-events: none;
}
/* وضعیت آنلاین زیبا */
.gm-online-status {
    background: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid #eee;
    color: #444;
    display: flex;
    align-items: center;
}

.gm-blink {
    color: #2ecc71;
    margin-left: 5px;
    animation: gm-blink-anim 1s steps(5, start) infinite;
}

@keyframes gm-blink-anim {
    to {
        visibility: hidden;
    }
}

/* لیبل رنگ ناموجود */
.gm-label-out {
    opacity: 0.6;
    background: #d8d8d8 !important;
    border-style: dashed !important;
    cursor: not-allowed !important;
}

/* هاور دکمه‌ها */
.gm-btn-buy:not(.gm-btn-disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gm-link-capsule {
    text-decoration: none !important;
    transition: all 0.3s;
}

    .gm-link-capsule:hover {
        background-color: #e2e8f0 !important; /* یک مقدار تیره‌تر در زمان هاور */
        border-color: var(--gm-main) !important;
    }

.gm-share-premium {
    padding: 20px 15px;
    background: #fdfdfd;
    border-top: 1px solid #f0f0f0;
    border-radius: 0 0 15px 15px;
}

.gm-share-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #888;
    font-size: 11px;
    font-weight: bold;
}

.gm-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to left, #eee, transparent);
}

.gm-share-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.gm-share-item {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

    /* رنگ‌بندی لوکس */
    .gm-share-item.wa {
        background: linear-gradient(135deg, #25D366, #128C7E);
    }

    .gm-share-item.tg {
        background: linear-gradient(135deg, #0088cc, #005580);
    }

    .gm-share-item.sms {
        background: linear-gradient(135deg, #ff9800, #e68a00);
    }

    .gm-share-item.copy {
        background: linear-gradient(135deg, #444, #222);
    }

    .gm-share-item:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

/* استایل کپی شد */
.copy-success {
    position: relative;
}

    .copy-success::before {
        content: "کپی شد";
        position: absolute;
        top: -35px;
        background: #222;
        color: #fff;
        padding: 4px 10px;
        border-radius: 6px;
        font-size: 10px;
        animation: fadeInOut 1.5s ease-in-out;
    }

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(5px);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-5px);
    }
}

.gm-product-footer {
    border-top: 1px solid #f0f0f0;
    background: #fff;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

.gm-vot-section {
    padding: 15px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #f9f9f9;
}

.gm-tag-section {
    padding: 15px;
    background: #fafafa;
}

.gm-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.gm-tag-item {
    font-size: 11px;
    color: #555;
    background: #fff;
    border: 1px solid #eee;
    padding: 5px 12px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .gm-tag-item i {
        color: var(--gm-main);
        font-size: 10px;
    }

    .gm-tag-item:hover {
        border-color: var(--gm-main);
        color: var(--gm-main);
        background: #f0f7ff;
        transform: scale(1.05);
    }

.gm-share-glass-container {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05); /* شفافیت شیشه‌ای */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gm-share-lux-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: bold;
    color: var(--gm-main);
    margin-bottom: 15px;
}

.gm-lux-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to left, var(--gm-main), transparent);
    opacity: 0.2;
}

.gm-share-glass-grid {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.gm-glass-item {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    color: var(--gm-main);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(var(--gm-main-rgb), 0.3); /* فرض بر داشتن متغیر rgb */
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

/* اگر متغیر rgb نداری این border ساده را استفاده کن */
.gm-glass-item {
    border: 1px solid var(--gm-main);
    opacity: 0.8;
}

    .gm-glass-item:hover {
        background: var(--gm-main);
        color: #fff;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        opacity: 1;
    }

/* انیمیشن کپی لینک */
.copy-btn.copy-success::before {
    content: "کپی شد";
    position: absolute;
    top: -40px;
    background: var(--gm-main);
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    border-radius: 8px;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*منو شناور قیمت و دکمه خرید گوشی*/
/* --- Luxury Neon-Glass Action Bar (Matched to PWA Style) --- */


@media screen and (max-width: 767px) {
    /* ۱. کانتینر اصلی: شیشه‌ای آبی تیره با هاله نئون */
    .gm-action-area.gm-floating {
        display: flex !important;
        position: fixed !important;
        bottom: 20px !important;
        left: 15px !important;
        right: 15px !important;
        height: 65px !important; /* دقیقاً هم‌اندازه نوار PWA شما */
        background: rgba(0, 70, 115, 0.8) !important; /* آبی عمیق شیشه‌ای */
        backdrop-filter: blur(15px) saturate(160%) !important;
        -webkit-backdrop-filter: blur(15px) saturate(160%) !important;
        border-radius: 25px !important;
        border: 1.5px solid #0092e6af !important; /* حاشیه نئونی */
        box-shadow: 0 0 15px rgba(0, 146, 230, 0.4), 0 3px 8px 0px #004d7a !important;
        z-index: 1000000 !important;
        padding: 0 15px !important;
        align-items: center !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
    }

    /* ۲. بخش نمایش قیمت (سمت راست) */
    .gm-price, #pricecolor {
        flex: 1 !important;
        color: #fff !important;
        text-align: right !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        line-height: 1.2 !important;
    }

        .gm-price span, #pricecolor {
            font-size: 18px !important;
            font-weight: 800 !important;
            color: #00d2ff !important; /* رنگ فیروزه‌ای نئونی برای قیمت */
            text-shadow: 0 0 10px rgba(0, 210, 255, 0.4) !important;
        }

            .gm-price small, #pricecolor small {
                font-size: 10px !important;
                color: rgba(255, 255, 255, 0.7) !important;
                margin-right: 4px !important;
            }

    /* ۳. دکمه اصلی (سمت چپ): نئونی و کشیده */
    .gm-btn-buy, #add2 {
        flex: 1.2 !important;
        height: 42px !important; /* کمی کوتاه‌تر برای جایگیری بهتر در نوار */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: linear-gradient(135deg, #00629b, #00d2ff) !important; /* گرادینت مطابق دایره PWA */
        color: #fff !important;
        border-radius: 18px !important;
        font-weight: bold !important;
        font-size: 13px !important;
        text-decoration: none !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 4px 12px rgba(0, 210, 255, 0.3) !important;
        transition: all 0.2s ease !important;
    }

    /* --- حالت‌های خاص دکمه (سازگار با JS) --- */

    /* حالت ناموجود */
    .gm-btn-disabled {
        background: rgba(255, 255, 255, 0.1) !important;
        color: rgba(255, 255, 255, 0.4) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: none !important;
    }

    /* حالت هماهنگی با اپراتور */
    .gm-btn-operator {
        background: linear-gradient(135deg, #25d366, #128c7e) !important;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3) !important;
    }

    /* حالت بزودی */
    .gm-btn-soon {
        background: linear-gradient(135deg, #666, #333) !important;
    }

    /* ۴. افکت لمس دکمه */
    .gm-btn-buy:active {
        transform: scale(0.95) !important;
        filter: brightness(1.2) !important;
    }

    /* حذف المان قیمت اگر خالی بود (برای هماهنگی با JS در حالت ناموجود) */
    #pricecolor:empty {
        display: none !important;
    }

    #pricecolor-mobile {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
}
/* رنگ پیش‌فرض برای کامپیوتر */
.old-price-label {
    color: rgb(93 93 93 / 50%);
}

/* رنگ مخصوص گوشی (زمانی که عرض صفحه کم است) */
@media (max-width: 768px) {
    .old-price-label {
        color: rgba(255, 255, 255, 0.5) !important;
    }
}

.mobile-cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    margin-left: 10px; /* فاصله از قیمت */
    font-size: 20px;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4d4d;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
    border: 1px solid #222;
}

/* اصلاح چیدمان بخش قیمت در موبایل */
#pricecolor-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* ظرف اصلی با لبه‌های نرم و سایه ملایم */
.box-section.border {
    border: none !important;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
/*----سکشن نام کالا و تصویر و گالری -----*/
/* هدر مدرن با خط کناری ضخیم و رنگی */
.modern-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 6px solid #00629b !important;
    margin-bottom: 30px;
    padding: 5px 15px;
}

.product-title {
    line-height: 1.6;
}

.admin-edit {
    color: #00629b;
    font-size: 18px;
    background: #f0f7ff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: 0.3s;
}

    .admin-edit:hover {
        background: #00629b;
        color: #fff;
    }

/* استایل جدید ارسال رایگان (کپسولی) */
.badge-free {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px); /* افکت شیشه‌ای */
    color: #00a7b8;
    padding: 6px 15px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    z-index: 5;
    border: 1px solid #00a7b8;
    box-shadow: 0 4px 12px #00a7b8ab;
}

/* ارتقای گالری تصاویر کوچک */
.gallery-wrapper .swiper-slide img {
    border-radius: 15px;
    border: 2px solid transparent;
    padding: 3px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-wrapper .swiper-slide-active img {
    border-color: #00629b;
    transform: scale(1.0);
}

/* تصویر اصلی محصول */
.galleryImg {
    width: 100%;
    border-radius: 20px !important;
    /* ایجاد یک سایه زیر تصویر برای عمق بخشیدن */
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.08));
    transition: transform 0.5s ease;
}

    .galleryImg:hover {
        transform: translateY(-5px);
    }

/* فلش‌های گالری */
.zmdi-chevron-up, .zmdi-chevron-down {
    color: #;
    font-size: 26px !important;
    opacity: 0.5;
    transition: 0.3s;
}

    .zmdi-chevron-up:hover, .zmdi-chevron-down:hover {
        opacity: 1;
        transform: scale(1.2);
    }
/*----سکشن توضیحات ویژگی ها و نظرات سایت -----*/

/* ظرف کلی تب‌ها */
.modern-tabs-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

/* استایل سربرگ تب‌ها */
.custom-product-tabs {
    background: #fcfcfc;
    border-bottom: 2px solid #eee;
    padding: 10px 20px 0;
}

    .custom-product-tabs li a {
        border: none !important;
        background: transparent !important;
        color: #777 !important;
        font-weight: bold;
        padding: 15px 25px !important;
        transition: all 0.3s;
        position: relative;
    }

    .custom-product-tabs li.active a {
        color: #00629b !important;
    }

        /* خط زیر تب فعال (افکت نئونی ملایم) */
        .custom-product-tabs li.active a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #00629b;
            box-shadow: 0 -2px 10px rgba(0, 98, 155, 0.4);
            border-radius: 10px 10px 0 0;
        }

/* نشانگر تعداد نظرات */
.comment-count-badge {
    background: #eee;
    color: #666;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 11px;
    margin-right: 5px;
    transition: 0.3s;
}

.active .comment-count-badge {
    background: #00629b;
    color: #fff;
}

/* محتوای داخلی تب‌ها */
.modern-tab-body {
    padding: 20px;
    line-height: 1.8;
    color: #555;
}

/* استایل جدول ویژگی‌ها */
.features-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-row {
    display: flex;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

    .feature-row:hover {
        background: #f1f7fa;
        transform: translateX(-5px);
    }

.feature-title {
    flex: 0 0 30%;
    background: #f1f1f1;
    padding: 12px 20px;
    font-weight: bold;
    color: #444;
    border-left: 1px solid #eee;
}

.feature-value {
    flex: 1;
    padding: 12px 20px;
    color: #666;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
    }

    .feature-title {
        flex: none;
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #eee;
    }

    .custom-product-tabs li a {
        padding: 8px 9px !important;
        font-size: 10px !important;
    }
}
/*---- نمایش کمنت ----*/
/* ظرف اصلی لیست */
.modern-comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
}

/* کارت نظر - تمرکز روی سفیدی و تمیزی */
.comment-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 15px;
    border: 1px solid #f2f2f2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

    /* افکت ملایم هنگام لمس یا هاور */
    .comment-card:hover {
        border-color: #00629b30;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

.comment-header {
    margin-bottom: 12px;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* آیکون کاربر با رنگ برند */
.user-avatar-placeholder {
    width: 38px;
    height: 38px;
    background: #f0f7ff; /* آبی بسیار ملایم */
    color: #00629b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.comment-date {
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
}

/* باکس متن دیدگاه - شبیه به حباب گفتگو */
.comment-body {
    background: #fafafa;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    border: 1px solid #f5f5f5;
}

/* تنظیمات اختصاصی برای گوشی */
@media (max-width: 480px) {
    .comment-card {
        padding: 12px;
        border-radius: 15px;
    }

    .comment-body {
        font-size: 12.5px;
        padding: 10px;
    }
}




@media (min-width:1200px) {
    .color-circle .zmdi-plus {
        display: none
    }

    .gallery .galleryImg {
        width: 400px;
        height: 420px;
    }

    .gallery .zmdi-chevron-up {
        color: #b2b2b2;
        font-size: 40px;
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        height: 30px;
        margin-right: 15px;
    }

        .gallery .zmdi-chevron-up:hover {
            color: #0092e6;
        }

    .swiper-circle-paging {
        margin-right: 50px !important;
    }

    .gallery .zmdi-chevron-down {
        color: #b2b2b2;
        font-size: 40px;
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 0px;
        margin-right: 15px;
    }

        .gallery .zmdi-chevron-down:hover {
            color: #0092e6;
        }

    .gallery .gallery-wrapper {
        margin-right: 70px !important;
        width: 0%;
        height: 380px !important;
        box-sizing: content-box;
        align-items: center;
    }

        .gallery .gallery-wrapper .gallery1 img {
            border: 1px solid #b2b2b2;
            border-radius: 20px !important;
            width: 80px;
            height: 80px;
        }
}

.swiper-circle-paging {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
}

@media (min-width:992px) and (max-width:1199px) {
    .color-circle .zmdi-plus {
        display: none;
    }

    .gallery .galleryImg {
        width: 400px;
        height: 450px;
    }

    .gallery .zmdi-chevron-up {
        color: #b2b2b2;
        font-size: 40px;
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        height: 30px;
        margin-right: 15px;
    }

        .gallery .zmdi-chevron-up:hover {
            color: #0092e6;
        }

    .gallery .zmdi-chevron-down {
        color: #efbd42;
        font-size: 40px;
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 0px;
        margin-right: 15px;
    }

        .gallery .zmdi-chevron-down:hover {
            color: #0092e6;
        }

    .gallery .gallery-wrapper {
        margin-right: 22px;
        width: 0%;
        height: 380px !important;
        box-sizing: content-box;
        align-items: center;
    }

        .gallery .gallery-wrapper .gallery1 img {
            border: 1px solid #b2b2b2;
            border-radius: 20px;
            width: 80px;
            height: 80px;
        }
}

@media (min-width:766px) and (max-width:991px) {
    .color-circle .zmdi-plus {
        display: none
    }

    .gallery .galleryImg {
        width: 400px;
        height: 400px;
    }

    .gallery .zmdi-chevron-up {
        color: #b2b2b2;
        font-size: 40px;
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        height: 20px;
        margin-right: 15px;
    }

        .gallery .zmdi-chevron-up:hover {
            color: #0092e6;
        }

    .swiper-circle-paging {
        margin-right: 50px !important;
    }

    .gallery .zmdi-chevron-down {
        color: #b2b2b2;
        font-size: 40px;
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 5px;
        margin-right: 15px;
    }

        .gallery .zmdi-chevron-down:hover {
            color: #0092e6;
        }

    .gallery .gallery-wrapper {
        margin-right: 65px;
        width: 0%;
        height: 350px !important;
        box-sizing: content-box;
        align-items: center;
    }

        .gallery .gallery-wrapper .gallery1 img {
            border: 1px solid #b2b2b2;
            border-radius: 20px;
            width: 80px;
            height: 80px;
        }
}

.offSend {
    background-color: #00629b;
    color: #fff;
    border-radius: 5px;
    border-color: #000;
    padding: 5px;
    position: absolute;
    font-size: larger;
    margin-top: 20px;
}

@media (max-width:766px) {
    .color-circle .zmdi-plus {
        margin: 7px 0 0 7px;
        left: 8px;
        color: #000;
        font-size: 10px;
        font-weight: 800 !important;
    }

    .gallery-xs .badge-free {
        margin-right: 15px;
        padding: 7px !important;
    }


    .gallery-xs .swiper-button-prev {
        height: 80% !important;
        font-size: 15px;
        font-weight: 900 !important;
        width: 0;
    }

    .gallery-xs .swiper-button-next {
        height: 80% !important;
        font-size: 15px;
        font-weight: 900 !important;
        width: 0;
    }

    .gallery-xs .circle-page {
        height: 0px !important;
    }

    .gallery-xs .gallery-wrapper {
        height: 100px !important;
        margin-top: 25px !important;
        width: 20px !important;
    }

        .gallery-xs .gallery-wrapper .gallery2 img {
            border: 1px solid #b2b2b2;
            border-radius: 20px !important;
            width: 68px;
            height: 75px;
            margin-right: 2.5vi;
        }

        .gallery-xs .gallery-wrapper .gallery-small img {
            border: 1px solid #b2b2b2;
            border-radius: 5px;
            width: 68px;
            height: 75px;
            margin-right: 46vi;
        }
}

.gallery .gallery-wrapper img:hover, .gallery-xs .gallery-wrapper img:hover {
    border: 2px solid #0092e6;
}

.topGallery {
    margin-top: 25%;
}
/*End Gallery*/
/*Start Requierd Product*/
@media (min-width:1200px) {
    .reqpro .swiper {
        width: 250px;
        height: 100px;
    }



    .reqpro .swiper-slide a img {
        width: 220px;
        height: 140px;
        padding: 8px 8px 0;
        border-radius: 15px 15px 0 0;
    }

    .reqpro .swiper-slide h2 a {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        width: 250px;
    }



    .reqpro .swiper-slide .blackoffimg {
        width: 100%;
        height: 5%;
        border: hidden
    }

    .reqpro .swiper-slide .blackoffimgpro {
        height: 250px
    }

    .hompro-search a img {
        width: 136% !important;
    }



    .reqpro .swiper-slide a p {
        color: #fff;
        border-radius: 10px;
        padding: 5px;
        background-color: #00629b;
        position: absolute;
        font-weight: 900;
        font-size: 10px;
        margin: 5px 10px;
    }

    .reqpro .swiper-slide .isexis {
        border-radius: 0 0 15px 15px;
        height: 40px;
    }

        .reqpro .swiper-slide.isexis .price {
            color: #ab0000;
            font-size: medium
        }

            .reqpro .swiper-slide .isexis .price span {
                color: #808080;
                font-size: 12px
            }

    .reqpro .box-section {
        height: 300px !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .reqpro .swiper {
        width: 220px;
        height: 50px !important;
    }

    .reqpro .swiper-slide a img {
        width: 190px;
        height: 140px;
        padding: 8px 8px 0;
        border-radius: 15px 15px 0 0;
    }

    .reqpro .swiper-slide h2 a {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        width: 220px;
    }

    .reqpro .swiper-slide .blackoffimg {
        width: 100%;
        height: 5%;
        border: hidden
    }

    .reqpro .swiper-slide .blackoffimgpro {
        height: 250px
    }

    .hompro-search a img {
        width: 116% !important;
    }



    .reqpro .swiper-slide a p {
        color: #fff;
        border-radius: 10px;
        padding: 5px;
        background-color: #00629b;
        position: absolute;
        font-weight: 900;
        font-size: 10px;
        margin: 5px 10px;
        margin-right: 30px !important;
    }

    .reqpro .swiper-slide .isexis {
        border-radius: 0 0 15px 15px;
        height: 40px;
    }

        .reqpro .swiper-slide.isexis .price {
            color: #ab0000;
            font-size: medium;
        }

            .reqpro .swiper-slide .isexis .price span {
                color: #808080;
                font-size: 12px;
            }

    .reqpro .box-section {
        height: 300px !important;
    }
}

@media (min-width:766px) and (max-width:991px) {
    .reqpro .swiper {
        width: 220px;
        height: 50px !important;
    }

    .reqpro .swiper-slide a img {
        width: 190px;
        height: 140px;
        padding: 8px 8px 0;
        border-radius: 15px 15px 0 0;
    }

    .reqpro .swiper-slide h2 a {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        width: 220px;
    }

    .reqpro .swiper-slide .blackoffimg {
        width: 100%;
        height: 5%;
        border: hidden
    }

    .reqpro .swiper-slide .blackoffimgpro {
        height: 250px
    }

    .hompro-search a img {
        width: 116% !important;
    }

    .reqpro .swiper-slide a p {
        color: #fff;
        border-radius: 10px;
        padding: 5px;
        background-color: #00629b;
        position: absolute;
        font-weight: 900;
        font-size: 10px;
        margin: 5px 10px;
        margin-right: 30px !important;
    }

    .reqpro .swiper-slide .isexis {
        border-radius: 0 0 15px 15px;
        height: 40px;
    }

        .reqpro .swiper-slide.isexis .price {
            color: #ab0000;
            font-size: medium;
        }

            .reqpro .swiper-slide .isexis .price span {
                color: #808080;
                font-size: 12px;
            }

    .reqpro .box-section {
        height: 300px !important;
    }
}

@media (max-width:766px) {
    .reqpro .swiper {
        width: 220px;
    }

    .reqpro .swiper-slide a img {
        width: 190px;
        height: 140px !important;
        padding: 8px 8px 0;
        border-radius: 15px 15px 0 0;
    }

    .reqpro .swiper-slide h2 a {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        width: 220px;
    }

    .reqpro .swiper-slide .blackoffimg {
        width: 100%;
        height: 5%;
        border: hidden
    }

    .reqpro .swiper-slide .blackoffimgpro {
        height: 25px
    }