.custom-product-slider-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.custom-product-slider-wrapper {
    width: 80%;
    display: flex;
    flex-direction: row;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 40px;
    min-height: 400px;
    position: relative;
}

/* بخش سمت چپ - 30% */
.left-section {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #ffffff;
    width: 30px;
    border-radius: 5px;
}

/* بخش سمت راست - 70% */
.right-section {
    width: 70%;
    padding: 20px;
    position: relative;
}

.product-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-slide.active {
    display: block;
    opacity: 1;
}

.product-content-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* مستطیل عمودی تصویر */
.product-image-box {
    width: 200px;
    min-width: 200px;
    height: 200px;
    background-color: #f0f0f0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* محتوای متنی */
.product-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
}

.product-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.product-price {
    font-size: 28px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 20px;
}

.product-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.product-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* ریسپانسیو */
@media (max-width: 1024px) {
    .custom-product-slider-wrapper {
        width: 90%;
        flex-direction: column;
    }

    .left-section,
    .right-section {
        width: 100%;
    }

    .left-section {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .custom-product-slider-wrapper {
        width: 95%;
        padding: 20px;
    }

    .product-content-wrapper {
        flex-direction: column;
    }

    .product-image-box {
        width: 100%;
        height: 200px;
    }

    .section-title {
        font-size: 22px;
    }
}