/*=========================================
        NEW ARRIVALS HERO
=========================================*/

.arrival-hero{
    position:relative;
    width:100%;
    height:85vh;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

/* Background Image */

.arrival-image{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

/* Overlay */

 

/* Content */

.arrival-content{
    position:relative;
    z-index:2;
    max-width:700px;
    padding:20px;
}

.arrival-content span{
    color:#D4AF37;
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;
    font-family:'Poppins',sans-serif;
}

.arrival-content h1{
    margin:20px 0;
    color:#fff;
    font-size:70px;
    font-family:'Cinzel',serif;
}

.arrival-content p{
    color:#f5f5f5;
    line-height:1.9;
    font-size:18px;
    margin-bottom:35px;
    font-family:'Poppins',sans-serif;
}

.arrival-btn{
    display:inline-block;
    padding:14px 35px;
    background:#D4AF37;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:.4s;
}

.arrival-btn:hover{
    background:#4A102A;
}

/* Responsive */

@media(max-width:768px){

    .arrival-hero{
        height:65vh;
    }

    .arrival-content h1{
        font-size:42px;
    }

    .arrival-content p{
        font-size:16px;
    }

}

.breadcrumb{

    background:#fff;

    padding:18px;

    text-align:center;

}

.breadcrumb a{

    color:#7B1E3D;

    text-decoration:none;

    font-weight:600;

}

.breadcrumb span{

    color:#777;

}

.intro{
 

    background:#faf7f2;

}

.intro-text{

    text-align:center;

    max-width:800px;

    margin:auto;

}

.intro-text h2{

    font-size:42px;

    color:#7B1E3D;

    font-family:'Cinzel',serif;

    margin-bottom:20px;

}

.intro-text p{

    color:#666;

    line-height:30px;

    font-size:17px;

}

/*=========================
      Products
==========================*/

.arrival-products{

   

    background:#faf7f2;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:20px;
    
    width: 85%;
    max-width: 1300px;
    
     margin: 0px auto; 
      
    padding: 30px 40px;

}

}

.product-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-image{

    position:relative;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.badge{

    position:absolute;

    top:15px;

    left:15px;

    background:#7B1E3D;

    color:#fff;

    padding:8px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}
.product-icons{

    position:absolute;

    right:15px;

    top:20px;

    display:flex;

    flex-direction:column;

    gap:12px;

}

.product-icons a{

    width:42px;

    height:42px;

    background:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#7B1E3D;

    text-decoration:none;

    transition:.3s;

}

.product-icons a:hover{

    background:#7B1E3D;

    color:white;

}

 

.product-info h3{

    font-family:'Cinzel',serif;

    color:#7B1E3D;

    margin-bottom:10px;

}

.rating{

    color:#D4AF37;

    margin-bottom:15px;

}

.price{

    display:flex;

    gap:15px;

    align-items:center;

    margin-bottom:20px;

}

.new-price{

    color:#7B1E3D;

    font-size:22px;

    font-weight:700;

}

.old-price{

    color:#888;

    text-decoration:line-through;

}
.colors{

    display:flex;

    gap:10px;

    margin-bottom:20px;
    padding-left: 12px;
}

.colors span{

    width:22px;

    height:22px;

    border-radius:50%;

    display:block;

    border:2px solid #ddd;

}

.wine{

    background:#7B1E3D;

}

.gold{

    background:#D4AF37;

}

.cream{

    background:#F7F1E8;

}

.sizes{

    display:flex;

    gap:10px;

    margin-bottom:25px;
 
}

.sizes span{

    width:38px;

    height:38px;

    border:1px solid #ddd;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    transition:.3s;

}

.sizes span:hover{

    background:#7B1E3D;

    color:white;

}

.cart-btn{

    display:block;

    text-align:center;

    background:#7B1E3D;

    color:white;

    padding:14px;

    border-radius:30px;

    text-decoration:none;

    transition:.3s;

}

.cart-btn:hover{

    background:#D4AF37;

    color:#222;

}
@media(max-width:992px){

.product-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.product-grid{

grid-template-columns:1fr;

}

}
.header {
    transition: .35s ease;
}

/* ================= FEATURED COLLECTION ================= */

.featured-collection{

    width:90%;
    max-width:1400px;

    margin:90px auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

.featured-image{

    flex:1;

}

.featured-image img{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:20px;

    border:4px solid #7b1738;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.featured-content{

    flex:1;

}

.sub-heading{

    color:#d4af37;

    letter-spacing:4px;

    font-weight:600;

    font-size:14px;

}

.featured-content h2{

    font-size:52px;

    color:#7b1738;

    margin:20px 0;

    font-family:'Cinzel',serif;

}

.featured-content p{

    color:#555;

    line-height:1.8;

    font-size:17px;

    margin-bottom:35px;

}

.feature-boxes{

    display:flex;

    gap:20px;

    margin-bottom:40px;

}

.feature{

    flex:1;

    background:#fff;

    padding:25px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.feature:hover{

    transform:translateY(-10px);

}

.feature i{

    font-size:30px;

    color:#7b1738;

    margin-bottom:15px;

}

.feature h4{

    color:#333;

}

.discover-btn{

    display:inline-block;

    padding:16px 40px;

    background:#7b1738;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    transition:.4s;

}

.discover-btn:hover{

    background:#d4af37;

    color:#fff;

}