.latest-products{
    margin-bottom: 80px;
}
.products-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 30px;
}
.product-card{
    display:flex;
    flex-direction:column;
    height:100%;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
    position:relative;
    border:1px solid var(--border);
}
.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}
.product-card__image{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
    height:220px;
}
.product-card__image img{
    max-width:220px;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:.4s;
}
.product-card:hover .product-card__image img{
    transform:scale(1.08);
}
.product-card__body{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex:1;
}
.product-card__brand{
    color:var(--gray);
    font-size:14px;
    margin-bottom:10px;
}
.product-card__title{
    font-size:18px;
    line-height:1.8;
    height:64px;
}
.product-card__rating{
    margin:18px 0;
    color:#FBBF24;
    display:flex;
    justify-content:space-between;
}
.product-card__price{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.product-card__price del{
    color:#94A3B8;
}
.product-card__price strong{
    color:var(--secondary);
    font-size:22px;
}
.product-card__button{
    width:100%;
    margin-top:auto;
    padding-top:20px;
}
.product-card__badges{
    position:absolute;
    top:15px;
    left:15px;
}
.product-card__wishlist{
    position:absolute;
    right:-250px;
    top:0;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    transition:.3s;
}
.product-card:hover .product-card__wishlist{
    right:15px;
}
.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}
.section-title{
    font-size:30px;
    font-weight:800;
}
.section-link{
    color:var(--primary);
    font-weight:600;
}
.promo{
    margin: 80px 0;
}

.promo-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.promo-card{
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    display: block;
    height: 260px;
    transition: .35s;
}

.promo-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
}

.promo-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15)
    );
}

.promo-content{
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    z-index: 2;
}

.promo-content span{
    display: inline-block;
    background: #2563eb;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 14px;
}
.promo-content h2{
    font-size: 28px;
    margin-bottom: 10px;
}
.promo-content p{
    font-size: 16px;
}
.promo-card:hover img{
    transform: scale(1.08);
}
.page-search-box{
    margin:30px 0;
}
.page-search-box input{
    width:100%;
    padding:14px;
    border:1px solid var(--border);
    border-radius:10px;
    font-size:16px;
}