/* === تصميم عناوين صفحات المنتجات (ستايل بسيط وهادئ مثل الهوم) === */

.product-page-header {
    background: #fff;
    padding: 40px 0 20px 0;
    text-align: center;
    margin-bottom: 20px;
    border: none;
    box-shadow: none;
}

.product-page-header .container {
    position: relative;
    z-index: 1;
    padding: 0;
}

.product-page-title {
    font-size: 2.1rem;
    font-weight: bold;
    color: #4b3c7a;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    font-family: 'Cairo', sans-serif;
    background: none;
    box-shadow: none;
    text-shadow: none;
    line-height: 1.2;
}

.product-page-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin: 0 auto;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.7;
    background: none;
    box-shadow: none;
    text-shadow: none;
}

@media (max-width: 768px) {
    .product-page-header {
        padding: 25px 0 10px 0;
    }
    .product-page-title {
        font-size: 1.4rem;
        margin-bottom: 7px;
    }
    .product-page-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .product-page-header {
        padding: 15px 0 5px 0;
    }
    .product-page-title {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    .product-page-subtitle {
        font-size: 0.85rem;
        padding: 0 5px;
    }
}

/* تصميم خاص لكل قسم - ألوان خفيفة فقط */
.product-page-header.makeup .product-page-icon {
    color: #e91e63;
}

.product-page-header.perfume .product-page-icon {
    color: #9c27b0;
}

.product-page-header.skincare .product-page-icon {
    color: #4caf50;
}

.product-page-header.haircare .product-page-icon {
    color: #ff9800;
}

.product-page-header.shower .product-page-icon {
    color: #2196f3;
}

.product-page-header.shampoo .product-page-icon {
    color: #ff5722;
}

.product-page-header.moisturizer .product-page-icon {
    color: #ffc107;
}

.product-page-header.deodorant .product-page-icon {
    color: #00bcd4;
}

.product-page-header.fragrance .product-page-icon {
    color: #673ab7;
}

.product-page-header.soap .product-page-icon {
    color: #795548;
}

.product-page-header.sunscreen .product-page-icon {
    color: #ff9800;
}

.product-page-header.splash .product-page-icon {
    color: #2196f3;
}

.product-page-header.serum .product-page-icon {
    color: #4caf50;
}

/* تأثيرات إضافية */
.product-page-header {
    animation: headerFadeIn 0.8s ease-out;
}

@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-page-title {
    animation: titleSlideIn 1s ease-out 0.2s both;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-page-subtitle {
    animation: subtitleSlideIn 1s ease-out 0.4s both;
}

@keyframes subtitleSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* تحسينات إضافية للتناسق مع الصفحة الرئيسية */
.product-page-header {
    font-family: 'Cairo', sans-serif;
}

.product-page-title {
    font-weight: 700;
    line-height: 1.2;
}

.product-page-subtitle {
    font-weight: 400;
    line-height: 1.6;
} 