/* تعریف فونت */
@font-face {
    font-family: 'IranianSans';
    src: url('/main/fonts/IranianSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* تنظیمات کلی */
body {
    font-family: 'IranianSans', Arial, sans-serif;
    direction: rtl;
    text-align: right;
    background-color: #f5f5f5;
    margin: 0;
}

/* کانتینر اصلی */
.chami-product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1rem 2rem; /* فاصله از هدر */
}

/* چیدمان محتوا */
.chami-product-content {
    display: block;
    overflow: hidden;
}

/* بخش تصویر محصول */
.chami-product-image-section {
    width: 50%;
    float: left;
    padding-right: 1.5rem;
}

.chami-product-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain; /* نمایش کامل تصویر بدون برش */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* گالری تصاویر کوچک */
.chami-product-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.chami-product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: contain; /* نمایش کامل تصاویر کوچک بدون برش */
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.chami-product-thumbnail.active,
.chami-product-thumbnail:hover {
    border-color: #292b76;
}

/* بخش اطلاعات محصول */
.chami-product-details {
    width: 50%;
    float: right;
    padding-left: 1.5rem;
}

/* عنوان محصول */
.chami-product-title {
    font-size: 1.8rem;
    color: #292b76;
    margin-bottom: 1rem;
}

/* قیمت محصول */
.chami-product-price {
    font-size: 1.5rem;
    color: #292b76;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* دسته‌بندی */
.chami-product-category {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

/* گزینه‌های محصول */
.chami-product-options {
    margin-bottom: 1.5rem;
}

.chami-option-group {
    margin-bottom: 1rem;
}

.chami-option-group label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.chami-option-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'IranianSans', Arial, sans-serif;
    font-size: 1rem;
    background-color: #fff;
    cursor: pointer;
}

/* دکمه افزودن به سبد خرید */
.chami-product-cta {
    padding: 0.75rem;
    background-color: #292b76;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'IranianSans', Arial, sans-serif;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 100%;
}

.chami-product-cta i {
    margin-left: 0.5rem;
}

.chami-product-cta:hover {
    background-color: #3f4194;
}

/* توضیحات محصول */
.chami-product-description {
    margin-bottom: 2rem;
}

.chami-product-description h3 {
    font-size: 1.5rem;
    color: #292b76;
    margin-bottom: 1rem;
}

.chami-product-description p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* مشخصات محصول */
.chami-product-specs {
    margin-bottom: 2rem;
}

.chami-product-specs h3 {
    font-size: 1.5rem;
    color: #292b76;
    margin-bottom: 1rem;
}

.chami-product-specs ul {
    list-style: none;
    padding: 0;
}

.chami-product-specs li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

/* نظرات کاربران */
.chami-product-reviews {
    margin-bottom: 2rem;
}

.chami-product-reviews h3 {
    font-size: 1.5rem;
    color: #292b76;
    margin-bottom: 1rem;
}

.chami-product-reviews p {
    font-size: 1rem;
    color: #555;
}

/* پیام خطا */
.chami-error-message {
    color: #dc2626;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* طراحی ریسپانسیو */
@media (max-width: 767px) {
    .chami-product-image-section, .chami-product-details {
        width: 100%;
        float: none;
        padding-right: 0;
        padding-left: 0;
    }
    .chami-product-image-section {
        margin-bottom: 1.5rem;
    }
    .chami-product-thumbnails {
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .chami-product-image-section, .chami-product-details {
        width: 50%;
    }
}

/* پاکسازی float */
.chami-product-content::after {
    content: "";
    display: table;
    clear: both;
}

/* انیمیشن برای سبد خرید */
.cart-animated {
    animation: cartShake 0.5s ease;
}

@keyframes cartShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}