/* ==========================================================================
   KimoShoes Premium Overlay Layout - Fixed & Balanced Version
   ========================================================================== */

.banner.swiper {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    height: 100vh;
    background: #000;
}

.banner__slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.banner__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.media-wrapper, .media--100vh {
    width: 100%;
    height: 100vh;
}

.hero-video-bg, .media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.7);
}

/* طبقة المحتوى الرئيسية */
.banner__content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* صندوق الترتيب */
.banner__box {
    position: relative;
    width: 100%;
    max-width: 1200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 1. الكلمة الكبيرة ف الخلفية */
.banner__watermark-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(100px, 18vw, 260px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    width: 100%;
}

/* 2. صندوق النصوص الأمامية */
.banner__front-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* العنوان الرئيسي الأمامي */
.banner__heading-premium {
    font-size: clamp(24px, 3.8vw, 42px);
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

/* الوصف الصغير */
.banner__subtext-premium p {
    font-size: clamp(14px, 1.4vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 3. تعديل البوطون (قهرنا اللون الأزرق بـ !important باش يتفرض الوردي المفتوح) */
.banner__box .button--premium-pink, 
.button--premium-pink {
    display: inline-block !important;
    margin-top: 10px !important;
    padding: 14px 40px !important;
    background: #ffb6c1 !important; /* وردي مفتوح ناعم (Light Pink) */
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.1em !important;
    transition: all 0.3s ease !important;
    border: 1px solid #ffb6c1 !important; 
    border-radius: 4px !important;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4) !important;
    cursor: pointer !important;
}

/* تأثير الـ Hover على البوطون فاش كتحط الماوس */
.banner__box .button--premium-pink:hover,
.button--premium-pink:hover {
    background: #ffa0b0 !important; /* وردي غامق سنة خفيفة للتفاعل */
    border-color: #ffa0b0 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.6) !important;
}

/* ==========================================================================
   تجاوب الموبايل
   ========================================================================== */
@media (max-width: 767px) {
    .banner.swiper, 
    .media-mobile--400px, 
    .media-wrapper, 
    .media--100vh {
        height: 400px !important;
    }
    
    .banner__watermark-text {
        font-size: 90px;
        top: 50%;
        opacity: 0.18;
    }
    
    .banner__front-content {
        max-width: 100%;
        gap: 10px;
    }

    .banner__heading-premium {
        font-size: 22px;
        line-height: 1.3;
    }

    .banner__subtext-premium p {
        font-size: 13px;
    }
    
    .banner__box .button--premium-pink,
    .button--premium-pink {
        padding: 10px 30px !important;
        font-size: 13px !important;
    }
}