@import url('https://cdn.jsdelivr.net/npm/vazirmatn@33.003/Vazirmatn-font-face.css');

body.dark-bg {
    background-color: #121212;
    color: #f0f0f0;
    font-family: 'Vazirmatn', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* هدر */
header {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
header h1 {
    font-weight: 600;
    font-size: 1.4rem;
    margin: 0;
}

/* کاتالوگ محصولات */
.catalog {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* کارت محصول */
.product-card {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    width: 90%;
    max-width: 350px;
    margin-bottom: 20px;
    transition: transform .3s, box-shadow .3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

/* ✅ عکس محصول داخل کادر مربعی */
.product-card img {
    width: 100%;
    aspect-ratio: 1 / 1; /* کادر مربعی */
    object-fit: contain; /* عکس کامل نشون داده میشه، بدون بریدگی */
    background-color: #181818; /* پس‌زمینه تیره برای پر کردن فضاهای خالی */
    padding: 6px;
    display: block;
    border-bottom: 1px solid #2a2a2a;
}

/* عنوان محصول */
.product-card h3 {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px;
    color: #fff;
    letter-spacing: .5px;
    margin: 0;
}

/* برای دسکتاپ هم حالت موبایلی حفظ شود */
@media (min-width: 768px) {
    .catalog {
        flex-direction: column;
        align-items: center;
    }
    .product-card {
        width: 70%;
        max-width: 400px;
    }
}
