/* ================================= */
/*      FULL WIDTH PARALLAX SECTION  */
/* ================================= */

/* كسر الكونتينر */
.custom-parallax-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(-50vw + 50%);
    padding: 0;
}

/* السكشن */
.parallax-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    direction: rtl;
}

/* صورة الخلفية */
.parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://demos.codezeel.com/wordpress/WCM09/WCM090225/default/wp-content/uploads/2025/05/parallax-banner-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

/* اوفرلاي */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.3)
    );
    z-index: 2;
}

/* الكونتينر الداخلي */
.parallax-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 3;
}

/* النص */
.parallax-content {
    max-width: 650px;
    color: #ffffff;
    text-align: right;
}

.parallax-title {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 28px;
}

.parallax-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 45px;
}

/* الزر */
.parallax-btn {
    display: inline-block;
    background: #ffffff;
    color: #1a1a1a;
    padding: 18px 55px;
    text-decoration: none;
    transition: 0.4s ease;
}

.parallax-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {

    .parallax-container {
        justify-content: center;
        text-align: center;
    }

    .parallax-content {
        text-align: center;
    }

    .parallax-image {
        background-attachment: scroll;
    }
}

/* اخفاء من صفحة المنتج */
body[class*="product"] .custom-parallax-wrapper {
    display: none !important;
}