﻿/* پس زمینه اصلی صفحه */
.product-page {
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    padding: 40px;
    border-radius: 18px;
    color: #fff;
}

/* تصویر محصول با افکت بزرگ‌نمایی */
.product-image-box {
    overflow: hidden;
    border-radius: 16px;
}
.product-main-img {
    width: 100%;
    transition: 0.4s;
    border-radius: 16px;
}
.product-main-img:hover {
    transform: scale(1.06);
}

/* عنوان و قیمت */
.product-title { color: #fff; }
.product-price span {
    font-size: 26px;
    font-weight: bold;
    color: #00ff9d;
}

/* اینپوت آیدی */
.game-id-input {
    border: 2px solid #0dcaf0;
    font-weight: bold;
}

/* ویژگی‌ها */
.features-box .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    background: rgba(255,255,255,0.08);
    padding: 10px 15px;
    border-radius: 12px;
    transition: 0.3s;
}
.features-box .feature-item i {
    font-size: 22px;
    margin-left: 10px;
    color: #0dcaf0;
}
.features-box .feature-item:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.15);
}

/* توضیحات */
.product-description {
    color: #eee;
}

/* نظرات */
.comment-box {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    color: #fff;
}

/* محصولات مرتبط */
.related-box {
    display: block;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s;
    color: #fff;
    height:350px;
    
}
.related-box:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}
.related-img {
    width: 100%;
    height:220px;
    border-radius: 12px;
    margin-bottom: 10px;
}
.related-title {
    font-size: 14px;
    color: #fff;
}
.related-price {
    color: #00ff9d;
    font-weight: bold;
}
