/* Core Styling & Futuristic Typography */
body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #050608;
    color: #f5f5f7;
    overflow-x: hidden;
}

/* Glassmorphism Luxury Navbar */
.navbar {
    background-color: rgba(5, 6, 8, 0.4) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
}

.navbar-brand {
    font-family: 'Syncopate', sans-serif;
    letter-spacing: 8px;
    font-size: 1.6rem !important;
    font-weight: 700;
    color: #fff !important;
}

.nav-link {
    color: #a1a1a6 !important;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 15px;
    transition: 0.3s ease;
}

.category-link {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 8px 22px !important;
    background: rgba(255, 255, 255, 0.02);
}

.category-link:hover {
    color: #fff !important;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Hero Section with Video Showcase Area */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #050608;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1); /* الإبقاء على ملامح الموديل وعرض الأزياء بوضوح حاد */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(5,6,8,0.1) 0%, rgba(5,6,8,0.75) 100%);
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 60vh; /* يعطي مساحة عمودية واسعة تبرز تفاصيل حركة الموديل */
    z-index: 3;
}

/* 🎯 الشعار الفاخر داخل الدائرة الزجاجية النقية */
.brand-circle-badge {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.05);
    animation: floatingAnimation 4s ease-in-out infinite; /* تأثير الطفو لزيادة اللمسة البرمجية الفخمة */
}

@keyframes floatingAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.circle-brand-name {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: #fff;
    padding-left: 6px; /* لموازنة توزيع الأحرف المتباعدة هندسياً */
}

/* منطقة الأزرار البسيطة أسفل الواجهة */
.hero-action-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.collection-year-tag {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* زر دخول المعرض فائق الحداثة */
.hero-btn-premium {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 40px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-btn-premium:hover {
    background: #fff;
    color: #050608;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
}

/* Sections Styling */
.sub-header-tag {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: #a1a1a6;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: #86868b;
    line-height: 1.7;
}

/* Ultra-Luxury Glassmorphism Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px 35px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.icon-box {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    transition: 0.3s;
}

.info-card:hover .icon-box {
    background: #fff;
    border-radius: 50%;
}

.info-card i {
    color: #fff;
    font-size: 1.4rem;
    transition: 0.3s;
}

.info-card:hover i {
    color: #050608;
}

.info-card h4 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.info-card p {
    color: #86868b;
    font-size: 1rem;
    margin-bottom: 0;
}

/* High-Contrast Luxury Form Design */
.bg-form-section {
    background-color: #0d0e12 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.premium-form .form-control {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(5, 6, 8, 0.8);
    color: #fff;
    padding: 18px;
    transition: 0.3s ease;
}

.premium-form .form-control:focus {
    background-color: #050608;
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.premium-form label {
    color: #86868b;
    padding-left: 10px;
}

.premium-form .form-control:focus ~ label {
    color: #fff;
}

.btn-submit-premium {
    background: #fff;
    color: #050608;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: 0.4s;
}

.btn-submit-premium:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.01);
}

/* High-End Luxury Footer Architecture */
footer {
    background: #050608;
    padding: 60px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-social-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-btn {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn i {
    color: #86868b;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.4);
}

.social-btn.twitter:hover {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}
.social-btn.twitter:hover i {
    color: #000 !important;
}

.social-btn.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.4);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(220, 39, 67, 0.4);
}

.social-btn:hover i {
    color: #fff !important;
    transform: scale(1.1);
}

.copyright-text {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #434344;
    margin-top: 30px;
    text-align: center;
}

/* 🎯 الدائرة الكريستالية المحتضنة للشعار السائل */
.brand-circle-badge {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 
                inset 0 0 30px rgba(255, 255, 255, 0.03);
    margin-bottom: 30px;
    animation: liquidFloating 5s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ستايل الشعار السائل المنسوج والموتزاريلا الذائبة */
.zara-melting-logo {
    width: 140px;
    height: auto;
    /* إضافة فلتر لتنعيم حواف السيلان لتبدو كريمية حقيقية ولامعة */
    filter: drop-shadow(0px 8px 15px rgba(255, 255, 255, 0.12));
    transition: all 0.5s ease;
}

/* تأثير رهيب عند تمرير الماوس فوق الدائرة (تأثير تمدد وانسياب سائل) */
.brand-circle-badge:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 
                0 0 30px rgba(255, 255, 255, 0.05);
    transform: scale(1.04);
}

.brand-circle-badge:hover .zara-melting-logo {
    /* تجعل القطرات السائلة واللوجو يبدو وكأنه يتمدد لأسفل بنعومة عند الـ Hover */
    transform: translateY(4px) scaleY(1.02);
    filter: drop-shadow(0px 12px 20px rgba(255, 255, 255, 0.25));
}

/* أنيميشن الطفو والسيولة */
@keyframes liquidFloating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); } /* ميلان خفيف جداً يبرز حركة المادة السائلة */
    100% { transform: translateY(0px) rotate(0deg); }
}














/* Core Styling & Gothic Masculine Typography */
html {
    scroll-behavior: smooth; /* تفعيل ميزة التمرير الانسيابي الفخم للموقع */
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #030406;
    color: #e5e5e7;
    overflow-x: hidden;
}

/* Navbar Tuning */
.navbar {
    background-color: rgba(3, 4, 6, 0.5) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.navbar-brand-men {
    font-family: 'Syncopate', sans-serif;
    letter-spacing: 6px;
    font-size: 1.4rem !important;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
}

.navbar-brand-men span {
    font-weight: 300;
    color: #8a8a8f;
    font-size: 1rem;
    letter-spacing: 2px;
}

.nav-link {
    color: #8a8a8f !important;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #fff !important;
}

.back-home {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 6px 16px !important;
    background: rgba(255, 255, 255, 0.02);
}

/* Immersive Men's Video Hero Section */
.hero-section-men {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-men {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2) grayscale(0.2);
}

.hero-overlay-men {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3,4,6,0.3) 0%, rgba(3,4,6,0.95) 100%);
    z-index: 2;
}

.hero-content-men {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 62vh;
    z-index: 3;
    text-align: center;
}

/* الدائرة الكريستالية باللوجو الفضي الكروم السائل اللامع */
.men-circle-badge {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 
                inset 0 0 30px rgba(255, 255, 255, 0.02),
                0 0 40px rgba(255, 255, 255, 0.03);
    animation: menFloating 5s ease-in-out infinite;
    transition: all 0.5s ease;
}

.zara-chrome-logo {
    width: 135px;
    height: auto;
    filter: drop-shadow(0px 8px 20px rgba(255, 255, 255, 0.2));
}

@keyframes menFloating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.men-action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.men-tag-line {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: #6c757d;
}

.men-hero-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.btn-men-premium {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 45px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-men-premium:hover {
    background: #fff;
    color: #030406;
    transform: translateY(-3px);
}

/* Showcase Section & Ultra-Modern Showcase Grid */
.sub-header-tag {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: #6c757d;
    display: block;
    margin-bottom: 8px;
}

.section-title-men {
    font-family: 'Syncopate', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: #fff;
}

/* 🎯 إعدادات صور الملابس بداخل الكروت الستة */
.product-card-men {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 💡 هنا تقوم بتعديل واستبدال روابط الصور بأسماء ملفات صورك الخاصة لتظهر فوراً */
.product-card-men.item-1 { background-image: url('img1/img1.png'); }
.product-card-men.item-2 { background-image: url('img1/img2.png'); }
.product-card-men.item-3 { background-image: url('img1/img3.png'); }
.product-card-men.item-4 { background-image: url('img1/img4.png'); }
.product-card-men.item-5 { background-image: url('img1/img5.png'); }
.product-card-men.item-6 { background-image: url('img1/img6.png'); }

.badge-new {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
}

.product-info-layer {
    width: 100%;
    background: rgba(3, 4, 6, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 18px;
    transition: 0.4s ease;
}

.product-card-men:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.product-card-men:hover .product-info-layer {
    background: rgba(255, 255, 255, 0.95);
    border-color: #fff;
}

.product-card-men:hover .product-info-layer h5 { color: #030406; }
.product-card-men:hover .product-info-layer p { color: #495057; font-weight: 600; }

.product-info-layer h5 { font-size: 1.1rem; font-weight: 600; margin-bottom: 5px; color: #fff; transition: 0.3s; }
.product-info-layer p { font-size: 0.95rem; color: #a1a1a6; margin-bottom: 0; transition: 0.3s; }

footer {
    background: #030406;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.copyright-text { font-size: 0.8rem; color: #434344; letter-spacing: 1px; }

/* ==========================================================================
   تعديل ميديا كويري الناف بار لجعل العناصر في المنتصف تماماً
   ========================================================================== */
@media (max-width: 991.98px) {
    
    /* ضبط ظهور زر الثلاث شُرط بشكل منسق وجذاب */
    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 6px 10px;
        border-radius: 4px;
        outline: none;
        box-shadow: none !important;
    }

    /* جعل أيقونة الثلاث شُرط البيضاء تظهر بوضوح فوق الفيديو */
    .navbar-toggler-icon {
        filter: invert(1); 
        width: 1.2em;
        height: 1.2em;
    }

    /* تحسين شكل القائمة المنسدلة عند الضغط على الثلاث شُرط */
    .navbar-collapse {
        background: rgba(11, 11, 11, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        margin-top: 15px;
        padding: 20px 15px; /* زيادة مساحة الحشو الداخلي */
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center !important; /* إجبار كل المحتوى الداخلي على التوسط */
    }

    /* ضبط الحاوية الأساسية للروابط لتكون في السنتر */
    .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* توسيط العناصر أفقيّاً */
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important; /* إلغاء أي إزاحة جهة اليمين الناتجة عن ms-auto */
        padding: 0 !important;
        gap: 12px; 
    }

    .nav-item {
        width: 100% !important;
        max-width: 280px; /* تحديد عرض أقصى مريح للأزرار البيضاوية لتظهر متناسقة */
        display: flex;
        justify-content: center;
        margin: 0 auto !important;
    }

    .nav-link {
        display: inline-block !important;
        width: 100% !important;
        text-align: center !important; /* توسيط الكلمة داخل الزر */
        padding: 12px 20px !important;
        font-size: 0.95rem;
        box-sizing: border-box;
    }
}

/* ==========================================================================
   1. إعدادات التناسب العامة لصفحة الرجال (Global Layout)
   ========================================================================== */
body {
    overflow-x: hidden; /* حماية كامل الصفحة من التمرير الأفقي والمشاكل البرمجية */
}

/* هيرو صفحة الرجال والفيديو الخلفي */
.hero-section-men {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-men {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* يضمن تغطية الفيديو للشاشة بالكامل دون تشويه الأبعاد */
}

.hero-content-men {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ==========================================================================
   2. ميديا كويري الناف بار (توسيط الأزرار وثلاث شُرط للموبايل)
   ========================================================================== */
@media (max-width: 991.98px) {
    
    /* ضبط مظهر زر الثلاث شُرط المستدعى من Bootstrap */
    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 6px 10px;
        box-shadow: none !important;
    }

    .navbar-toggler-icon {
        filter: invert(1); /* تحويل الأيقونة للون الأبيض للتناسب مع الخلفية */
        width: 1.2em;
        height: 1.2em;
    }

    /* الحاوية المنسدلة عند فتح القائمة */
    .navbar-collapse {
        background: rgba(11, 11, 11, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        margin-top: 15px;
        padding: 20px 15px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center !important; /* إجبار المحتويات على التوسط */
    }

    /* إلغاء الـ ms-auto وتوسيط الأزرار البيضاوية أفقيّاً وعموديّاً */
    .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* التوسط الهندسي المطلق في السنتر */
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important; /* إلغاء التموضع الجانبي */
        padding: 0 !important;
        gap: 12px;
    }

    .nav-item {
        width: 100% !important;
        max-width: 280px; /* تحديد عرض أقصى متناسق للروابط */
        display: flex;
        justify-content: center;
        margin: 0 auto !important;
    }

    .nav-link {
        display: inline-block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 12px 20px !important;
        font-size: 0.95rem;
        box-sizing: border-box;
    }
}

/* ==========================================================================
   3. ضبط الموبايل والشاشات الصغيرة (شاشات الهواتف الذكية)
   ========================================================================== */
@media (max-width: 575.98px) {
    
    /* تصغير الدائرة والشعار الكروم لصفحة الرجال ليناسب الموبايل */
    .men-circle-badge {
        width: 190px !important;
        height: 190px !important;
        padding: 20px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .zara-chrome-logo {
        width: 100% !important;
        height: auto !important;
        max-width: 130px !important;
    }

    /* تنسيق أبعاد العناوين في الهيرو لكي لا تنكسر لأسطر متعددة سيئة المظهر */
    .men-hero-title {
        font-size: 1.8rem !important;
        letter-spacing: 2px !important;
    }

    .men-tag-line {
        font-size: 0.75rem !important;
        letter-spacing: 3px !important;
    }

    /* تقليل المسافات العمودية للشبكة لتظهر المنتجات الستة بشكل انسيابي خلف بعضها */
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    /* ضبط كروت المنتجات الستة لكي تملأ العرض المتاح للهواتف الذكية دون خروج عن الحواف */
    .product-card-men {
        width: 100% !important;
        margin-bottom: 10px;
    }
}























