﻿

/* کانتینر */
.product-wrapper {
    max-width: 90%;
    margin: 40px auto;
    padding: 0 15px;
    direction:rtl
}

/* عکس بالا */
.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* عنوان */
.title {
    margin: 25px 0;
    color: #012b1d;
    font-size: 28px;
}

/* بخش محتوا */
.content-area {
    display: flex;
    gap: 30px;
}

/* توضیحات */
.description {
    flex: 2;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    line-height: 2;
    color: #444;
}

/* سایدبار */
.sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* باکس‌ها */
.box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border-right: 4px solid #003560;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .box h3 {
        margin-bottom: 15px;
        color: #003560;
    }

.item {
    margin-bottom: 10px;
    color: #555;
}

/* تماس */
.contact p {
    margin: 8px 0;
}

/* ریسپانسیو */
@media(max-width:768px) {
    .content-area {
        flex-direction: column;
    }

    .hero-image img {
        height: 250px;
    }
}
.price-box {
    display: inline-block;
    background: #012b1d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 18px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,53,96,0.3);
}
.amd p, span {
    font-family: unset !important;
}