/* =========================
   HOUSE OF AQEEDAT
   PREMIUM STYLE
========================= */

:root{
    --gold:#d4af37;
    --dark:#111111;
    --white:#ffffff;
    --cream:#faf8f4;
    --text:#555555;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:var(--cream);
    color:var(--text);
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:sticky;
    top:0;
    z-index:999;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 80px;

    background:white;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.logo{
    font-size:42px;
    font-weight:bold;
    color:var(--gold);
}

.menu{
    list-style:none;
    display:flex;
    gap:40px;
}

.menu a{
    text-decoration:none;
    color:#111;
    font-weight:600;
    transition:.3s;
}

.menu a:hover{
    color:var(--gold);
}

/* =========================
   HERO
========================= */

.hero{
    height:85vh;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url('../images/banner1.png');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-content{
    color:white;
}

.hero h1{
    font-size:90px;
    margin-bottom:20px;
}

.hero p{
    font-size:28px;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;

    padding:15px 40px;

    background:var(--gold);

    color:white;

    text-decoration:none;

    border-radius:40px;

    font-weight:bold;

    transition:.3s;
}

.hero-btn:hover{
    background:black;
}

/* =========================
   CATEGORY
========================= */

.categories{
    padding:100px 80px;
    background:white;
}

.categories h2{
    text-align:center;
    font-size:45px;
    margin-bottom:60px;
    color:#111;
}

.cat-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.cat-box{
    background:white;

    padding:50px 20px;

    text-align:center;

    border-radius:15px;

    font-size:22px;

    font-weight:bold;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

    cursor:pointer;
}

.cat-box:hover{
    transform:translateY(-10px);
    background:var(--gold);
    color:white;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    font-size:50px;
    color:#111;
    margin-top:70px;
    margin-bottom:50px;
}

/* =========================
   PRODUCTS
========================= */

.products{
    max-width:1400px;

    margin:auto;

    padding:20px 50px 100px;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:35px;
}

.card{
    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.card-body{
    padding:25px;
}

.card h3{
    color:#111;
    margin-bottom:10px;
    font-size:24px;
}

.price{
    color:var(--gold);
    font-size:24px;
    font-weight:bold;
    margin-bottom:15px;
}

.shop-btn{
    width:100%;

    border:none;

    background:var(--gold);

    color:white;

    padding:12px;

    border-radius:8px;

    cursor:pointer;

    font-weight:bold;

    transition:.3s;
}

.shop-btn:hover{
    background:black;
}

/* =========================
   ABOUT
========================= */

.about{
    background:white;

    padding:100px 80px;

    text-align:center;
}

.about h2{
    font-size:45px;
    color:#111;
    margin-bottom:30px;
}

.about p{
    max-width:800px;

    margin:auto;

    font-size:18px;

    line-height:1.8;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#111;

    color:white;

    text-align:center;

    padding:60px;
}

footer h3{
    color:var(--gold);
    font-size:30px;
    margin-bottom:15px;
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
}

/* =========================
   MOBILE
========================= */

@media(max-width:1024px){

    .products{
        grid-template-columns:repeat(2,1fr);
    }

    .cat-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1{
        font-size:60px;
    }
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
        padding:20px;
    }

    .menu{
        gap:20px;
    }

    .hero{
        height:70vh;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:18px;
    }

    .products{
        grid-template-columns:1fr;
        padding:20px;
    }

    .cat-grid{
        grid-template-columns:1fr;
    }

    .categories{
        padding:60px 20px;
    }

    .about{
        padding:60px 20px;
    }
}

.product-page{

max-width:1400px;

margin:auto;

padding:80px;

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;
}

.product-image img{

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.1);

}

.product-info h1{

font-size:50px;

margin-bottom:20px;
}

.product-info h2{

color:#d4af37;

margin-bottom:20px;
}

.product-info p{

line-height:1.8;

margin-bottom:30px;
}

.container{
    width:90%;
    margin:auto;
}

.section-title{
    text-align:center;
    font-size:40px;
    margin:60px 0;
    color:#222;
}

/* PRODUCTS GRID */

.product-grid{

width:90%;

margin:50px auto;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

/* PRODUCT CARD */

.product-card{

background:white;

border-radius:15px;

overflow:hidden;

box-shadow:
0 5px 20px rgba(0,0,0,0.08);

transition:.3s;

}

.product-card:hover{

transform:translateY(-8px);

box-shadow:
0 10px 30px rgba(0,0,0,0.15);

}

.product-card img{

width:100%;

height:280px;

object-fit:cover;

display:block;

}

.featured-grid .product-card img{

height:250px;

}

.product-card h3{

padding:20px 20px 5px;

font-size:26px;

}

.product-card .price{

padding:0 20px;

font-size:20px;

font-weight:bold;

color:#d4af37;

}

.product-card p{

padding:0 20px;

}

.view-btn{

display:block;

margin:20px;

text-align:center;

background:#d4af37;

color:white;

padding:14px;

border-radius:8px;

text-decoration:none;

font-weight:bold;

transition:.3s;

}

.view-btn:hover{

background:#000;

}

.search-form{
text-align:center;
margin-bottom:40px;
}

.search-form input{
width:300px;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
}

.search-form button{
padding:12px 25px;
background:#d4af37;
border:none;
color:white;
border-radius:8px;
cursor:pointer;
}

.product-page{
width:90%;
margin:60px auto;
display:flex;
gap:60px;
align-items:flex-start;
}

.product-left{
flex:1;
}

.main-product-image{
width:100%;
max-width:800px;
height:550px;
object-fit:cover;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
transition:.3s;
}

.main-product-image:hover{
transform:scale(1.02);
}

.gallery{
display:flex;
gap:15px;
margin-top:20px;
flex-wrap:wrap;
}

.thumb{
width:110px;
height:110px;
object-fit:cover;
border-radius:10px;
cursor:pointer;
border:2px solid #ddd;
transition:.3s;
}

.thumb:hover{
transform:scale(1.05);
border-color:#d4af37;
}

.thumb.active{
border:3px solid #d4af37;
}

.product-info{
flex:1;
}

.product-info h1{
font-size:60px;
margin-bottom:20px;
}

.product-info h2{
color:#d4af37;
font-size:40px;
margin-bottom:20px;
}

.product-info p{
font-size:18px;
line-height:1.8;
margin-bottom:30px;
}

@media(max-width:768px){

.product-page{
flex-direction:column;
}

.product-info h1{
font-size:36px;
}

.main-product-image{
height:400px;
}

.thumb{
width:80px;
height:80px;
}

}

.product-status{

font-size:18px;

font-weight:bold;

margin-bottom:20px;

}

.out-stock-btn{

background:#999;

color:white;

padding:15px 40px;

border:none;

border-radius:30px;

font-size:16px;

cursor:not-allowed;

}

.notify-btn{

display:inline-block;

background:#ff9800;

color:white;

padding:15px 40px;

text-decoration:none;

border-radius:30px;

font-weight:bold;

}


.category-filter{

text-align:center;

padding:20px;

}

.category-filter a{

display:inline-block;

padding:10px 20px;

margin:5px;

background:#d4af37;

color:white;

text-decoration:none;

border-radius:25px;

font-weight:bold;

}

.category-filter a:hover{

background:black;

}

/* ==========================
   RELATED PRODUCTS
========================== */

.related-products{
width:90%;
margin:80px auto;
}

.related-products h2{
text-align:center;
font-size:38px;
margin-bottom:40px;
color:#222;
}

.featured-section{

padding:70px 0;

background:white;

}

.featured-badge{

position:absolute;

background:#d4af37;

color:white;

padding:8px 15px;

border-radius:20px;

font-size:12px;

margin:10px;

z-index:10;

}

.cat-box{
text-decoration:none;
color:#444;
}

/* FEATURED PRODUCTS */

.featured-grid{

width:90%;

margin:40px auto;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(350px,450px));

justify-content:center;

gap:30px;

}

/* FLOATING WHATSAPP */

.floating-whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s;
}

.floating-whatsapp:hover{
    transform:scale(1.1);
}

.floating-whatsapp img{
    width:35px;
    height:35px;
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media(max-width:768px){

/* NAVBAR */

nav{
flex-direction:column;
padding:15px;
}

nav ul{
margin-top:15px;
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

/* LOGO */

.logo{
font-size:32px;
text-align:center;
}

/* HERO */

.hero{
height:70vh;
}

.hero h1{
font-size:48px;
}

.hero p{
font-size:20px;
}

.hero-btn{
padding:12px 25px;
}

/* SECTIONS */

.categories h2,
.featured-section h2,
.about-section h2{
font-size:40px;
}

/* PRODUCTS */

.product-grid{
grid-template-columns:1fr;
}

/* CATEGORY BOXES */

.cat-grid{
grid-template-columns:1fr;
}

/* FOOTER */

.footer h2{
font-size:40px;
}

/* PRODUCT PAGE */

.product-page{
flex-direction:column;
}

.product-gallery{
width:100%;
}

.product-details{
width:100%;
}

.main-image{
height:auto;
}

/* THUMBNAILS */

.thumbnail-container{
justify-content:center;
}

/* SEARCH BAR */

.search-form{
flex-direction:column;
}

.search-form input{
width:100%;
}

.search-form button{
width:100%;
}

}

header{
position:sticky;
top:0;
z-index:1000;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* FOOTER */

.footer{
background:#050505;
color:#fff;
padding:60px 8% 20px;
margin-top:80px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-column h3{
font-size:42px;
color:#d4af37;
margin-bottom:15px;
}

.footer-column h4{
font-size:22px;
color:#d4af37;
margin-bottom:20px;
}

.footer-column p{
color:#ddd;
line-height:1.8;
}

.footer-column a{
display:block;
text-decoration:none;
color:#ddd;
margin-bottom:12px;
transition:.3s;
}

.footer-column a:hover{
color:#d4af37;
padding-left:5px;
}

.footer-bottom{
text-align:center;
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.1);
color:#999;
}

@media(max-width:768px){

.footer{
text-align:center;
}

.footer-column h3{
font-size:32px;
}

}

/* =========================
   CONTACT PAGE
========================= */

.contact-section{

padding:100px 8%;

background:#faf8f4;

}

.contact-container{

max-width:1300px;

margin:auto;

text-align:center;

}

.contact-container h1{

font-size:70px;

color:#111;

margin-bottom:20px;

}

.contact-subtitle{

font-size:20px;

max-width:700px;

margin:auto;

line-height:1.8;

margin-bottom:60px;

}

.contact-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:35px;

}

.contact-card{

background:white;

padding:40px;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.contact-card:hover{

transform:translateY(-10px);

}

.contact-icon{

font-size:60px;

margin-bottom:20px;

}

.contact-card h3{

font-size:30px;

margin-bottom:15px;

color:#111;

}

.contact-card p{

line-height:1.8;

margin-bottom:25px;

}

.contact-btn{

display:inline-block;

background:#d4af37;

color:white;

padding:14px 30px;

border-radius:8px;

text-decoration:none;

font-weight:bold;

transition:.3s;

}

.contact-btn:hover{

background:#111;

}

@media(max-width:768px){

.contact-container h1{

font-size:45px;

}

.contact-grid{

grid-template-columns:1fr;

}

}

.active-menu{

color:#d4af37 !important;

font-weight:bold;

border-bottom:2px solid #d4af37;

padding-bottom:5px;

}