/* تنظیمات کلی برای جزییات محصول */
.product-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 100px 0;
    padding: 20px;
    align-items: center;
}

/* بخش تصویر محصول */
.product-image {
    width: 50%;
    padding: 20px;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-right: 20px; /* کاهش فاصله برای دستگاه‌های کوچک‌تر */
}

/* بخش اطلاعات محصول */
.product-info {
    width: 50%;
    padding: 20px;
}

.product-info h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.product-price {
    font-size: 18px;
    color: #292727;
    margin-bottom: 10px;
    text-decoration: line-through;
}

.product-off {
    font-size: 20px;
    color: rgba(255, 0, 0, 0.98);
    margin-bottom: 10px;
}

.description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.stock {
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #e23625;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #c12f21; /* تغییر رنگ در حالت هاور */
}

/* مدیا کوئری‌ها برای دستگاه‌های کوچک‌تر */
@media only screen and (max-width: 768px) {
    .product-image {
        width: 100%; /* تصویر تمام عرض صفحه را بگیرد */
        margin-bottom: 20px;


    }
    .product-info {
        width: 100%; /* اطلاعات محصول تمام عرض صفحه را بگیرد */
        text-align: center; /* متن وسط‌چین شود */
    }

    .product-info h1 {
        font-size: 24px; /* کاهش اندازه متن تیتر */
    }

    .product-price,
    .product-off {
        font-size: 16px; /* کوچک‌تر کردن قیمت‌ها برای دستگاه‌های کوچک‌تر */
    }

    .description,
    .stock {
        text-align: center; /* توضیحات و موجودی وسط‌چین شود */
    }

    .btn-primary {
        width: 100%; /* دکمه تمام عرض صفحه را بگیرد */
    }
}

@media only screen and (max-width: 480px) {
    .product-info h1 {
        font-size: 20px; /* کوچک‌تر کردن تیتر برای گوشی‌های کوچک */
    }
    .product-price,
    .product-off {
        font-size: 14px;
    }

    .description {
        line-height: 1.4; /* کاهش فاصله خطوط برای نمایش بهتر */
    }
}