.cnp-module-container {
    margin: 40px 0;
    background: #F9F9F9;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(55,40,30,0.15);
}

/* العنوان */
.cnp-section-title {
	font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #3b2a21;
}

/* Swiper */
.cnp-swiper {
    width: 100%;
}
.cnp-swiper .swiper-slide {
    width: 260px !important;
    height: auto;
}

/* أسهم السلايدر */
.cnp-swiper .swiper-button-next,
.cnp-swiper .swiper-button-prev {
    color: #d25e16 !important;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.cnp-swiper .swiper-button-next:after,
.cnp-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* كارد المنتج */
.cnp-product-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
    position: relative;
}
.cnp-product-card:hover {
    transform: translateY(-5px);
}

/* صورة المنتج */
.cnp-product-image {
    margin-bottom: 15px;
    position: relative;
}
.cnp-product-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

/* البادج Neu / جديد */
.cnp-product-new-badge {
    position: absolute;
    top: 10px;
    background: #d25e16;
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}
.cnp-product-new-badge.badge-ltr { left: 10px; }
.cnp-product-new-badge.badge-rtl { right: 10px; }

/* المعلومات (اسم + فئة + سعر) */
.cnp-product-info.ltr { text-align: left; }
.cnp-product-info.rtl { text-align: right; }

.cnp-product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px; /* قريب من الفئة */
    color: #3b2a21;
    height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cnp-product-category {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* السعر مع ab */
.cnp-price-wrap {
    display: flex;
    gap: 8px;
    align-items: baseline;
}
.cnp-price-label {
    font-size: 12px;
    color: #555;
}
.cnp-product-price {
    font-size: 20px;
    font-weight: 700;
    color: #d25e16;
}

/* الأزرار */
.cnp-product-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.cnp-icon-btn {
    background: #d25e16;
    border: none;
    border-radius: 50%;
    padding: 10px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.cnp-icon-btn:hover {
    background: #000;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cnp-swiper .swiper-slide {
        width: 220px !important;
    }
}
@media (max-width: 768px) {
    .cnp-swiper .swiper-slide {
        width: 200px !important;
    }
}
@media (max-width: 576px) {
    .cnp-swiper .swiper-slide {
        width: 100% !important;
    }
}
