/* استایل‌های شیک و حرفه‌ای برای بخش محصولات */
body {
    background-color: #f8f9fa; /* پس‌زمینه روشن و ملایم */
    color: #333;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

/* کارت اصلی هر محصول */
.single-products {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eaeaec;
    margin-bottom: 30px;
    position: relative;
}

/* افکت هاور ملایم و رسمی */
.single-products:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* تنظیمات عکس */
.products-image {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    padding: 10px;
}

.products-image img {
    width: 100%;
    transition: transform 0.4s ease;
}

/* زوم خیلی کم و نامحسوس */
.single-products:hover .products-image img {
    transform: scale(1.03);
}

/* تگ "فروش!" */
.tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c; /* قرمز استاندارد و کلاسیک */
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    z-index: 2;
}

/* دکمه‌های لایک و سبد خرید */
.products-action {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    transition: bottom 0.3s ease;
    z-index: 2;
}

.single-products:hover .products-action {
    bottom: 20px;
}

.products-action li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.products-action li a:hover {
    background: #0056b3; /* آبی شرکتی و رسمی روی هاور */
    color: #fff;
}

/* بخش متن و قیمت */
.products-content {
    padding: 20px 15px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.products-content h3 {
    margin-bottom: 8px;
    font-size: 16px;
}

.products-content h3 a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.products-content h3 a:hover {
    color: #0056b3;
}

/* ستاره‌های امتیاز */
.rating {
    list-style: none;
    padding: 0;
    color: #f39c12;
    margin: 5px 0 10px 0;
    display: flex;
    justify-content: center;
    gap: 2px;
    font-size: 14px;
}

/* قیمت */
.products-content span {
    display: block;
    font-size: 17px;
    font-weight: bold;
    color: #e74c3c;
}