/* Add custom CSS styles below */ 
/* -- 1. المتغيرات والألوان -- */
:root {
    --cupcake-primary: #ab1f4a;
    --cupcake-soft: #ab1f4a08;
    --text-dark: #333;
    --text-gray: #777;
    --border-color: #eee;
}

/* -- 2. حاوية السيكشن (تم تحديث الخلفية هنا) -- */
.transformation-section {
    padding: 70px 0; /* زيادة الحشوة قليلاً لجمالية الخلفية */
    margin: 40px 0;
    overflow: hidden;
    
    /* 🔥 الخلفية المتدرجة الجديدة 🔥 */
    /* تبدأ بلون المتجر بشفافية 4% وتنتهي بالأبيض */
    background: linear-gradient(180deg, rgba(171, 31, 74, 0.04) 0%, rgba(255, 255, 255, 1) 100%);
    border-top: 1px solid rgba(171, 31, 74, 0.05); /* حد علوي خفيف جداً */
}

.trans-header {
    text-align: center;
    margin-bottom: 40px;
}

.trans-title {
    color: var(--cupcake-primary);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* -- 3. تنسيق السوايب -- */
.swiper-container-custom {
    padding: 20px 15px 50px 15px !important;
    max-width: 1200px;
    margin: 0 auto;
}

/* -- 4. الكارت الموحد -- */
.review-card-unified {
    background: #ffffff; /* لون الكارت أبيض ليبرز فوق الخلفية المتدرجة */
    border: 1px solid #ffffff; /* حدود بيضاء في البداية */
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    
    /* ظل خفيف لإبراز الكارت عن الخلفية */
    box-shadow: 0 10px 25px rgba(171, 31, 74, 0.03); 
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card-unified:hover {
    transform: translateY(-8px);
    border-color: var(--cupcake-primary);
    /* ظل أقوى عند التحويم */
    box-shadow: 0 20px 40px rgba(171, 31, 74, 0.08);
}

/* الجزء العلوي: أيقونة + اسم + تقييم */
.card-top-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.profile-icon-circle {
    width: 60px;
    height: 60px;
    background: #fff0f5; /* خلفية أيقونة فاتحة */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid #fceef2;
}

.profile-icon-circle svg {
    width: 32px;
    height: 32px;
    fill: var(--cupcake-primary);
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.reviewer-stars {
    color: #FFD700;
    font-size: 16px;
    letter-spacing: 2px;
}

/* فاصل */
.card-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #eee, transparent);
    width: 80%;
    margin: 0 auto 25px auto;
}

/* -- 5. محتوى التجربة (قبل وبعد) -- */
.experience-container {
    background: #fafafa;
    border-radius: 16px;
    overflow: hidden;
    flex-grow: 1;
    border: 1px solid #f5f5f5;
}

/* قبل */
.exp-box.before {
    padding: 15px 20px;
    background: #fcfcfc;
    border-bottom: 1px dashed #ddd;
    position: relative;
}

.exp-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.label-before {
    background: #eee;
    color: #888;
}

.text-before {
    color: #999;
    font-size: 13px;
    line-height: 1.5;
    font-style: italic;
}

/* سهم فاصل */
.arrow-separator {
    height: 0;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.arrow-icon-small {
    background: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #eee;
    color: var(--cupcake-primary);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -12px;
}

/* بعد */
.exp-box.after {
    padding: 20px;
    background: rgba(171, 31, 74, 0.03); /* لون وردي خافت جداً */
}

.label-after {
    background: var(--cupcake-primary);
    color: #fff;
    box-shadow: 0 3px 8px rgba(171, 31, 74, 0.25);
}

.text-after {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
}

/* -- 6. نقاط التنقل -- */
.swiper-pagination-bullet-active {
    background: var(--cupcake-primary) !important;
    width: 20px;
    border-radius: 4px;
}