
:root {
    --primary-color: #6C4AB6;
    --secondary-color: #8D72E1;
    --accent-color: #FF9B9B;
    --dark-color: #2D2727;
    --light-color: #F5F5F5;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

.modern-header {
    background: var(--gradient);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.modern-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.store-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px 16px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 14px;
}

.store-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.store-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.store-address {
    font-size: 1rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-modern {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary-modern {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-3px);
}

.btn-follow-modern {
    background: var(--accent-color);
    color: white;
}

.btn-follow-modern:hover {
    background: #ff7a7a;
    color: white;
    transform: translateY(-3px);
}

.btn-followed {
    background: #4CD964 !important;
    color: white !important;
}

.btn-complete-profile {
    background: #FFD166;
    color: #333;
}

.btn-complete-profile:hover {
    background: #FFC145;
    color: #333;
    transform: translateY(-3px);
}

.stats-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px;
    color: white;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stats-card a {
    color: white;
    text-decoration: none;
}

.stats-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stats-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.stats-card li:last-child {
    margin-bottom: 0;
}

.stats-card li span {
    font-weight: 700;
}

.store-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.content-section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
}

.product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.rating-value {
    font-size: 0.9rem;
    color: #6c757d;
}

.product-button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.product-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 74, 182, 0.3);
    color: white;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    margin-bottom: 10px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item:hover {
    background: #f8f9fa;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.phone-icon {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.web-icon {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}

.instagram-icon {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
}

.facebook-icon {
    background: rgba(59, 89, 152, 0.1);
    color: #3B5998;
}

.youtube-icon {
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
}

.tiktok-icon {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.linkedin-icon {
    background: rgba(0, 119, 181, 0.1);
    color: #0077B5;
}

.contact-content {
    flex-grow: 1;
}

.contact-type {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark-color);
}

.contact-value {
    font-size: 0.9rem;
    color: #6c757d;
}

.contact-action {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.video-container {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-tabs.modern-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 30px;
}

.nav-tabs.modern-tabs .nav-link {
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    color: #6c757d;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-tabs.modern-tabs .nav-link:hover {
    color: var(--primary-color);
    background: rgba(108, 74, 182, 0.05);
}

.nav-tabs.modern-tabs .nav-link.active {
    color: var(--primary-color);
    background: transparent;
    border-bottom: 3px solid var(--primary-color);
}

.follow-container {
    position: relative;
    margin: 30px 0;
}

.follow-benefits {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.benefit-badge {
    background: white;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-content {
    flex-grow: 1;
}

.benefit-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 3px;
    color: var(--dark-color);
}

.benefit-description {
    font-size: 0.8rem;
    color: #6c757d;
}

/* استایل‌های جدید برای بخش‌های اضافه شده */
.store-header-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.minimal-stats {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.minimal-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: #e9ecef;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.offers-section {
    margin: 40px 0;
}

.offer-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.offer-content {
    padding: 20px;
}

.offer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.offer-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.offer-code {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px 15px;
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    border: 2px dashed #dee2e6;
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.offer-code:hover {
    background: #e9ecef;
}

.offer-code.copied::after {
    content: 'Copied!';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: normal;
}

.offer-validity {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
}

.offer-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

/* استایل‌های اسلایدر */
.store-slider {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: white;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* استایل‌های بخش همکاری */
.collaboration-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.collaboration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.collaboration-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.collaboration-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.collaboration-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.collaboration-benefits {
    margin-bottom: 25px;
}

.collaboration-benefit {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.collaboration-benefit i {
    color: var(--primary-color);
    margin-right: 10px;
}

.collaboration-cta {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.collaboration-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 74, 182, 0.3);
    color: white;
}

/* استایل‌های بخش امکانات و زبان‌ها */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 74, 182, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.feature-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #6c757d;
}

.languages-section {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.language-badge {
    display: inline-block;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 50px;
    margin: 5px;
    font-size: 0.9rem;
    border: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .store-title {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-card {
        margin-top: 20px;
    }

    .follow-benefits {
        flex-direction: column;
    }

    .minimal-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .store-header-image {
        height: 200px;
    }

    .store-slider {
        height: 250px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .minimal-stats {
        background: white;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 20px;
    }

    .minimal-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    .stat-item {
        text-align: center;
        padding: 15px;
        border-radius: 12px;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        transition: all 0.3s ease;
        border: 1px solid rgba(108, 74, 182, 0.1);
    }

    .stat-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(108, 74, 182, 0.1);
        background: linear-gradient(135deg, #e9ecef, #dee2e6);
    }

    .stat-value {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 5px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .stat-label {
        font-size: 0.85rem;
        color: #6c757d;
        font-weight: 500;
    }

    @media (max-width: 768px) {
        .minimal-stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .stat-value {
            font-size: 1.5rem;
        }

        .stat-item {
            padding: 12px;
        }

        .map-container {
            background: #fff;
            border-radius: 12px;
            /* یا هر مقدار مشابه کارت‌های دیگه */
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            padding: 16px;
            /* همون padding مثل بقیه بخش‌ها */
            margin-top: 1rem;
            /* فاصله از بالا */
        }

        .map-container iframe {
            border-radius: 8px;
            width: 100%;
            height: 250px;
            /* یا هر ارتفاع دلخواه */
        }


    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.product-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-badge-container {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-top-right {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.badge-bottom-left {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgb(0 110 153 / 53%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: bold;   /* متن بولد */
    transition: background 0.2s ease, color 0.2s ease; /* انیمیشن تغییر رنگ */
}

.badge-bottom-left a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.badge-bottom-left:active,
.badge-bottom-left a:active {
    background: rgba(0, 110, 153, 0.7); /* کمی پررنگ‌تر در کلیک */
}


.product-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.discount-badge-modern {
    background: linear-gradient(45deg, #ff0066, #ffc107);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* بج‌های دلخواه برای محصولات */
.badge-new {
    background: linear-gradient(45deg, #FFD93D, #FF9B3D);
    color: black;
    border-radius: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.badge-popular {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    border-radius: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.badge-limited {
    background: linear-gradient(45deg, #FF6B6B, #FF4757);
    color: white;
    border-radius: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.badge-exclusive {
    background: linear-gradient(45deg, #6A82FB, #FC5C7D);
    color: white;
    border-radius: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.badge-trending {
    background: linear-gradient(45deg, #FF9A3D, #FF6B3D);
    color: white;
    border-radius: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}


.product-image-modern {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-modern:hover .product-image-modern img {
    transform: scale(1.1);
}

.product-views {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgb(15 31 57 / 51%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-content-modern {
    padding: 20px;
}

.product-title-modern {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2D3748;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description-modern {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-section {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #F7FAFC, #EDF2F7);
    border-radius: 12px;
}

.current-price-modern {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2D3748;
}

.original-price-modern {
    font-size: 1rem;
    color: #A0AEC0;
    text-decoration: line-through;
    margin-left: 8px;
}

.product-actions-modern {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.action-btn {
    flex: 1;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* افکت hover */
.action-btn:hover {
    transform: translateY(-2px); 
    box-shadow: 0 6px 16px rgba(245, 244, 244, 0.986);
    color: inherit; 
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 244, 244, 0.986);
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.btn-buy {
    background: linear-gradient(45deg, #4299E1, #3182CE);
}

.btn-reserve {
    background: linear-gradient(45deg, #9F7AEA, #805AD5);
}
.btn-call {
    background: linear-gradient(45deg, #F56565, #C53030); 
}

.btn-contact {
    background: linear-gradient(45deg, #718096, #4A5568); /
}



.product-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 12px 0;
    border-top: 1px solid #EDF2F7;
}

.product-location,
.product-category {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.93rem;
    color: #718096;             /* رنگ متن */
    border: 1px solid #E2E8F0; /* رنگ خط دور */
    border-radius: 12px;
    padding: 4px 8px;
}

.product-location a,
.product-category a {
    color: #718096;             /* لینک هم همین رنگ */
    text-decoration: none;       /* خط زیر لینک حذف شود */
}

.product-location a:hover,
.product-category a:hover {
    color: #718096;             /* روی هاور هم رنگ ثابت بمونه */
}



/* آیکون‌های سفارشی بدون کلاس bi */
.custom-icon {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.icon-whatsapp {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.446h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.icon-cart {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
}

.icon-calendar {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19a2 2 0 002 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z'/%3E%3C/svg%3E");
}

.icon-heart {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ff0000' stroke-width='2' d='M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3z'/%3E%3C/svg%3E");
}


.icon-heart-fill {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23E02424' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}


.icon-geo-alt {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23718096' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.icon-tag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23718096' d='M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z'/%3E%3C/svg%3E");
}

.icon-eye {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E");
}

.icon-phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.05-.24c1.12.37 2.33.57 3.54.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.29 21 3 13.71 3 5c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.21.2 2.42.57 3.54.09.35.03.73-.24 1.05l-2.21 2.2z'/%3E%3C/svg%3E");
}

.icon-mail {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
.product-sales {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A5568;
    background: #EDF2F7;
    padding: 6px 12px;
    border-radius: 10px;
    white-space: nowrap;
}

/* استایل‌های مدرن برای کارت‌های آفر */
.offer-card-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 0;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.offer-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f, #4d96ff);
    background-size: 300% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.offer-card-modern.gradient-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.offer-card-modern.gradient-vip {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.offer-card-modern.gradient-shipping {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.offer-card-modern.gradient-bonus {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.offer-card-modern.gradient-expired {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    opacity: 0.8;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 0;
    margin-bottom: 15px;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.offer-badge.expired {
    background: rgba(255, 255, 255, 0.1);
}

.offer-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.offer-content-modern {
    padding: 0 20px 20px;
    position: relative;
    z-index: 2;
}

.offer-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
}

.offer-description-modern {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 4.5rem;
}

.offer-code-modern {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-code-modern:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.offer-code-modern.expired {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: default;
}

.offer-code-modern.expired:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
}

.code-text {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.offer-details-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.detail-item.expired {
    opacity: 0.7;
}

.detail-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.offer-button-modern {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.offer-button-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.offer-button-modern.expired {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.offer-button-modern.expired:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
}

/* استایل برای بخش قفل شده */
.offer-locked {
    text-align: center;
    padding: 20px 0;
}

.offer-locked i {
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.offer-locked p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-login-prompt,
.btn-follow-prompt {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-login-prompt:hover,
.btn-follow-prompt:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* مودال QR کد */
.qr-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.qr-modal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: none;
}

.qr-code-container {
    padding: 30px;
    text-align: center;
}

.qr-code-display {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #333;
    border: 2px dashed #dee2e6;
}

.qr-instruction {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.qr-instruction i {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .offer-card-modern {
        margin-bottom: 20px;
    }

    .offer-title-modern {
        font-size: 1.1rem;
        min-height: auto;
    }

    .offer-description-modern {
        min-height: auto;
    }

    .code-text {
        font-size: 1rem;
    }
}

/* مطمئن شوید هیچ عنصری pointer-events: none ندارد */
.modern-header * {
    pointer-events: auto;
}

.modern-header::before {
    pointer-events: none; /* برای المان پس‌زمینه */
}
/* اضافه کردن این استایل‌ها */
.store-title {
    color: white !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.store-description {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.store-address {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* برای مطمئن شدن از اولویت */
.modern-header h1,
.modern-header p,
.modern-header div {
    color: white !important;
}

/* اضافه کردن این کد به CSS موجود */
@media (max-width: 768px) {
    .modern-header .row {
        gap: 30px;
    }
    
    .store-slider {
        margin-top: 20px;
        position: relative;
        z-index: 5;
    }
    
    /* اطمینان از فاصله مناسب */
    .col-lg-6:first-child {
        margin-bottom: 25px;
    }
    
    /* بهبود استایل اسلایدر در موبایل */
    .store-slider {
        height: 250px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

/* برای صفحه‌های خیلی کوچک */
@media (max-width: 576px) {
    .store-slider {
        margin-top: 15px;
        height: 200px;
    }
    
    .modern-header .row {
        gap: 20px;
    }
}

/* اضافه کردن این کد به CSS موجود */
@media (max-width: 768px) {
    .action-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .action-buttons .btn-modern {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        padding: 10px 8px;
        white-space: nowrap;
    }
    
    .action-buttons .btn-modern i {
        font-size: 0.9rem;
        margin-right: 5px;
    }
    
    /* کوتاه کردن متن در موبایل */
    #follow-btn::after {
        content: "Store";
        display: none;
    }
    
    #follow-btn {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .action-buttons {
        gap: 8px;
    }
    
    .action-buttons .btn-modern {
        font-size: 0.8rem;
        padding: 8px 6px;
    }
    
    .action-buttons .btn-modern i {
        font-size: 0.8rem;
        margin-right: 3px;
    }
    
    /* کوتاه‌تر کردن متن */
    .btn-modern .bi-telephone-outbound + span,
    .btn-modern .bi-heart-fill + span,
    .btn-modern .bi-check-circle-fill + span {
        display: none;
    }
    
    .btn-modern::after {
        content: "";
    }
    
    #follow-btn::after {
        content: "Follow";
    }
    
    .btn-followed::after {
        content: "Following";
    }
}


.wishlist-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15); /* شیشه‌ای‌تر */
    backdrop-filter: blur(6px); /* افکت شیشه‌ای */
    -webkit-backdrop-filter: blur(6px); /* برای Safari */
    border-radius: 12px; /* یا 0px برای مربع */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
    border: none;
    flex-shrink: 0;
}

.wishlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}

.wishlist-btn.active {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53); /* قرمز بعد انتخاب */
    backdrop-filter: none; /* دیگه شیشه‌ای نباشه */
    -webkit-backdrop-filter: none;
}

/* استایل‌های مدرن برای بخش ویدئوها */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.video-card-modern {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.video-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: #000;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail-container:hover .video-play-overlay {
    opacity: 1;
}

.video-play-overlay i {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-content-modern {
    padding: 1.5rem;
}

.video-title-modern {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-description-modern {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.video-meta-modern {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.video-views, .video-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.85rem;
}

.video-views i, .video-date i {
    color: #a0aec0;
}

/* استایل بخش اطلاعات کسب‌وکار */
.business-info-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f7fafc;
}

.business-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.business-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-details {
    flex: 1;
}

.business-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.business-category, .business-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 0.1rem;
}

.business-category i, .business-location i {
    font-size: 0.7rem;
}

.business-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-follow-mini, .btn-call-mini {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-follow-mini {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.btn-follow-mini.btn-followed {
    background: linear-gradient(45deg, #48bb78, #38a169);
}

.btn-call-mini {
    background: linear-gradient(45deg, #48bb78, #38a169);
    color: white;
    text-decoration: none;
}

.btn-follow-mini:hover, .btn-call-mini:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* رسپانسیو */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-thumbnail-container {
        height: 180px;
    }
    
    .video-content-modern {
        padding: 1rem;
    }
    
    .business-info-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .business-actions {
        align-self: stretch;
        justify-content: space-between;
    }
    
    .btn-follow-mini, .btn-call-mini {
        flex: 1;
        width: auto;
    }
}

.wishlist-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc !important;
}

.wishlist-btn.disabled .custom-icon {
    color: #999 !important;
}

.currency-sign {
    font-size: 0.55em;     
    vertical-align: super;
    margin-right: 2px;    
    color: #2d3748cf;
}