@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/beatrice-display-trial');

@font-face {
    font-family: 'Beatrice Deck Trial';
    src: url('BeatriceDeckTrial-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.thdr-font-apply {
    font-family: 'Beatrice Deck Trial', sans-serif !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    background-color: #050505;
    overflow-x: hidden;
    font-family: 'Beatrice Deck Trial', sans-serif;
}

/* media  */


/* --- Thunder Storm Promo Section --- */
/* .thdr-storm-promo-section {
    position: relative;
    width: 100%;
    min-height: 500px; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
} */

.thdr-storm-promo-section {
    height: 100vh;
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 40px 0; */
}

/* Background Style (Based on your request) */
.thdr-storm-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.thdr-media-bar {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    /* التعديل اللي طلبته + تأثير بسيط عشان ينعم الحواف */
    filter: blur(3px) brightness(0.5); 
    transform: scale(1.05); /* عشان الـ Blur ميبينش حواف بيضاء */
}

/* Content Container */
.thdr-promo-content-container {
    position: relative;
    top: 70px;
    right: 370px;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

/* --- Left: Animated Offer Image --- */
.thdr-offer-visual-box {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.thdr-floating-offer-img {
    max-width: 100%;
    width: 350px; /* حجم صورة العرض */
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2)); /* توهج خفيف */
    animation: thdrFloat 4s ease-in-out infinite; /* الانميشن الهادي */
}

/* Animation Keyframes (Floating Effect) */
@keyframes thdrFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); } /* بيطلع لفوق ويلف سنة بسيطة */
    100% { transform: translateY(0px) rotate(0deg); }
}

/* --- Right: Best Seller Glass Card --- */
.thdr-best-seller-card {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.thdr-card-glass-effect {
    background: rgba(255, 255, 255, 0.05); /* شفافية */
    backdrop-filter: blur(10px); /* تأثير الزجاج */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.thdr-badge-hot {
    background: linear-gradient(45deg, #ff4b1f, #ff9068);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.thdr-promo-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif; /* نفس خط الموقع */
    line-height: 1.1;
}

.thdr-promo-desc {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.thdr-promo-price {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.thdr-promo-price .old-price {
    text-decoration: line-through;
    color: #777;
    margin-right: 10px;
    font-size: 1.2rem;
}

.thdr-promo-price .new-price {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.thdr-storm-btn {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: black;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.thdr-storm-btn:hover {
    background: transparent;
    color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .thdr-promo-content-container {
        flex-direction: column;
        text-align: center;
    }
    
    .thdr-card-glass-effect {
        text-align: center;
        padding: 30px 20px;
    }

    .thdr-promo-title {
        font-size: 2rem;
    }
}

















/* =========================================
   THUNDER STORE - LANDING PAGE STYLES
   ========================================= */

.fa-solid, .fa-brands, .fa-regular, i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

:root {
    --thdr-primary: #FFD700;
    --thdr-secondary: #8B0000;
    --thdr-dark: #0a0a0a;
    --thdr-font-head: 'Beatrice Deck Trial', sans-serif;
}

.thdr-wrapper {
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.thdr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.thdr-text-gradient {
    background: linear-gradient(90deg, #fff, var(--thdr-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- HERO SECTION --- */
.thdr-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 50px;
}

.thdr-glow-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.thdr-hero-content {

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    z-index: 1;
    width: 100%;
}

.thdr-hero-text h1 {
    font-family: var(--thdr-font-head);
    font-size: 6rem;
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.thdr-hero-text h1 span {
    display: block;
    font-size: 2rem;
    color: var(--thdr-primary);
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.thdr-hero-text p {
    font-size: 1.1rem;
    color: #aaaaaa;
    margin-bottom: 40px;
    max-width: 400px;
    line-height: 1.6;
}

.thdr-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.thdr-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--thdr-primary);
    z-index: -1;
    transition: transform 0.4s ease;
    transform: skewX(-20deg);
}

.thdr-cta-btn:hover {
    border-color: var(--thdr-primary);
    color: #000;
}

.thdr-cta-btn:hover::before {
    transform: skewX(-20deg) translateX(100%);
    left: 0;
}

.thdr-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.thdr-hoodie-mockup {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.2));
    animation: thdr-float 4s ease-in-out infinite;
    background: #1a1a1a;
    height: 400px;
    width: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #333;
    color: #555;
}

.thdr-hoodie-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- VALUE SECTION --- */
.thunder-landing-value {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 60px 40px;
    background-color: #0c0c0c;
    text-align: center;
}

.thunder-value-item {
    flex-basis: 30%;
    padding: 20px;
}

.thunder-value-icon {
    font-size: 3rem;
    color: #888;
    margin-bottom: 20px;
}

.thunder-value-title {
    font-size: 1.8rem;
    color: var(--thdr-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thunder-value-desc {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
}

/* --- ANIMATIONS --- */
@keyframes thdr-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.thdr-fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ================= Media Queries (Responsive) ================= */
@media (max-width: 768px) {
    .thdr-hero {
        min-height: auto;
        height: auto;
        align-items: flex-start;
        padding-top: 110px;
        padding-bottom: 50px;
    }

    .thdr-hero-content {
        grid-template-columns: 1fr;
        margin-top: 0;
        text-align: center;
        gap: 10px;
    }

    .thdr-hero-text h1 {
        font-size: 3.5rem;
    }

    .thdr-hero-visual {
        height: 350px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .thdr-hoodie-mockup {
        width: 260px;
        height: 350px;
    }

    .thunder-landing-value {
        flex-direction: column;
        align-items: center;
    }

    .thunder-value-item {
        margin-bottom: 40px;
        flex-basis: 100%;
    }

}






/* .scroller-media {
    background-color: black;
    height: 100vh;
    width: 100%;
} */


.scroller-media {
    background-color: black;
    /* height: 100vh;  <--- امسح ده، ده السبب الرئيسي للمشاكل */
    min-height: 100vh; /* البديل: اسمح له بالطول ولكن لا تجبره */
    height: auto;      /* ليتمدد حسب المحتوى */
    width: 100%;
    display: flex;     /* استخدام الفليكس لترتيب العناصر تحت بعض */
    flex-direction: column;
    justify-content: center; /* توسيط المحتوى رأسياً */
    padding: 50px 0;   /* مسافة من فوق وتحت عشان العناصر متلزقش في الحواف */
}

/* .title-scroll-media-bar {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 10vh;
    display: flex;
    font-family: 'Beatrice Deck Trial', sans-serif;
    padding-bottom: 20px;
    padding-top: 60px;
} */


.title-scroll-media-bar {
    position: relative;
    /* top: 40px; */
    /* left: 50%; */               /* <--- امسح */
    /* transform: translateX(-50%); */ /* <--- امسح */
    margin: 0 auto;               /* البديل: هذا يوسط العنصر تلقائياً */
    width: 90%;
    /* height: 10vh; */           /* <--- امسح: لا تحدد ارتفاع للنصوص أبداً */
    height: auto;                 /* اجعل الارتفاع أوتوماتيك */
    display: flex;
    /* padding-bottom: 20px; */   /* قلل الحشو */
    margin-bottom: 30px;
    font-family: 'Beatrice Deck Trial', sans-serif;
}




.title-top-scroll-bar {
    position: relative;
    left: 50px;
    width: 50%;
    height: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: left;
    font-family: 'Beatrice Deck Trial', sans-serif;
}

.title-more-scroll-bar {
    position: absolute;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    margin-bottom: 5px;
    white-space: nowrap;
}

.title-more-scroll-bar a {
    text-decoration: none;
    font-family: 'Beatrice Deck Trial', sans-serif;
    font-size: 14px;
    color: #fff;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
    position: relative;
    top: 20px;
}

.title-more-scroll-bar a:hover {
    color: #f0c040;
    
}

.title-scroll-media {
    font-size: 38px;
    font-weight: bold;
    line-height: 1;
    color: white;
}

.subtitle-scroll-media {
    font-weight: bold;
    font-size: 38px;
    line-height: 1;
    color: white;
}

/* .scroller-media-bar {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
} */



.scroller-media-bar {
    position: relative;
    /* left: 50%; */               
    /* transform: translateX(-50%); */  
    margin: 0 auto;          
    width: 100%;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* padding-bottom: 20px;  */
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
}

.scroller-media-bar::-webkit-scrollbar {
    height: 8px;
}

.scroller-media-bar a{
    text-decoration: none;
}
.scroller-media-bar > a {
    /* scroll-snap-align: start; يوقف بداية الكارت عند بداية السكرول */
    scroll-snap-align: center; /* أو ممكن تستخدم center لو عايز الكارت ييجي في نص الشاشة في الموبايل */
}

.side-space {
    min-width: 100px;
}

.item {
    min-width: 320px;
    max-width: 320px;
    min-height: 430px;
    max-height: 480px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.item-image {
    position: relative;
    flex: 0 0 90%;
    width: 100%;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.item-detail {
    flex: 0 0 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-detail .title {
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
}

.item-detail .price {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
    letter-spacing: 0.5px;
}

.item-detail .title,
.item-detail .price {
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}


/* الحاوية الأساسية للسعر */
.price {
    display: flex;           /* السر هنا: بيخلي العناصر تيجي جنب بعض */
    align-items: center;     /* بيظبط محاذاتهم رأسياً في النص */
    gap: 10px;               /* مسافة بين السعر الجديد والقديم */
    margin-top: 5px;
}

/* السعر الحقيقي (الجديد) */
.real-price {
    font-size: 16px;
    font-weight: bold;
    color: #fff;             /* لون أبيض واضح */
    margin: 0;               /* إلغاء الهوامش عشان يبقوا على سطر واحد */
}

/* السعر القديم (المشطوب) */
.dis-price {
    font-size: 14px;         /* أصغر شوية */
    color: #888;             /* لون رمادي باهت */
    margin: 0;
    text-decoration: line-through; /* خط في المنتصف (شطب) */
}

/* لو بتستخدم del جوا الـ p، نأكد عليها برضه */
.dis-price del {
    color: #666;
}



.scroll-button-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
}

.scroll-button {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
    user-select: none;
}

.scroll-button:hover {
    background-color: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* .add-to-cart {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

.item:hover .add-to-cart {
    opacity: 1;
    pointer-events: auto;
} */


.add-to-cart {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.item:hover .add-to-cart {
    opacity: 1;
    transform: translateY(0);
}




.Btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background-color: var(--accent-color);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    transition-duration: 0.3s;
    overflow: hidden;
    position: relative;
}

.Btn:hover {
    width: 100px;
    border-radius: 8px;
}

.Btn .sign {
    width: 100%;
    font-size: 20px;
    color: #000;
    font-weight: bold;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Btn:hover .sign {
    width: 30%;
    padding-right: 50px;
}

.Btn .text {
    position: absolute;
    right: 0;
    width: 0%;
    opacity: 0;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    transition-duration: 0.3s;
    white-space: nowrap;
    padding-right: 15px;
}

.Btn:hover .text {
    opacity: 1;
    width: 70%;
}

.Btn.disabled {
    background-color: #555;
    cursor: not-allowed;
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

.Btn.disabled .text {
    position: relative;
    opacity: 1;
    width: auto;
    color: #fff;
    padding: 0;
}

.Btn.disabled:hover {
    width: auto;
}
/* 
.Btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.sign {
    width: 100%;
    font-size: 2em;
    color: hsla(0, 0%, 100%, 0.500);
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: hsla(0, 0%, 100%, 0.500);
    font-size: 1.2em;
    font-weight: 500;
    transition-duration: .3s;
}

.Btn:hover {
    width: 100px;
    border-radius: 6px;
    transition-duration: .3s;
}

.Btn:hover .sign {
    width: 15%;
    transition-duration: .3s;
    padding-left: 20px;
}

.Btn:hover .text {
    opacity: 1;
    width: 40%;
    transition-duration: .3s;
    padding-right: 20px;
}

.Btn:active {
    transform: translate(2px ,2px);
} */




/* --- أضف هذا الكود لملف landing.css --- */

/* 1. Product Badges (للخصم ونفاذ الكمية) */
.product-badge {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 5;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.badge-sale {
    background-color: #FFD700; /* ذهبي */
    color: #000;
}

.badge-out {
    background-color: #333; /* رمادي */
    color: #fff;
    border: 1px solid #555;
}

/* 2. تأثير المنتج المنتهي */
.item.out-of-stock .item-image img {
    opacity: 0.5;
    filter: grayscale(80%);
}
.item.out-of-stock .add-to-cart {
    display: none !important; /* إخفاء زر الإضافة */
}
.item.out-of-stock {
    cursor: not-allowed;
}
.item.out-of-stock a {
    pointer-events: none; /* منع النقر */
}

/* 3. الصق هنا كود الـ Popup CSS اللي أنت بعته كما هو */
/* ... (كود stwr-popup-overlay وما بعده) ... */



/* --- إعدادات القسم --- */
.thdr-contact-calm {
    padding: 120px 20px;
    background-color: #050505; /* أسود هادئ */
    text-align: center;
    overflow: hidden;
}

/* --- العنوان --- */
.thdr-section-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400; /* خط رفيع لزيادة الهدوء */
    letter-spacing: 2px;
}

.thdr-section-header p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 60px;
}

/* --- الشبكة (Grid) --- */
.thdr-contact-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

/* --- البطاقات الهادئة (Cards) --- */
.calm-card {
    flex: 1 1 250px; 
    max-width: 300px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: transparent;
    border: 1px solid #222; /* حدود خفيفة جداً */
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.5s ease;
}

.calm-icon {
    font-size: 1.5rem;
    color: #888; /* أيقونة رمادية (ليست صفراء) */
    transition: 0.3s;
}

.calm-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.calm-info span {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calm-info .detail {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    margin-top: 5px;
}

/* --- تأثير الهوفر (بسيط جداً) --- */
.calm-card:hover {
    border-color: #444;
    transform: translateY(-5px); /* ارتفاع بسيط */
    background: rgba(255, 255, 255, 0.02);
}

.calm-card:hover .calm-icon {
    color: #fff; /* تتحول للأبيض عند اللمس */
    /* لو عايز لمسة صفراء خفيفة جداً، استخدم السطر اللي تحت بدلاً من الأبيض */
    /* color: #ffe600; */ 
}

/* --- السوشيال ميديا (Minimal) --- */
.thdr-social-minimal {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.thdr-social-minimal a {
    color: #555;
    font-size: 1.5rem;
    transition: 0.4s;
}

.thdr-social-minimal a:hover {
    color: #fff;
    transform: scale(1.1);
}

/* =========================================
   Animation Classes (Scroll Reveal)
   السر في الكلاسات دي
   ========================================= */

/* الحالة الابتدائية (مخفي) */
.thdr-hidden {
    opacity: 0;
    transform: translateY(50px); /* نازل لتحت شوية */
    transition: all 1s ease-out; /* حركة ناعمة جداً */
}

/* الحالة النهائية (ظاهر) */
.thdr-show {
    opacity: 1;
    transform: translateY(0);
}




.fa-solid, .fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

.fa-regular, .far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}



@media (max-width: 500px) {
        .scroller-media-bar {
            margin-top: 50px;
    }

    .sub-more-title a{
        top:60px;
    }
}


/* 1. الخلفية (زي ما هي تمام) */
.bg-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.4);
    transform: scale(1.1);
}

/* 2. الحاوية الرئيسية */
.hero-wrapper {
    height: 100vh; /* تأكيد الطول */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* مسافة أمان عشان المحتوى ميلزقش في الحواف */
    overflow: hidden; /* عشان لو الأنيميشن خرج ميعملش سكرول */
}

/* 3. الصندوق الشفاف (Content Box) */
.content-box {
    text-align: center;
    color: #fff;
    width: 100%; /* ياخد العرض المتاح */
    max-width: 700px; /* بس ميعديش 700 بيكسل */
    padding: 40px;
    
    /* Glassmorphism Style */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);

    /* لغينا الـ top والـ right من هنا عشان يتسنتر صح */
    position: relative; 
}
/* --- العناصر الداخلية (Logo, Text, Button) --- */
.offer-logo {
    position: relative;
    bottom: 100px;
    right: 20px;
    display: block;
    margin: 0 auto 20px auto;
    max-width: 500px; 
    width: 100%;
    animation: slideDown 1s ease-out forwards;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.tagline {
    position: absolute;
    line-height: 1.2;
    right: 390px;
    /* width: 600px; */
    /* font-family: 'Russo One', sans-serif; */
    font-family: 'Beatrice Deck Trial', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem); 
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}
/* 
.cta-btn {
    align-items: center;
    justify-content: center;
    display: inline-block;
    text-decoration: none;
    padding: 15px 50px;
    font-family: 'Russo One', sans-serif;
    font-size: 1.2rem;
    color: #000;
    background: linear-gradient(45deg, #FFD700, #ffb300);
    border-radius: 6px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    margin-top: 10px;
} */

.cta-btn {
    
    max-width: 230px;
    position: relative;
    right: 470px;
    top: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 15px ;
    /* font-family: 'Russo One', sans-serif; */
    font-family: 'Beatrice Deck Trial', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    /* color: #000; */
    color: white;
    /* background: linear-gradient(45deg, #FFD700, #ffb300); */
    /* border-radius: 6px; */
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    margin-top: 10px;
}


.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

/* --- Mockup Image Styles --- */
.thdr-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.thdr-hoodie-mockup {
    width: 300px; /* الحجم الطبيعي للديسك توب */
    height: auto;
    aspect-ratio: 3/4; /* يحافظ على النسبة */
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.2));
    animation: thdr-float 4s ease-in-out infinite;
    position: relative;
}

.thdr-hoodie-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animations Keyframes */
@keyframes slideDown { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeInUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes thdr-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }


/* =========================================
   RESPONSIVE RULES (MOBILE & TABLET)
   ========================================= */

@media (max-width: 992px) {
    /* 1. تظبيط الهيرو ككل */
    .thdr-hero {
        min-height: auto;
        height: auto;
        padding-top: 120px; /* مسافة عشان الناف بار */
        padding-bottom: 50px;
        display: block; /* نلغي الفليكس سنتر عشان العناصر تيجي تحت بعض */
    }

    .side-space {
    min-width: 0px;
}

    /* 2. الكونتينر اللي شايل الصورة والنص */
    .thdr-hero-content {
        display: flex;
        flex-direction: column; /* يرصهم عمودي */
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    /* 3. (أهم جزء) الصورة تيجي فوق */
    .thdr-hero-visual {
        order: -1; /* يرفع الصورة للأول */
        width: 100%;
        margin-bottom: 20px;
        height: auto;
    }

    /* 4. تظبيط حجم الصورة في الموبايل */
    .thdr-hoodie-mockup {
        width: 70%; /* تاخد 70% من عرض الشاشة */
        max-width: 280px; /* بس متزيدش عن كدا */
    }

    /* 5. النص ييجي تحت */
    .thdr-hero-text, .hero-content {
        order: 1;
        width: 100%;
    }

    /* 6. تعديلات عامة للنصوص */
    .tagline {
        font-size: 1.8rem;
        letter-spacing: 1px;
        right: 0px;
    }

    /* .offer-logo {
        max-width: 350px;
    } */
    
    .cta-btn {
        margin-bottom:30px;
        width: 100%;
        max-width: 300px;
        right: 0px;
        top: 0px;
    }

    .content-box {
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
    }
}


        @media (max-width: 768px) {
            .offer-logo { max-width: 380px; 
            margin-top: 20px;
        left: 5px;}
            .tagline { font-size: 1.8rem; }
            .content-box { padding: 20px; background: none; border: none; box-shadow: none; } /* نخفي الصندوق في الموبايل عشان المساحة */
            .thdr-promo-content-container {
                position: relative;
                top: 80px;
                right: 0px;
            }

            .thdr-hero-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}



.thdr-hero.hidden-offer {
    display: none !important; 
}