body{

    margin:0;

}

/*==========================================
SHOP HERO
==========================================*/

.shop-hero{

    position: relative;

    width: 100%;

    height: 720px;

    overflow: hidden;

}

.shop-hero img{

    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}

.hero-overlay{

    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,.20),
        rgba(0,0,0,.35)
    );

}

.hero-content{

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;

}

.hero-subtitle{

    display: block;
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C8A96A;

}

.hero-content h1{

    font-family: "Cormorant Garamond", serif;
    font-size: 110px;
    font-weight: 500;
    letter-spacing: 8px;
    color: #fff;
    margin-bottom: 18px;

}

.hero-content p{

    max-width: 600px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,.92);

}

/*==========================================
PRODUCTS
==========================================*/

.shop-products{

    padding:90px 0 120px;

}

.products-grid{

    display:grid;
    padding-left: 30px;
    grid-template-columns:repeat(4,1fr);
    margin: 0 auto;
    gap:30px;

}

/*==========================================
CARD
==========================================*/

.product-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:

    0 8px 30px rgba(0,0,0,.05);

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:

    0 20px 40px rgba(0,0,0,.08);

}

/*==========================================
IMAGE
==========================================*/

.product-image{

    position:relative;

    overflow:hidden;

    background:#F8F5EF;

}

.product-image img{

    width:100%;

    height:320px;

    object-fit:cover;

    display:block;

    transition:.4s;

}

.product-card:hover img{

    transform:scale(1.05);

}

/*==========================================
WISHLIST
==========================================*/

.wishlist{

    position:absolute;

    top:15px;

    right:15px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.3s;

}

.wishlist:hover{

    background:var(--gold);

    color:#fff;

}

/*==========================================
CONTENT
==========================================*/

.product-content{

    padding:22px;

    text-align:center;

}

.product-content h3{

    margin-bottom:10px;

}

.product-content h3 a{

    text-decoration:none;

    color:#111;

    font-size:20px;

    font-weight:500;

}

.price{

    display:block;

    margin-bottom:20px;

    color:#777;

    font-size:16px;

}

/*==========================================
BUTTON
==========================================*/

.add-bag{

    width:100%;

    height:48px;

    border:none;

    border-radius:12px;

    background:#111;

    color:#fff;

    font-size:13px;

    letter-spacing:2px;

    cursor:pointer;

    transition:.3s;

}

.add-bag:hover{

    background:goldenrod;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:992px){

.products-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media (max-width:768px){

.shop-products{

    padding:40px 0 70px;

}

.products-grid{

    grid-template-columns:repeat(2,1fr);

    gap:14px;

    padding:0 16px;

}

.product-card{

    border-radius:16px;

}

.product-image img{

    height:170px;

}

.product-content{

    padding:16px;

}

.product-content h3 a{

    font-size:18px;

}

.price{

    font-size:15px;

    margin-bottom:16px;

}

.add-bag{

    height:42px;

    font-size:11px;

    letter-spacing:1px;

}

.wishlist-btn{

    width:36px;

    height:36px;

    top:12px;

    right:12px;

}

.wishlist-btn i{

    font-size:15px;

}

}

/*==========================================
FAQ
==========================================*/

.faq-section{

    padding:120px 0;

    background:#e7dfdf;

}

.faq-header{

    text-align:center;

    max-width:700px;

    margin:0 auto 70px;

}

.faq-header span{

    display:inline-block;

    color:var(--gold);

    font-size:14px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.faq-header h2{

    font-size:52px;

    font-weight:500;

    color:#111;

    margin-bottom:18px;

}

.faq-header p{

    font-size:17px;

    color:#777;

    line-height:1.8;

}

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

/*==========================================
ITEM
==========================================*/

.faq-item{

    border-bottom:1px solid #ECECEC;

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:30px 0;

    cursor:pointer;

    text-align:left;

}

.faq-question span{

    font-size:20px;

    font-weight:500;

    color:#111;

    transition:.3s;

}

.faq-question i{

    font-size:18px;

    color:#999;

    transition:.35s;

}

.faq-question:hover span{

    color:var(--gold);

}

/*==========================================
ANSWER
==========================================*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 0 30px;

    color:#777;

    line-height:1.9;

    font-size:16px;

    max-width:760px;

}

/*==========================================
ACTIVE
==========================================*/

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

    color:var(--gold);

}

.faq-item.active .faq-question span{

    color:#111;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:768px){

.faq-section{

    padding:80px 0;

}

.faq-header{

    margin-bottom:45px;

}

.faq-header h2{

    font-size:34px;

}

.faq-header p{

    font-size:15px;

}

.faq-question{

    padding:24px 0;

}

.faq-question span{

    font-size:17px;

    line-height:1.6;

    padding-right:20px;

}

.faq-answer p{

    font-size:15px;

}

}

/*==========================================
FAQ MOBILE
==========================================*/

@media (max-width: 768px){

    .faq-section{

        padding:70px 0;

    }

    .faq-header{

        margin-bottom:40px;

        padding:0 20px;

    }

    .faq-header span{

        font-size:12px;

        letter-spacing:2px;

    }

    .faq-header h2{

        font-size:30px;

        line-height:1.3;

        margin-bottom:15px;

    }

    .faq-header p{

        font-size:14px;

        line-height:1.8;

    }

    .faq-wrapper{

        width:100%;

        padding:0 20px;

    }

    .faq-question{

        padding:22px 0;

        gap:20px;

    }

    .faq-question span{

        font-size:16px;

        line-height:1.6;

    }

    .faq-icon{

        font-size:24px;

        flex-shrink:0;

    }

    .faq-answer p{

        font-size:14px;

        line-height:1.8;

        padding:0 0 22px;

    }

}

/*==========================================
MOBILE NAV
==========================================*/

.menu-toggle{

    display:none;

    background:none;

    border:none;

    cursor:pointer;

    font-size:24px;

    color:#111;

}

/* القائمة مخبية افتراضياً */

.mobile-nav{

    display:none;

}

@media (max-width:768px){

    /* Header */

    .shop-header{

        height:75px;

    }

    .header-wrapper{

        padding:0 20px;

    }

    .navigation{

        display:none;

    }

    .search-btn{

        display:none;

    }

    .menu-toggle{

        display:block;

    }

    .logo{

        font-size:30px;

        letter-spacing:5px;

    }

    .header-right{

        gap:10px;

    }

    .icon-btn{

        width:36px;

        height:36px;

        font-size:16px;

    }

    /* Dropdown */

    .mobile-nav{

        position:fixed;

        top:75px;

        left:0;

        width:100%;

        background:#fff;

        border-top:1px solid #eee;

        box-shadow:0 12px 25px rgba(0,0,0,.08);

        display:flex;

        flex-direction:column;

        max-height:0;

        overflow:hidden;

        transition:max-height .35s ease;

        z-index:998;

    }

    .mobile-nav.active{

        max-height:380px;

    }

    .mobile-nav a{

        text-decoration:none;

        color:#111;

        padding:18px 24px;

        font-size:17px;

        border-bottom:1px solid #f3f3f3;

        transition:.3s;

    }

    .mobile-nav a:last-child{

        border-bottom:none;

    }

    .mobile-nav a:hover{

        color:#C8A96A;

        padding-left:34px;

    }

}

/*==========================================
SHOP HERO MOBILE
==========================================*/

@media (max-width:768px){

    .shop-hero{

    width:100%;

    height:100vh;

    min-height:100vh;

}

    .shop-hero img{

        object-fit:cover;

        object-position:center center;

    }

    .hero-overlay{

        background:linear-gradient(
            rgba(0,0,0,.28),
            rgba(0,0,0,.38)
        );

    }

    .hero-content{

    position:absolute;

    top:55%;

    left:50%;

    transform:translate(-50%,-50%);

    width:100%;

    padding:0 25px;

    text-align:center;

}

    .hero-subtitle{

        font-size:11px;

        letter-spacing:3px;

        margin-bottom:14px;

    }

    .hero-content h1{

        font-size:58px;

        letter-spacing:5px;

        margin-bottom:16px;

        line-height:1;

    }

    .hero-content p{

        max-width:280px;

        margin:auto;

        font-size:15px;

        line-height:1.7;

    }

    .shop-hero img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    content:url("../images/shopmobile.webp");

}

}

.cart-icon{
    position: relative;
    text-decoration: none;
    color: #111;
}

#cartCount{
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image{

    position: relative;

    overflow: hidden;

}

.wishlist-btn{

    position: absolute;

    top: 18px;

    right: 18px;

    width: 42px;

    height: 42px;

    border-radius: 50%;

    border: none;

    background: rgba(255,255,255,.95);

    backdrop-filter: blur(10px);

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    transition: .35s;

    z-index: 20;

    box-shadow: 0 10px 25px rgba(0,0,0,.08);

}

.wishlist-btn i{

    font-size: 18px;

    color: #222;

    transition: .3s;

    pointer-events: none;

}

.wishlist-btn:hover{

    transform: scale(1.08);

    background: #fff;

}

.wishlist-btn.active{

    background: #111;

}

.wishlist-btn.active i{

    color: #fff;

}

.product-card:hover .wishlist-btn{

    transform: translateY(-2px);

}