/* ========================= */
/*  FULL WIDTH HERO SECTION */
/* ========================= */

/* يكسر الكونتينر الأساسي */
.custom-hero-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(-50vw + 50%);
    padding: 0;
}

/* الهيرو */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    direction: rtl;
}

/* الصورة */
.hero-img-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: subtleZoom 20s ease-in-out infinite;
}

/* حركة زوم خفيفة */
@keyframes subtleZoom {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* أوفرلاي */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.05)
    );
    z-index: 2;
}

/* المحتوى */
.hero-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    z-index: 3;
}

.hero-text {
    max-width: 650px;
    color: #fff;
    text-align: right;
}

/* العنوان */
.hero-text h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

/* الوصف */
.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* الزر */
.hero-btn {
    display: inline-block;
    background: #ffffff;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 45px;
    border: 2px solid #fff;
    transition: 0.4s ease;
}

.hero-btn:hover {
    background: transparent;
    color: #fff;
}

/* اخفاءه من صفحة المنتج */
body[class*="product"] .custom-hero-wrapper {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 15px;
    }
}