body {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 80px;
   min-height: 100vh;

   
}

/* حذف خط زیر برای تمام لینک‌های این صفحه */
.mvp-store-hero-wrapper a,
.mvp-store-container a,
.product-card a,
.contact-card a,
.social-icon-btn,
.follow-btn-modern {
    text-decoration: none !important;
}

/* ========== هدر مدرن و پویا ========== */
.mvp-store-hero-wrapper {
    position: relative;
    border-radius: 32px 32px 0px 0px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.9s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content-container {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
    color: white;
}

/* بخش بالا */


/* بخش بالا */
.hero-top-section {
    display: flex;
    align-items: center; /* تراز عمودی در مرکز */
    justify-content: center; /* تراز افقی در مرکز (اگر می‌خواهید وسط صفحه باشد) */
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* برای نمایش بهتر در موبایل */
}

.store-logo-wrapper {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* استفاده از انیمیشن فنری و نرم‌تر */
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.logo-ring {
    position: absolute;
    /* ابعاد حلقه را دقیقاً بزرگتر از لوگو دادیم تا کاملا سنتر شود */
    width: 184px; 
    height: 184px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); /* هاله نور ملایم دور حلقه */
    animation: pulse 2.5s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.3;
    }
}

.store-logo-modern {
    position: relative;
    z-index: 1;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fcffff;
    background: #ffffff;
    /* سایه چند لایه برای عمق دادن به لوگو */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 
                0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.store-logo-modern:hover {
    /* افکت شناور شدن جذاب به جای چرخش ساده */
    transform: scale(1.06) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18), 
                0 5px 15px rgba(0, 0, 0, 0.08);
}

.store-logo-placeholder {
    position: relative;
    z-index: 1;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    /* پس‌زمینه شیشه‌ای (گرادیانت ملایم) */
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.store-logo-placeholder:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.2) 100%);
}






.store-main-info {
    flex: 1;
    animation: slideInRight 0.6s ease-out 0.3s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.store-name-badge-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.store-name-hero {
    font-size: 42px;
    font-weight: 900;
    margin: 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.2;
}

.verified-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.verified-icon-wrapper i {
    color: #fde047;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}



.store-description-hero {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 25px 0;
    opacity: 0.95;
    max-width: 700px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.store-stats-row {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
}

.follow-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    margin-top: 0px;
    color: #1f2937;
    padding-top: 0px;
    padding-right: 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.follow-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.follow-btn-modern.following {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.follow-btn-modern .btn-icon {
    font-size: 18px;
}

/* بخش پایین */
.hero-bottom-section {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    animation: fadeIn 0.6s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    opacity: 0.85;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value,
.contact-text a.contact-value {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: white;
    text-decoration: none;
}
.contact-text a.contact-value:hover {
    text-decoration: underline;
}

/* کارت موقعیت مکانی (ساده شده) */
.location-card .location-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.location-card .location-preview i {
    font-size: 0.9rem;
}

/* ساعت کاری */
.hours-preview {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hours-card {
    cursor: pointer;
}

/* مودال عمومی */
.mvp-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    overflow-y: auto !important; 
    overscroll-behavior: contain; /* این کد مانع از اسکرول شدن پس‌زمینه می‌شود */
    -webkit-overflow-scrolling: touch;
}


.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    color: #1f2937;
    direction: rtl;
    animation: slideDown 0.3s ease;
}
.modal-content h3 {
    margin-top: 0;
    font-size: 1.6rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}
.modal-close {
    float: left;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}
.modal-close:hover {
    color: #000;
}
.modal-hours-list {
    max-height: 400px;
    overflow-y: auto;
}
.modal-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1rem;
}
.modal-hours-row .day-name {
    font-weight: 700;
    color: #4b5563;
}
.modal-hours-row .day-hours {
    font-weight: 500;
    color: #1f2937;
}

/* مودال موقعیت مکانی و نقشه */
    /* مودال موقعیت در موبایل */
    .modal-location {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh !important; /* محدود کردن دقیق ارتفاع */
        overflow-y: auto !important; /* اجبار به اسکرول شدن */
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        pointer-events: auto; /* اطمینان از دریافت تاچ */
    }


.modal-location .modal-location-details {
    overflow-y: visible;
}
.modal-location-details {
    background: #f8fafc;
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 10px;
}
.location-detail-row {
    padding: 6px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
}
.location-detail-row:last-child {
    border-bottom: none;
}
.location-detail-row strong {
    color: #1e293b;
    display: inline-block;
    width: 90px;
}
.modal-map-actions {
    text-align: center;
    margin-top: 15px;
}
.map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4f46e5;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}
.map-button:hover {
    background: #4338ca;
    color: white;
}
.map-button i {
    font-size: 1rem;
}

/* شبکه‌های اجتماعی */
.social-links-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.social-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}
.social-icons-row {
    display: flex;
    gap: 12px;
}
.social-icon-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icon-btn:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* بخش فیلترها - دسکتاپ */
.mvp-store-filters {
    background: rgba(60, 132, 240, 0.15); /* پس‌زمینه نیمه شفاف */
    
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;

    border: 1px solid rgba(255, 255, 255, 0.3); /* خط دور ظریف */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}
.filter-search {
    flex: 2;
    display: flex;
    gap: 8px;
}
.filter-search input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}
.filter-search button {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.filter-search button:hover {
    background: #4338ca;
}
.filter-category-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}
.filter-category-wrapper select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    min-width: 180px;
}
.filter-reset {
    background: #f59a46;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #1e293b;
    font-size: 1rem;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    height: 45px;
}
.filter-reset:hover {
    background: #cbd5e1;
}

/* محصولات */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}
.product-card:hover {
    transform: translateY(-4px);
}
.product-image {
    position: relative;
}
.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.sale-badge, .outofstock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e53e3e;
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
}
.outofstock-badge {
    background: #718096;
}
.product-info {
    padding: 15px;
}
.product-info h3 {
    font-size: 1.1rem;
    margin: 0 0 8px;
}
.product-rating {
    font-size: 0.85rem;
    color: #fbbf24;
    margin-bottom: 8px;
}
.product-price del {
    color: #a0aec0;
    margin-left: 8px;
}
.product-price ins {
    color: #e53e3e;
    font-weight: bold;
    text-decoration: none;
}
.product-short-desc {
    font-size: 0.85rem;
    color: #4a5568;
    margin: 8px 0;
}
.mvp-add-to-cart-btn {
    background: #4f46e5;
    color: white;
    border: none;
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}
.mvp-add-to-cart-btn:hover:not(:disabled) {
    background: #4338ca;
}
.mvp-add-to-cart-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}
.mvp-pagination {
    text-align: center;
    margin-top: 30px;
}
.mvp-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    background: #f1f5f9;
    border-radius: 6px;
    text-decoration: none;
    color: #1e293b;
}
.mvp-pagination .current {
    background: #4f46e5;
    color: white;
}
.mvp-no-products {
    text-align: center;
    padding: 40px;
    background: #f8fafc;
    border-radius: 12px;
}

/* سبد خرید شناور */
.mvp-floating-cart {
    position: fixed;
    bottom: 80px;
    left: 12px;
    background: #198991;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: all 0.2s ease;
}
.mvp-floating-cart:hover {
    transform: scale(1.05);
    background: #4338ca;
}
.cart-icon {
    font-size: 24px;
}
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc2626;
    color: white;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Toast کپی */
.mvp-toast {
    visibility: hidden;
    min-width: 200px;
    background-color: #1f2937;
    color: #fff;
    text-align: center;
    border-radius: 40px;
    padding: 10px 20px;
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    white-space: nowrap;
}
.mvp-toast.show {
    visibility: visible;
    opacity: 1;
}

/* ========== ریسپانسیو برای موبایل ========== */
/* ========== ریسپانسیو برای موبایل ========== */
@media (max-width: 780px) {
    /* ----- اصلاح body ----- */
    body {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .mvp-store-container {
         padding: 75px 10px 0 10px !important;
    }
    
    /* ----- هدر فروشگاه ----- */
    .mvp-store-hero-wrapper {
        border-radius: 16px 16px 16px 16px;  /* ← گردی همه گوشه‌ها */
        margin-bottom: 20px;
       margin-top: 15px;
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
    }
    
    .hero-content-container {
        padding: 25px 15px 20px;  /* ← افزایش padding-top به 25px */
    }
    
    .hero-top-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .store-logo-modern {
        width: 110px;
        height: 110px;
    }
    .logo-ring {
        width: 130px;
        height: 130px;
    }
    .store-logo-placeholder {
        width: 110px;
        height: 110px;
        font-size: 40px;
    }
    
    .store-name-hero {
        font-size: 22px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .verified-icon-wrapper {
        width: 28px;
        height: 28px;
    }
    .verified-icon-wrapper i {
        font-size: 14px;
    }
    
    .store-name-badge-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .followers-badge-modern {
        font-size: 12px;
    }
    .follow-action-inline {
        margin: 0;
    }
    .follow-btn-modern {
        height: 34px;
        font-size: 12px;
        padding: 0 14px;
        margin-top: 5px;
    }
    
    .store-description-hero {
        font-size: 13px;
        text-align: center;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .store-stats-row {
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    .stat-item {
        padding: 6px 12px;
        gap: 6px;
        border-radius: 12px;
    }
    .stat-value {
        font-size: 15px;
    }
    .stat-label {
        font-size: 10px;
    }
    .stat-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    /* ----- بخش پایین هدر ----- */
    .hero-bottom-section {
        padding-top: 15px;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .contact-card {
        padding: 12px 14px;
        gap: 10px;
        border-radius: 12px;
    }
    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .contact-value {
        font-size: 13px;
    }
    
    .social-links-modern {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    .social-icon-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    /* ===== فیلترها ===== */
    .mvp-store-filters {
        padding: 12px 10px;
        margin-bottom: 20px;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .filter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }
    
    .filter-search {
        width: 100%;
        flex-direction: row;
        gap: 6px;
    }
    .filter-search input {
        flex: 1;
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
        border-radius: 8px;
    }
    .filter-search button {
        padding: 0 14px;
        font-size: 0.85rem;
        white-space: nowrap;
        border-radius: 8px;
        height: 40px;
    }
    
    .filter-category-wrapper {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 6px;
        align-items: center;
        flex-wrap: nowrap;
    }
    .filter-category-wrapper select {
        flex: 1;
        padding: 8px 10px;
        font-size: 0.8rem;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 8px;
        height: 40px;
        -webkit-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: left 8px center;
        background-size: 16px;
        padding-right: 8px;
    }
    
    .filter-reset {
        padding: 6px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
        height: 40px;
        flex-shrink: 0;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    /* ===== دکمه فیلتر جایگزین برای موبایل ===== */
    .filter-mobile-toggle {
        display: none;  /* مخفی در دسکتاپ */
    }
    
    /* ===== محصولات ===== */
    .products-grid {
        grid-template-columns: 1fr 1fr;  /* دو ستونه در موبایل */
        gap: 12px;
    }
    .product-image img {
        height: 150px;
    }
    .product-info {
        padding: 10px;
    }
    .product-info h3 {
        font-size: 0.9rem;
    }
    .product-short-desc {
        font-size: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .mvp-add-to-cart-btn {
        font-size: 0.8rem;
        padding: 6px;
    }
    
    /* ===== سبد خرید شناور ===== */
    .mvp-floating-cart {
        bottom: 60px;
        left: 12px;
        width: 48px;
        height: 48px;
    }
    .cart-icon {
        font-size: 20px;
    }
    .cart-count {
        font-size: 10px;
        min-width: 16px;
        height: 16px;
    }
}

/* ===== موبایل های خیلی کوچک ===== */
@media (max-width: 480px) {
    .mvp-store-container {
        padding: 0 6px;
    }
    .hero-content-container {
        padding: 15px 10px;
    }
    .store-logo-modern {
        width: 90px;
        height: 90px;
    }
    .logo-ring {
        width: 110px;
        height: 110px;
    }
    .store-name-hero {
        font-size: 18px;
    }
    .store-description-hero {
        font-size: 12px;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .filter-category-wrapper {
        flex-wrap: wrap;
    }
    .filter-category-wrapper select {
        min-width: 100%;
    }
    .filter-reset {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 780px) {
    /* خارج کردن هدر این صفحه از زیر منوی ثابت موبایل */
    body .mvp-store-hero-wrapper {
        margin-top: 10px !important; /* این مقدار را بر اساس ارتفاع منوی خود تنظیم کنید */
        position: relative;
        z-index: 1;
    }

}
