/*==========================
ELEGANT
Where Luxury Lives
==========================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
font-family:'Cairo',sans-serif;
}

body{

background:#f8f8f8;
color:#222;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

/*==========================
LOADER
==========================*/

#loader{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#071B39;
display:flex;
justify-content:center;
align-items:center;
z-index:99999;

}

#loader img{

width:130px;
animation:zoom 1.2s infinite alternate;

}

@keyframes zoom{

from{

transform:scale(.9);

}

to{

transform:scale(1.1);

}

}

/*==========================
NAVBAR
==========================*/

header{

position:fixed;
top:0;
width:100%;
z-index:999;
transition:.4s;

}

.navbar{

height:90px;

display:flex;

align-items:center;

justify-content:space-between;

padding:0 8%;

background:rgba(6,19,42,.75);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(255,255,255,.08);

}

.logo img{

height:58px;

}

.nav-links{

display:flex;
gap:40px;

}

.nav-links a{

color:#fff;

font-size:17px;

font-weight:700;

transition:.3s;

position:relative;

}

.nav-links a::after{

content:"";

position:absolute;

bottom:-8px;

right:0;

width:0;

height:2px;

background:#D4AF37;

transition:.3s;

}

.nav-links a:hover::after{

width:100%;

}

.nav-links a:hover{

color:#D4AF37;

}

.icons{

display:flex;

gap:25px;

font-size:20px;

color:white;

}

.icons i{

cursor:pointer;

transition:.3s;

}

.icons i:hover{

color:#D4AF37;

transform:translateY(-4px);

}

/*==========================
HERO
==========================*/

.hero{

height:100vh;

background:url(hero.jpeg) center center/cover;

position:relative;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

}

.overlay{

position:absolute;

width:100%;

height:100%;

background:linear-gradient(rgba(0,0,0,.45),
rgba(0,0,0,.70));

}

.hero-content{

position:relative;

z-index:2;

color:white;

width:900px;

max-width:90%;

}

.hero-logo{

width:140px;

margin:auto;
margin-bottom:30px;

}

.hero h1{

font-size:72px;

margin-bottom:20px;

font-weight:900;

}

.hero p{

font-size:22px;

line-height:2;

margin-bottom:45px;

opacity:.92;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn{

background:#D4AF37;

padding:18px 50px;

border-radius:8px;

font-size:18px;

font-weight:700;

color:white;

transition:.4s;

}

.btn:hover{

background:white;

color:#071B39;

}

.btn2{

padding:18px 50px;

border:2px solid white;

border-radius:8px;

font-size:18px;

color:white;

transition:.4s;

}

.btn2:hover{

background:white;

color:#071B39;

}

/*==========================
TITLE
==========================*/

.title{

text-align:center;

margin-bottom:60px;

}

.title h2{

font-size:44px;

color:#071B39;

margin-bottom:15px;

}

.title p{

font-size:20px;

color:#777;

}

/*==========================
CATEGORIES
==========================*/

.categories{

padding:120px 8%;

background:white;

}

.category-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.category{

height:500px;

position:relative;

overflow:hidden;

border-radius:18px;

cursor:pointer;

}

.category img{

width:100%;

height:100%;

object-fit:cover;

transition:.7s;

}

.category:hover img{

transform:scale(1.1);

}

.cat-overlay{

position:absolute;

bottom:0;

left:0;

width:100%;

padding:40px;

background:linear-gradient(transparent,#000);

color:white;

}

.cat-overlay h3{

font-size:32px;

margin-bottom:15px;

}

.cat-overlay a{

display:inline-block;

padding:12px 28px;

background:#D4AF37;

color:white;

border-radius:8px;

font-weight:700;

}
/*=============================
Categories
==============================*/

.categories{
    padding:100px 8%;
    background:#fff;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.category{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:430px;
    cursor:pointer;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.category img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.category:hover img{
    transform:scale(1.1);
}

.cat-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.75),transparent);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    padding-bottom:45px;
}

.cat-overlay h3{
    color:#fff;
    font-size:35px;
    margin-bottom:20px;
}

.cat-overlay a{
    text-decoration:none;
    background:#d7b16a;
    color:#071b38;
    padding:13px 35px;
    border-radius:40px;
    font-weight:bold;
    transition:.4s;
}

.cat-overlay a:hover{
    transform:translateY(-5px);
}

/*=============================
Features
==============================*/

.features{
    background:#071b38;
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:30px;
}

.feature{
    text-align:center;
    color:#fff;
}

.feature i{
    color:#d7b16a;
    font-size:45px;
    margin-bottom:20px;
}

.feature h3{
    margin-bottom:10px;
    font-size:25px;
}

.feature p{
    color:#ccc;
}

/*=============================
Products
==============================*/

.products{
    padding:110px 8%;
    background:#f8f8f8;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:35px;
}

.card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    text-align:center;
    transition:.45s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.card img{
    width:100%;
    height:360px;
    object-fit:cover;
    transition:.5s;
}

.card:hover img{
    transform:scale(1.08);
}

.card h3{
    margin-top:25px;
    font-size:26px;
    color:#071b38;
}

.card span{
    display:block;
    color:#d7b16a;
    font-size:23px;
    font-weight:bold;
    margin:15px 0;
}

.card button{
    width:85%;
    margin-bottom:25px;
    border:none;
    background:#071b38;
    color:white;
    padding:15px;
    border-radius:50px;
    cursor:pointer;
    font-size:17px;
    transition:.4s;
}

.card button:hover{
    background:#d7b16a;
    color:#071b38;
}

/*=============================
Offer Banner
==============================*/

.offer{
    height:500px;
    background:url(offer.jpg) center/cover;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.offer::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.offer-content{
    position:relative;
    text-align:center;
    color:#fff;
}

.offer-content h2{
    font-size:65px;
    margin-bottom:15px;
}

.offer-content p{
    font-size:26px;
    margin-bottom:35px;
}

.offer-content a{
    display:inline-block;
    text-decoration:none;
    background:#d7b16a;
    color:#071b38;
    padding:18px 55px;
    border-radius:50px;
    font-weight:bold;
    transition:.4s;
}

.offer-content a:hover{
    transform:translateY(-5px);
}
/*=============================
Categories
==============================*/

.categories{
    padding:100px 8%;
    background:#fff;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.category{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:430px;
    cursor:pointer;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.category img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.category:hover img{
    transform:scale(1.1);
}

.cat-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.75),transparent);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    padding-bottom:45px;
}

.cat-overlay h3{
    color:#fff;
    font-size:35px;
    margin-bottom:20px;
}

.cat-overlay a{
    text-decoration:none;
    background:#d7b16a;
    color:#071b38;
    padding:13px 35px;
    border-radius:40px;
    font-weight:bold;
    transition:.4s;
}

.cat-overlay a:hover{
    transform:translateY(-5px);
}

/*=============================
Features
==============================*/

.features{
    background:#071b38;
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:30px;
}

.feature{
    text-align:center;
    color:#fff;
}

.feature i{
    color:#d7b16a;
    font-size:45px;
    margin-bottom:20px;
}

.feature h3{
    margin-bottom:10px;
    font-size:25px;
}

.feature p{
    color:#ccc;
}

/*=============================
Products
==============================*/

.products{
    padding:110px 8%;
    background:#f8f8f8;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:35px;
}

.card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    text-align:center;
    transition:.45s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.card img{
    width:100%;
    height:360px;
    object-fit:cover;
    transition:.5s;
}

.card:hover img{
    transform:scale(1.08);
}

.card h3{
    margin-top:25px;
    font-size:26px;
    color:#071b38;
}

.card span{
    display:block;
    color:#d7b16a;
    font-size:23px;
    font-weight:bold;
    margin:15px 0;
}

.card button{
    width:85%;
    margin-bottom:25px;
    border:none;
    background:#071b38;
    color:white;
    padding:15px;
    border-radius:50px;
    cursor:pointer;
    font-size:17px;
    transition:.4s;
}

.card button:hover{
    background:#d7b16a;
    color:#071b38;
}

/*=============================
Offer Banner
==============================*/

.offer{
    height:500px;
    background:url(offer.jpg) center/cover;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.offer::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.offer-content{
    position:relative;
    text-align:center;
    color:#fff;
}

.offer-content h2{
    font-size:65px;
    margin-bottom:15px;
}

.offer-content p{
    font-size:26px;
    margin-bottom:35px;
}

.offer-content a{
    display:inline-block;
    text-decoration:none;
    background:#d7b16a;
    color:#071b38;
    padding:18px 55px;
    border-radius:50px;
    font-weight:bold;
    transition:.4s;
}

.offer-content a:hover{
    transform:translateY(-5px);
}
/*=============================
ABOUT
==============================*/

.about{
    padding:110px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(450px,1fr));
    gap:70px;
    align-items:center;
    background:#fff;
}

.about-text h2{
    font-size:50px;
    color:#071b38;
    margin-bottom:25px;
}

.about-text p{
    font-size:19px;
    line-height:2.2;
    color:#666;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 25px 50px rgba(0,0,0,.12);
    transition:.5s;
}

.about-image img:hover{
    transform:scale(1.03);
}

/*=============================
NEWSLETTER
==============================*/

.newsletter{
    padding:100px 8%;
    background:#071b38;
    text-align:center;
    color:#fff;
}

.newsletter h2{
    font-size:50px;
    margin-bottom:15px;
}

.newsletter p{
    font-size:20px;
    margin-bottom:35px;
    color:#ddd;
}

.subscribe{
    max-width:700px;
    margin:auto;
    display:flex;
    background:#fff;
    border-radius:60px;
    overflow:hidden;
}

.subscribe input{
    flex:1;
    border:none;
    padding:22px;
    font-size:18px;
    outline:none;
}

.subscribe button{
    width:180px;
    border:none;
    background:#d7b16a;
    color:#071b38;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.4s;
}

.subscribe button:hover{
    background:#c79b47;
}

/*=============================
FOOTER
==============================*/

footer{
    background:#041124;
    color:#fff;
    padding-top:70px;
}

.footer-grid{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:45px;
    padding-bottom:50px;
}

.footer-logo{
    width:150px;
    margin-bottom:20px;
}

.footer-grid h3{
    color:#d7b16a;
    margin-bottom:20px;
}

.footer-grid a{
    display:block;
    text-decoration:none;
    color:#ccc;
    margin:12px 0;
    transition:.3s;
}

.footer-grid a:hover{
    color:#d7b16a;
    transform:translateX(-8px);
}

.footer-grid p{
    color:#bbb;
    line-height:2;
}

.copy{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px;
    color:#999;
}

/*=============================
Scrollbar
==============================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#051328;
}

::-webkit-scrollbar-thumb{
    background:#d7b16a;
    border-radius:20px;
}

/*=============================
Animation
==============================*/

.card,
.category,
.feature,
.about-image img{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

from{
    opacity:0;
    transform:translateY(40px);
}

to{
    opacity:1;
    transform:translateY(0);
}

}

/*=============================
Responsive
==============================*/

@media(max-width:991px){

.navbar{
    padding:18px 25px;
}

.nav-links{
    display:none;
}

.hero h1{
    font-size:42px;
}

.hero p{
    font-size:18px;
}

.title h2{
    font-size:34px;
}

.offer-content h2{
    font-size:42px;
}

.offer-content p{
    font-size:20px;
}

.about{
    grid-template-columns:1fr;
}

.subscribe{
    flex-direction:column;
    border-radius:20px;
}

.subscribe input{
    width:100%;
}

.subscribe button{
    width:100%;
    height:60px;
}

}

@media(max-width:768px){

.hero{
    height:90vh;
}

.hero-logo{
    width:120px;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:17px;
}

.btn,
.btn2{
    width:100%;
}

.card img{
    height:300px;
}

.category{
    height:320px;
}

.offer{
    height:350px;
}

.offer-content h2{
    font-size:34px;
}

.newsletter h2{
    font-size:34px;
}

.about-text h2{
    font-size:35px;
}

}
/* ============================
   HERO FIX
============================ */

.hero{

    height:100vh !important;
    min-height:900px;

    background-size:contain !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
    background-color:#000 !important;

    display:flex;
    justify-content:center;
    align-items:center;

}

.hero::before{

    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);

}

.hero-content{

    position:relative;
    z-index:5;

    width:100%;
    max-width:900px;

    margin:auto;
    text-align:center;

}

.hero-logo{

    display:none !important;

}

/* شاشة اللابتوب الكبيرة */

@media (min-width:1600px){

.hero{

    background-size:100% auto !important;

}

}

/* الشاشات المتوسطة */

@media (max-width:1200px){

.hero{

    background-size:cover !important;

}

}

/* الموبايل */

@media (max-width:768px){

.hero{

    background-size:cover !important;
    min-height:700px;

}

.hero h1{

    font-size:42px !important;

}

.hero p{

    font-size:18px !important;

}

}
/*=========================
      OFFER SECTION
=========================*/

.offer{

    position:relative;
    padding:120px 20px;
    overflow:hidden;

    background:linear-gradient(135deg,#061528 0%,#0b2343 60%,#102b52 100%) !important;

}

.offer::before{

    content:"";
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(215,177,106,.18),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(255,255,255,.05),
    transparent 30%);

}

.offer-content{

    position:relative;
    z-index:2;
    text-align:center;

}

.offer-content h2{

    font-size:72px;
    font-weight:900;
    color:#fff;
    margin-bottom:20px;

}

.offer-content h2 span{

    color:#d7b16a;

}

.offer-content p{

    color:#d5d5d5;
    font-size:24px;
    margin-bottom:45px;

}

.offer-content a{

    display:inline-block;

    padding:18px 60px;

    border-radius:60px;

    text-decoration:none;

    background:#d7b16a;

    color:#071b38;

    font-size:20px;

    font-weight:bold;

    transition:.4s;

    box-shadow:0 15px 35px rgba(215,177,106,.35);

}

.offer-content a:hover{

    transform:translateY(-8px);

    background:#e5c27b;

    box-shadow:0 25px 45px rgba(215,177,106,.55);

}

/* خط ذهبي أعلى وأسفل السيكشن */

.offer::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:2px;

    background:linear-gradient(to right,
    transparent,
    #d7b16a,
    transparent);

}
/*==========================
        ABOUT SECTION
==========================*/

.about{

    padding:120px 8% !important;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    background:#fafafa;

}

.about-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.about-image img{

    width:75% !important;

    max-width:420px;

    background:#fff;

    padding:25px;

    border-radius:25px;

    border:2px solid #d7b16a;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.5s;

}

.about-image img:hover{

    transform:scale(1.05) rotate(-2deg);

    box-shadow:0 35px 70px rgba(0,0,0,.18);

}

.about-text{

    padding:30px;

}

.about-text h2{

    font-size:58px;

    color:#071b38;

    margin-bottom:25px;

    font-weight:900;

}

.about-text h2::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    background:#d7b16a;

    margin-top:15px;

    border-radius:10px;

}

.about-text p{

    font-size:22px;

    line-height:2.2;

    color:#666;

    max-width:650px;

}

/* Responsive */

@media(max-width:991px){

.about{

    grid-template-columns:1fr;

    text-align:center;

}

.about-text h2::after{

    margin:15px auto;

}

.about-image img{

    width:85% !important;

}

}
/*==============================
      PREMIUM EFFECTS
==============================*/

/* خلفية الموقع */
body{
    background:#f8f9fc;
}

/* انتقالات ناعمة */
*{
    transition:.35s ease;
}

/* الناف بار */
header{
    backdrop-filter:blur(18px);
    box-shadow:0 10px 35px rgba(0,0,0,.15);
}

/* جميع الأزرار */
button,
.btn,
.btn2{

    border-radius:50px !important;

    transition:.4s;

    font-weight:bold;

}

button:hover,
.btn:hover,
.btn2:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(0,0,0,.18);

}

/* الكروت */

.card,
.category,
.feature{

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.card:hover,
.category:hover,
.feature:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.18);

}

/* الصور */

img{

    transition:.5s;

}

.card:hover img,
.category:hover img,
.about-image:hover img{

    transform:scale(1.06);

}

/* العناوين */

h1,h2,h3{

    letter-spacing:.5px;

}

/* خط ذهبي أسفل كل عنوان */

.title h2::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    margin:15px auto 0;

    border-radius:20px;

    background:#d7b16a;

}

/* السيكشنات */

section{

    padding-top:90px;

    padding-bottom:90px;

}

/* حركة بسيطة عند فتح الصفحة */

.hero-content{

    animation:fadeUp 1s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* Scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#d7b16a;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#061528;

}
/*=========================
      LUXURY LOADER
=========================*/

#loader{

    position:fixed;
    inset:0;
    background:linear-gradient(135deg,#061528,#091f3d,#0f2d56);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
    transition:1s;
}

.loader-content{

    text-align:center;
}

.loader-logo{

    width:150px;
    animation:logoZoom 1.5s infinite alternate;
}

.loader-line{

    width:220px;
    height:4px;
    background:rgba(255,255,255,.15);
    margin:35px auto;
    border-radius:20px;
    overflow:hidden;
}

.loader-line span{

    display:block;
    width:0;
    height:100%;
    background:linear-gradient(90deg,#d7b16a,#fff,#d7b16a);
    animation:loading 2s linear forwards;

}

.loader-content p{

    color:#d7b16a;
    letter-spacing:5px;
    font-size:18px;
}

@keyframes loading{

0%{width:0;}

100%{width:100%;}

}

@keyframes logoZoom{

from{

transform:scale(.9);

}

to{

transform:scale(1.08);

}

}

/* اختفاء */

#loader.hide{

    opacity:0;
    visibility:hidden;

}

/* دخول الموقع */

body{
    animation: siteFade .8s ease;
}

@keyframes siteFade{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
#loader{
    position:fixed;
    inset:0;
    background:linear-gradient(135deg,#061528,#091f3d,#0f2d56);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
    transition:.8s;
}

#loader.hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}
/*=========================
     HERO LEFT CONTENT
=========================*/

.hero-content{

    width:100%;
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    height:100%;

}

.hero-left{

    max-width:520px;
    color:#fff;
    margin-left:90px;
    text-align:left;

}

.hero-subtitle{

    color:#d7b16a;
    font-size:18px;
    letter-spacing:6px;
    margin-bottom:20px;

}

.hero-left h1{

    font-size:78px;
    font-weight:900;
    line-height:1.1;
    margin-bottom:30px;

}

.hero-left p{

    font-size:22px;
    line-height:1.8;
    color:#ddd;
    margin-bottom:40px;

}

.hero-left .btn{

    padding:18px 55px;
    border-radius:50px;

}

@media(max-width:991px){

.hero-content{

    justify-content:center;

}

.hero-left{

    margin:0;
    text-align:center;
    padding:20px;

}

.hero-left h1{

    font-size:48px;

}

.hero-left p{

    font-size:18px;

}

}
/*=========================
    HERO LEFT FIX
=========================*/

.hero{
    position: relative;
}

.hero-content{

    width:100% !important;
    max-width:1400px !important;
    height:100%;

    display:flex !important;
    justify-content:flex-start !important;
    align-items:center !important;

    direction:ltr !important;

    padding-left:8% !important;
    padding-right:0 !important;

}

.hero-left{

    width:550px !important;

    margin:0 !important;

    text-align:left !important;

    color:#fff;

    z-index:10;

}

.hero-left h1{

    font-size:78px;
    line-height:1.08;
    font-weight:900;
    margin:20px 0;

}

.hero-left p{

    font-size:22px;
    line-height:1.8;
    color:#ddd;
    margin-bottom:35px;

}

.hero-subtitle{

    color:#d7b16a;
    letter-spacing:6px;
    font-size:18px;
    margin-bottom:20px;

}

.hero-left .btn{

    display:inline-block;
    padding:18px 55px;
    border-radius:50px;

}

/* الموبايل */

@media(max-width:991px){

.hero-content{

    direction:rtl !important;
    justify-content:center !important;
    padding:20px !important;

}

.hero-left{

    width:100% !important;
    text-align:center !important;

}

.hero-left h1{

    font-size:48px;

}

.hero-left p{

    font-size:18px;

}

}
/*=========================
    WHITE NAVBAR
=========================*/

header,
.navbar{

    background:#ffffff !important;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.nav-links a{

    color:#061528 !important;

    font-weight:700;

}

.nav-links a:hover{

    color:#d7b16a !important;

}

.icons i{

    color:#061528 !important;

    transition:.3s;

}

.icons i:hover{

    color:#d7b16a !important;
    transform:translateY(-3px);

}

.logo img{

    height:65px;
    width:auto;
    object-fit:contain;

}
/*=========================
      LUXURY COLORS
=========================*/

:root{

    --primary:#0b2343;
    --gold:#d7b16a;
    --cream:#f8f5ef;
    --light:#ffffff;

}

/* Loader */

#loader{

    background:linear-gradient(135deg,#f8f5ef,#ffffff) !important;

}

/* Navbar */

header,
.navbar{

    background:#f8f5ef !important;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

/* روابط */

.nav-links a{

    color:#0b2343 !important;

}

/* الأيقونات */

.icons i{

    color:#0b2343 !important;

}

/* Hover */

.nav-links a:hover,
.icons i:hover{

    color:#d7b16a !important;

}
/*==============================
        PREMIUM HERO
==============================*/

.hero{

    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url(hero.jpeg);

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}

.hero-container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

.hero-text{

    width:48%;

    color:#fff;

}

.small-title{

    color:#d7b16a;

    letter-spacing:6px;

    font-size:15px;

}

.hero h1{

    font-family:Georgia,serif;

    font-size:82px;

    line-height:1.05;

    margin:20px 0;

    font-weight:500;

}

.hero-line{

    width:70px;

    height:3px;

    background:#d7b16a;

    margin:35px 0;

}

.hero p{

    font-size:22px;

    color:#ddd;

    line-height:1.8;

    max-width:520px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:45px;

}

.btn-main{

    padding:18px 35px;

    border:1px solid #fff;

    color:#fff;

    text-decoration:none;

}

.btn-main:hover{

    background:#fff;

    color:#111;

}

.btn-outline{

    padding:18px 35px;

    border:1px solid #666;

    color:#fff;

    text-decoration:none;

}

.btn-outline:hover{

    border-color:#d7b16a;

    background:#d7b16a;

    color:#111;

}

.hero-social{

    display:flex;

    gap:25px;

    margin-top:70px;

}

.hero-social i{

    font-size:22px;

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.hero-social i:hover{

    color:#d7b16a;

    transform:translateY(-5px);

}
/* ================= HERO FIX ================= */

.hero{
    position:relative;
}

.hero-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.hero-text{

    width:520px;

    margin-left:8%;

    margin-right:auto;

    text-align:left;

    direction:ltr;

    position:relative;

    z-index:10;

}

.hero h1{

    font-size:72px;

    line-height:1.05;

    margin:20px 0;

}

.hero p{

    max-width:500px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.btn-main,
.btn-outline{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:220px;

    height:60px;

    text-decoration:none;

    cursor:pointer;

}

.btn-main{

    background:#d7b16a;

    color:#061528;

    border:none;

}

.btn-outline{

    border:2px solid #fff;

    color:#fff;

    background:transparent;

}

.btn-main:hover{

    background:#fff;

}

.btn-outline:hover{

    background:#fff;

    color:#061528;

}

@media(max-width:991px){

.hero-container{

    justify-content:center;

}

.hero-text{

    width:90%;

    margin:0;

    text-align:center;

}

.hero-buttons{

    justify-content:center;

    flex-wrap:wrap;

}

}
/* تكبير لوجو الناف بار */

.logo img{

    width:300px !important;
    height:auto !important;

}
/* =========================
      LOADER CENTER FIX
========================= */

#loader{

    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#f8f5ef;

    z-index:999999;

}

.loader-content{

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    width:100%;

}

.loader-logo{

    width:220px !important;
    height:auto;

    margin-bottom:40px;

}

.loader-line{

    width:180px;
    height:4px;

    margin:25px auto;

}

.loader-content p{

    margin-top:20px;

    font-size:26px;

    letter-spacing:6px;

    color:#c89b45;

}
/* ===========================
   Navbar Layout
=========================== */

.navbar{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 70px;
}

/* اللوجو */

.logo{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 100;
}

.logo img{
    width: 220px;
    display: block;
}

/* القائمة يمين */

.nav-links{
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;

    order: 1;
    margin-left: auto;
}

.nav-links a{
    font-size: 25px;
    font-weight: 700;
    color: #0d2345;
    text-decoration: none;
}

/* الأيقونات شمال */

.icons{
    display: flex;
    align-items: center;
    gap: 28px;

    order: 3;
    margin-right: auto;
}

.icons i{
    font-size: 30px;
    color: #0d2345;
    cursor: pointer;
}
/*=========================
        LOADER
=========================*/

#loader{
    position: fixed;
    inset: 0;
    background: #f8f6f1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: .8s;
}

.loader-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loader-logo{
    width: 220px;
    display: block;
    margin: 0 auto 35px;
}

.loader-line{
    width: 170px;
    height: 3px;
    background: rgba(194,155,79,.25);
    border-radius: 50px;
    overflow: hidden;
    margin: 0 auto 28px;
}

.loader-line span{
    display: block;
    width: 70px;
    height: 100%;
    background: linear-gradient(90deg,#c29b4f,#f4e4b3,#c29b4f);
    animation: loading 1.2s linear infinite;
}

.loader-content p{
    margin: 0;
    font-size: 28px;
    letter-spacing: 6px;
    color: #c29b4f;
    font-weight: 500;
    text-align: center;
}

#loader.hide{
    opacity: 0;
    visibility: hidden;
}

@keyframes loading{

    0%{
        transform: translateX(-120px);
    }

    100%{
        transform: translateX(220px);
    }

}
/* Loader */

#loader{
    position: fixed;
    inset: 0;
    background: #ffffff; /* أبيض بالكامل */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: .8s;
}

.loader-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loader-logo{
    width: 230px;
    display: block;
    margin-bottom: 35px;
    background: transparent;
}

.loader-line{
    width: 180px;
    height: 3px;
    background: #e9e9e9;
    border-radius: 50px;
    overflow: hidden;
    margin: 20px auto;
}

.loader-line span{
    display: block;
    width: 70px;
    height: 100%;
    background: #caa04d;
    animation: loading 1.2s linear infinite;
}

.loader-content p{
    color: #caa04d;
    font-size: 20px;
    letter-spacing: 6px;
    margin-top: 20px;
}

#loader.hide{
    opacity: 0;
    visibility: hidden;
}

@keyframes loading{
    from{
        transform: translateX(-120px);
    }
    to{
        transform: translateX(220px);
    }
}
/* ===========================
      Navbar New Layout
=========================== */

.navbar{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 70px;
}

/* اللوجو في المنتصف */

.logo{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 100;
}

.logo img{
    width: 220px;
    display: block;
}

/* القائمة مكان اللوجو (يمين) */

.nav-links{
    display: flex;
    align-items: center;
    gap: 45px;

    margin-right: 0;
    margin-left: auto;

    padding-left: 320px; /* يبعدها عن اللوجو */
}

.nav-links li{
    list-style: none;
}

.nav-links a{
    color: #0d2345;
    text-decoration: none;
    font-size: 25px;
    font-weight: 700;
    transition: .3s;
}

.nav-links a:hover{
    color:#c7a35c;
}

/* الأيقونات شمال */

.icons{
    display:flex;
    align-items:center;
    gap:28px;

    margin-right:auto;
}

.icons i{
    font-size:30px;
    color:#0d2345;
    cursor:pointer;
    transition:.3s;
}

.icons i:hover{
    color:#c7a35c;
}
/* ===========================
      Professional Navbar
=========================== */

.navbar{
    height: 110px;
    padding: 0 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    position: relative;
    z-index: 999;
}

/* اللوجو */

.logo{
    position: absolute;
    left: 50%;
top: 60%;
    transform: translate(-50%,-50%);
    z-index: 100;
}

.logo img{
    width: 240px;
    transition: .4s;
}

/* القائمة */

.nav-links{
    display: flex;
    gap: 45px;
    margin-left: auto;
    padding-left: 320px;
}

.nav-links a{
    font-size: 24px;
    font-weight: 700;
    color: #0b2347;
}

/* الأيقونات */

.icons{
    display: flex;
    align-items: center;
    gap: 30px;
}

.icons i{
    font-size: 30px;
    color: #0b2347;
}
/* تكبير اللوجو */

.logo img{
    width: 600px !important;
    height: auto;
    transition: .3s ease;
}
.price{
    display:block;
    margin:12px 0;
    font-size:22px;
    font-weight:700;
    color:#c8a45d;
}

.colors{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin:15px 0 20px;
    font-size:15px;
    color:#555;
}

.color{
    width:18px;
    height:18px;
    border-radius:50%;
    border:2px solid #ddd;
    display:inline-block;
}

.color.black{
    background:#000;
}

.color.offwhite{
    background:#f7f4ec;
}

.color.grey{
    background:#9a9a9a;
}
.colors{
    display:flex;
    gap:12px;
    margin:20px 0;
}

.color-btn{
    padding:10px 20px;
    border:1px solid #c8a96a;
    background:#fff;
    color:#111;
    cursor:pointer;
    border-radius:30px;
    transition:.3s;
}

.color-btn.active,
.color-btn:hover{
    background:#c8a96a;
    color:#fff;
}

.gallery{
    text-align:center;
}

#mainImage{
    width:340px;
    border-radius:12px;
}

.thumbs{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:15px;
}

.thumbs img{
    width:75px;
    height:90px;
    object-fit:cover;
    cursor:pointer;
    border:2px solid transparent;
    border-radius:8px;
    transition:.3s;
}

.thumbs img:hover{
    border-color:#c8a96a;
    transform:scale(1.05);
}
.product-colors{
    display:flex;
    justify-content:center;
    gap:12px;
    margin:18px 0;
}

.color{
    width:22px;
    height:22px;
    border-radius:50%;
    border:2px solid #ddd;
    cursor:pointer;
    transition:.3s;
}

.color:hover{
    transform:scale(1.2);
}

.color.active{
    border:3px solid #c8a96a;
    transform:scale(1.25);
}

.product-img{
    width:100%;
    height:360px;
    object-fit:cover;
    transition:.4s;
}
.thumbs{
    display:flex;
    justify-content:center;
    gap:10px;
    margin:15px 0;
    overflow-x:auto;
    padding-bottom:5px;
}

.thumbs img{
    width:70px;
    height:90px;
    object-fit:cover;
    border:2px solid #ddd;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.thumbs img:hover{
    border-color:#c9a44c;
    transform:scale(1.08);
}

.product-colors{
    display:flex;
    justify-content:center;
    gap:12px;
    margin:15px 0;
}

.product-colors .color{
    width:22px;
    height:22px;
    border-radius:50%;
    cursor:pointer;
    border:2px solid #ddd;
}

.product-colors .active{
    border:3px solid #c9a44c;
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    margin-bottom:20px;
}

.gallery-grid img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:10px;
    transition:.3s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}
.products{
    padding:90px 8%;
    background:#fff;
}

.section-title{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
    color:#111;
    letter-spacing:3px;
}

.products-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;

}

.product-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.product-image{

    overflow:hidden;

}

.product-image img{

    width:100%;
    height:420px;
    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-info{

    padding:25px;
    text-align:center;

}

.product-info h3{

    font-size:26px;
    color:#111;
    margin-bottom:15px;

}

.price{

    display:block;
    font-size:22px;
    font-weight:bold;
    color:#b8860b;
    margin-bottom:25px;

}

.order-btn{

    display:inline-block;

    padding:14px 40px;

    background:#111;
    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:18px;

    transition:.3s;

}

.order-btn:hover{

    background:#d4af37;
    color:#000;

}
.product-slider{
    position:relative;
    width:100%;
    height:420px;
    overflow:hidden;
}

.product-slider .slide{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity .8s ease;

}

.product-slider .slide.active{

    opacity:1;

}
/* ===== Product Card ===== */

.product-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 35px rgba(0,0,0,.15);

}

.product-slider{

    position:relative;

    width:100%;

    height:330px;   /* كان كبير */

    overflow:hidden;

    background:#f8f8f8;

}

.product-slider .slide{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity .8s;

}

.product-slider .slide.active{

    opacity:1;

}

.product-info{

    padding:20px;

    text-align:center;

}

.product-info h3{

    font-size:30px;

    margin-bottom:10px;

}

.price{

    display:block;

    color:#b8860b;

    font-size:24px;

    font-weight:bold;

    margin-bottom:20px;

}

.order-btn{

    display:block;

    width:100%;

    padding:15px;

    background:#111;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    transition:.3s;

}

.order-btn:hover{

    background:#d4af37;

    color:#000;

}
/* ===========================
   PRODUCT CARD OVERRIDE
   =========================== */

.products{
    width:100% !important;
    padding:80px 20px !important;
    display:flex !important;
    justify-content:center !important;
}

.products-grid{
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
}

.product-card{
    width:520px !important;
    max-width:100% !important;

    background:#fff !important;

    border-radius:20px !important;

    overflow:hidden !important;

    box-shadow:0 15px 35px rgba(0,0,0,.12) !important;

    margin:auto !important;
}

/* الصورة */
.product-image,
.product-slider{
    width:100% !important;
    height:520px !important;

    overflow:hidden !important;

    background:#f8f8f8 !important;
}

.product-image img,
.product-slider img{
    width:100% !important;
    height:100% !important;

    object-fit:cover !important;

    display:block !important;
}

/* معلومات المنتج */

.product-info{
    padding:30px !important;

    text-align:center !important;
}

.product-info h3{
    font-size:34px !important;

    margin-bottom:15px !important;
}

.product-info .price{
    display:block !important;

    font-size:30px !important;

    color:#c9a44d !important;

    font-weight:bold !important;

    margin-bottom:25px !important;
}

/* الزر */

.order-btn{
    display:block !important;

    width:100% !important;

    padding:18px !important;

    border-radius:50px !important;

    background:#0d2147 !important;

    color:#fff !important;

    text-decoration:none !important;

    font-size:20px !important;

    font-weight:bold !important;

    transition:.3s;
}

.order-btn:hover{
    background:#c9a44d !important;
    color:#000 !important;
}
/* ===== Products Section Fix ===== */

.products{

    width:100% !important;

    padding:80px 5% !important;

}

.section-title{

    text-align:center !important;

    font-size:45px !important;

    margin-bottom:50px !important;

    color:#111 !important;

}

.products-grid{

    display:grid !important;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr)) !important;

    gap:35px !important;

    justify-items:center !important;

    align-items:start !important;

}

.product-card{

    width:100% !important;

    max-width:380px !important;

    background:#fff !important;

    border-radius:20px !important;

    overflow:hidden !important;

    box-shadow:0 10px 30px rgba(0,0,0,.12) !important;

}

.product-slider,
.product-image{

    width:100% !important;

    height:420px !important;

    overflow:hidden !important;

}

.product-slider img,
.product-image img{

    width:100% !important;

    height:100% !important;

    object-fit:cover !important;

    display:block !important;

}

.product-info{

    padding:25px !important;

    text-align:center !important;

}

.order-btn{

    display:block !important;

    width:100% !important;

    text-align:center !important;

}
/* ===========================
   FORCE PRODUCTS LAYOUT
   =========================== */

.products{

    display:block !important;

    width:100% !important;

    max-width:1400px !important;

    margin:80px auto !important;

    padding:0 20px !important;

}

.section-title{

    display:block !important;

    width:100% !important;

    text-align:center !important;

    margin:0 0 60px !important;

    font-size:46px !important;

    color:#111 !important;

}

.products-grid{

    display:flex !important;

    justify-content:center !important;

    align-items:flex-start !important;

    flex-wrap:wrap !important;

    width:100% !important;

    gap:40px !important;

}

.product-card{

    flex:none !important;

    width:420px !important;

    max-width:420px !important;

    min-width:420px !important;

    margin:0 !important;

    background:#fff !important;

    border-radius:20px !important;

    overflow:hidden !important;

    box-shadow:0 15px 40px rgba(0,0,0,.12) !important;

}

.product-slider{

    position:relative !important;

    width:100% !important;

    height:420px !important;

    overflow:hidden !important;

}

.product-slider .slide{

    position:absolute !important;

    inset:0 !important;

    width:100% !important;

    height:100% !important;

    object-fit:cover !important;

}

.product-info{

    padding:25px !important;

    text-align:center !important;

}

.order-btn{

    display:block !important;

    width:100% !important;

}
/* ===== Fix Product Image ===== */

.product-slider{
    height:420px !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    background:#8b0b08 !important; /* نفس لون الخلفية */
}

.product-slider .slide{

    position:absolute !important;
    inset:0 !important;

    width:100% !important;
    height:100% !important;

    object-fit:contain !important; /* أهم سطر */

    padding:15px !important;

    background:#8b0b08 !important;
}
.product-slider .slide{
    object-fit:scale-down !important;
}
/* ===== Premium Product Card ===== */

.product-card{

    background:#fff;
    border-radius:24px;
    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.4s;

    border:1px solid #ececec;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.product-slider{

    position:relative;
    overflow:hidden;
    background:#fafafa;

}

.product-slider img{

    transition:transform .8s ease;

}

.product-card:hover .product-slider img{

    transform:scale(1.08);

}

.product-info{

    padding:28px;

    text-align:center;

}

.product-info h3{

    font-size:36px;

    font-weight:700;

    color:#111;

    margin-bottom:15px;

}

.price{

    display:block;

    font-size:30px;

    color:#c8a45d;

    font-weight:700;

    margin-bottom:25px;

}

.order-btn{

    display:block;

    width:100%;

    padding:16px;

    background:#0b2345;

    color:#fff;

    text-align:center;

    text-decoration:none;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    letter-spacing:1px;

    transition:.35s;

}

.order-btn:hover{

    background:#c8a45d;

    color:#111;

    transform:translateY(-3px);

}

/* خط ذهبي أعلى الكارت */

.product-card::before{

    content:"";

    display:block;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#c8a45d,#f3dfaa,#c8a45d);

}
/* ===== REMOVE RED EDGES ===== */

.product-slider{

    overflow:hidden !important;

    background:#fff !important;

}

.product-slider .slide{

    position:absolute !important;

    inset:0 !important;

    width:100% !important;

    height:100% !important;

    object-fit:cover !important;

    object-position:center center !important;

    transform:scale(1.12) !important;

    padding:0 !important;

    margin:0 !important;

    border:none !important;

    background:none !important;

}
/*==========================
   PRODUCT CARD FINAL FIX
==========================*/

.product-card{

    width:420px !important;
    background:#fff !important;

    border-radius:22px !important;

    overflow:hidden !important;

    box-shadow:0 15px 40px rgba(0,0,0,.12) !important;

    transition:.35s !important;

    margin:auto !important;

}

.product-card:hover{

    transform:translateY(-8px) !important;

    box-shadow:0 25px 55px rgba(0,0,0,.18) !important;

}

/* صندوق الصورة */

.product-slider{

    position:relative !important;

    width:100% !important;

    height:520px !important;

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;

    overflow:hidden !important;

    background:#fff !important;

}

/* الصورة */

.product-slider .slide{

    position:absolute !important;

    inset:0 !important;

    width:100% !important;

    height:100% !important;

    object-fit:contain !important;      /* يظهر الصورة كاملة */

    object-position:center center !important;

    padding:15px !important;

    opacity:0;

    transition:opacity .8s ease;

}

.product-slider .slide.active{

    opacity:1;

}

/* معلومات المنتج */

.product-info{

    padding:25px !important;

    text-align:center !important;

}

.product-info h3{

    font-size:32px !important;

    color:#111 !important;

    margin-bottom:12px !important;

}

.price{

    display:block !important;

    color:#c9a44d !important;

    font-size:28px !important;

    font-weight:700 !important;

    margin-bottom:22px !important;

}

/* الزر */

.order-btn{

    display:block !important;

    width:100% !important;

    padding:16px !important;

    background:#0b2345 !important;

    color:#fff !important;

    text-align:center !important;

    border-radius:50px !important;

    font-size:18px !important;

    font-weight:bold !important;

    transition:.3s;

}

.order-btn:hover{

    background:#c9a44d !important;

    color:#111 !important;

}
.option-box{
    margin-top:35px;
}

.option-box h3{
    font-size:20px;
    margin-bottom:15px;
    color:#111;
}

.sizes{
    display:flex;
    gap:15px;
}

.size{
    width:70px;
    height:50px;
    border:2px solid #ddd;
    background:#fff;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
}

.size:hover,
.size.active{
    background:#0b2345;
    color:#fff;
    border-color:#0b2345;
}

.colors{
    display:flex;
    gap:18px;
}

.color{
    width:42px;
    height:42px;
    border-radius:50%;
    cursor:pointer;
    border:3px solid transparent;
}

.color.active{
    border-color:#caa04d;
}

.black{
    background:#111;
}

.white{
    background:#f5f5f5;
    border:1px solid #ddd;
}

.grey{
    background:#8d8d8d;
}

.quantity{
    display:flex;
    align-items:center;
    gap:20px;
}

.quantity button{
    width:45px;
    height:45px;
    border:none;
    background:#0b2345;
    color:#fff;
    border-radius:10px;
    cursor:pointer;
    font-size:22px;
}

.quantity span{
    font-size:24px;
    font-weight:bold;
}

.buy-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    width:100%;
    margin-top:40px;
    padding:18px;
    background:#0b2345;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:22px;
    font-weight:700;
    transition:.3s;
}

.buy-btn:hover{
    background:#caa04d;
    color:#111;
}

.features{
    display:flex;
    justify-content:space-between;
    margin-top:40px;
    gap:20px;
}

.feature{
    flex:1;
    text-align:center;
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature i{
    font-size:28px;
    color:#caa04d;
    margin-bottom:12px;
    display:block;
}

.feature span{
    font-weight:600;
}
.price-box{
    display:flex;
    align-items:center;
    gap:12px;
    margin:15px 0;
}

.new-price{
    font-size:30px;
    font-weight:800;
    color:#111;
}

.old-price{
    font-size:20px;
    color:#999;
    text-decoration:line-through;
}

.discount{
    background:#d6001c;
    color:#fff;
    padding:4px 10px;
    border-radius:5px;
    font-size:13px;
    font-weight:bold;
}

.offer-text{
    color:#0b8a3b;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
}
/* ===========================
   HERO FINAL FIX
=========================== */

header{
    height:110px;
}

.hero{

    margin-top:110px !important;

    height:calc(100vh - 110px) !important;

    min-height:700px !important;

    background-position:center center !important;

    background-size:cover !important;

    background-repeat:no-repeat !important;

    display:flex !important;

    align-items:center !important;

    overflow:hidden !important;

}

.hero-container{

    width:90% !important;

    max-width:1400px !important;

    margin:auto !important;

    height:100% !important;

    display:flex !important;

    align-items:center !important;

}

.hero-text{

    max-width:560px !important;

    z-index:5;

}
/* ===========================
   HERO IMAGE FULL VIEW
=========================== */

.hero{

    background-size:contain !important;

    background-repeat:no-repeat !important;

    background-position:center center !important;

    background-color:#000 !important;

    height:100vh !important;

}
/* ===========================
   Features Section Upgrade
=========================== */

.features{

    background:#071f45 !important;

    padding:70px 8% !important;

}

.features-container{

    display:grid !important;

    grid-template-columns:repeat(4,1fr) !important;

    gap:25px !important;

    max-width:1300px;

    margin:auto;

}

.feature-card{

    background:#fff !important;

    border-radius:18px !important;

    padding:35px 25px !important;

    min-height:180px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.18);

}

.feature-card i{

    font-size:42px !important;

    color:#c79a3b !important;

    margin-bottom:22px;

}

.feature-card h3{

    font-size:24px;

    color:#111;

    margin-bottom:12px;

}

.feature-card p{

    color:#666;

    font-size:15px;

    line-height:1.8;

}

@media(max-width:991px){

.features-container{

grid-template-columns:repeat(2,1fr)!important;

}

}

@media(max-width:600px){

.features-container{

grid-template-columns:1fr!important;

}

}
/* ===========================
   Features Text Fix
=========================== */

.feature-card h3{
    color:#0b2345 !important;
    font-size:22px !important;
    font-weight:700 !important;
}

.feature-card p{
    color:#444 !important;
    font-size:15px !important;
    font-weight:500 !important;
    line-height:1.8 !important;
}

.feature-card i{
    color:#c79a3b !important;
    font-size:40px !important;
}

.feature-card{
    background:#ffffff !important;
    border:1px solid #e9e9e9 !important;
}
/* ======================================
   FEATURES SECTION - FORCE OVERRIDE
====================================== */

.features{

display:grid !important;

grid-template-columns:repeat(4,1fr) !important;

gap:25px !important;

padding:70px 8% !important;

background:#0b2345 !important;

margin:0 !important;

}

.features .feature{

background:#fff !important;

border-radius:18px !important;

padding:35px 25px !important;

text-align:center !important;

display:flex !important;

flex-direction:column !important;

justify-content:center !important;

align-items:center !important;

min-height:220px !important;

border:1px solid rgba(255,255,255,.08) !important;

box-shadow:0 15px 35px rgba(0,0,0,.12) !important;

transition:.35s ease !important;

}

.features .feature:hover{

transform:translateY(-10px) !important;

box-shadow:0 25px 50px rgba(0,0,0,.22) !important;

}

.features .feature i{

font-size:42px !important;

color:#c79a3b !important;

margin-bottom:22px !important;

}

.features .feature h3{

font-size:24px !important;

font-weight:700 !important;

color:#0b2345 !important;

margin:0 0 12px !important;

line-height:1.4 !important;

}

.features .feature p{

font-size:17px !important;

font-weight:600 !important;

color:#555 !important;

margin:0 !important;

line-height:1.8 !important;

opacity:1 !important;

visibility:visible !important;

}

@media(max-width:992px){

.features{

grid-template-columns:repeat(2,1fr) !important;

}

}

@media(max-width:768px){

.features{

grid-template-columns:1fr !important;

padding:50px 20px !important;

}

.features .feature{

min-height:180px !important;

}

}
/* ======================================
   MOBILE PREMIUM FIX
====================================== */

@media (max-width:768px){

/* NAVBAR */

.navbar{

display:flex !important;

justify-content:space-between !important;

align-items:center !important;

padding:12px 18px !important;

height:75px !important;

}

.logo img{

width:140px !important;

height:auto !important;

}

.nav-links{

display:flex !important;

gap:18px !important;

font-size:16px !important;

padding:0 !important;

margin:0 !important;

}

.nav-links li{

list-style:none;

}

.icons{

display:flex !important;

gap:15px !important;

font-size:22px !important;

}


/* HERO */

.hero{

height:auto !important;

min-height:100vh !important;

padding:110px 20px 60px !important;

background-position:center !important;

background-size:cover !important;

}

.hero-container{

width:100% !important;

display:flex !important;

justify-content:center !important;

}

.hero-text{

width:100% !important;

max-width:340px !important;

text-align:center !important;

margin:auto !important;

}

.small-title{

font-size:15px !important;

letter-spacing:5px !important;

}

.hero h1{

font-size:52px !important;

line-height:1.05 !important;

margin:20px 0 !important;

}

.hero-line{

margin:20px auto !important;

}

.hero p{

font-size:18px !important;

line-height:1.9 !important;

margin-bottom:30px !important;

}

.hero-buttons{

display:flex !important;

flex-direction:column !important;

gap:15px !important;

}

.hero-buttons a{

width:100% !important;

padding:16px !important;

font-size:17px !important;

text-align:center !important;

}

.hero-social{

justify-content:center !important;

margin-top:35px !important;

gap:25px !important;

}

.hero-social i{

font-size:28px !important;

}

}
/*================ MOBILE NAVBAR FIX ================*/

@media (max-width:768px){

header{
    height:70px !important;
}

.navbar{

    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;

    height:70px !important;
    padding:0 15px !important;

}

/* اللوجو */

.logo{

    position:absolute !important;
    left:50% !important;
    transform:translateX(-50%) !important;

}

.logo img{

    width:120px !important;
    height:auto !important;

}

/* القائمة */

.nav-links{

    display:flex !important;

    gap:12px !important;

    margin:0 !important;
    padding:0 !important;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    font-size:15px !important;
    font-weight:700 !important;

}

/* الأيقونات */

.icons{

    display:flex !important;

    gap:12px !important;

}

.icons i{

    font-size:22px !important;

}

/* الهيرو يبدأ بعد الهيدر */

.hero{

    margin-top:70px !important;

}

}