.products-hero{
    padding:50px 0;
}

.products-hero-card{
    background:linear-gradient(135deg,#f7fafc,#eef4ff);
    border:1px solid #e6edf8;
    border-radius:30px;
    padding:50px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.products-hero h1{
    font-size:46px;
    font-weight:700;
    color:#22365d;
    margin-bottom:15px;
}

.products-hero p{
    font-size:17px;
    color:#6d7b95;
    margin-bottom:25px;
}

.hero-stats{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.hero-stats div{
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    border:1px solid #edf2fb;
    border-radius:14px;
    padding:12px 20px;
    color:#394866;
    font-weight:600;
}

.hero-stats strong{
    font-size:24px;
    color:#91A8E8;
}

.hero-search{
    display:flex;
    overflow:hidden;
    background:#fff;
    border-radius:50px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.hero-search input{
    border:none;
    box-shadow:none;
    padding:15px 20px;
}

.hero-search input:focus{
    box-shadow:none;
}

.hero-search button{
    width:65px;
    border:none;
    background:#91A8E8;
    color:#fff;
    transition:.3s;
}

.hero-search button:hover{
    background:#7d96e5;
}

@media(max-width:991px){

.products-hero-card{
    padding:30px;
}

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

.hero-search{
    margin-top:25px;
}

.hero-stats{
    justify-content:center;
}

}

/* ÜRÜN KARTI */

.oriflame-product{
    background:#fff;
    border:1px solid #edf2fb;
    border-radius:20px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    height:100%;
    transition:.35s;
    box-shadow:0 10px 30px rgba(34,55,90,.05);
}
.oriflame-product{

    overflow:hidden;

    border-radius:20px;

}
.oriflame-product:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.product-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    height:340px;

    padding:20px;

    background:#fff;

    overflow:hidden;

}

.product-image img{

    max-width:100%;

    max-height:100%;

    width:auto;

    height:auto;

    object-fit:contain;

    transition:.35s;

}

.oriflame-product:hover .product-image img{
    transform:scale(1.05);
}

.product-info{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:20px;
}

.product-category{
    font-size:12px;
    color:#91A8E8;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:600;
    margin-bottom:8px;
}

.product-info h6{
    margin:0;
}

.product-info h6 a{
    color:#22365d;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
    line-height:1.4;
}

.product-short{
    margin:15px 0;
    min-height:46px;
    color:#666;
    font-size:14px;
    line-height:1.7;
}

.price{
    margin-top:auto;
}

.old-price{
    display:block;
    color:#bbb;
    font-size:14px;
    text-decoration:line-through;
    margin-bottom:5px;
}

.new-price{
    font-size:30px;
    color:#91A8E8;
    font-weight:700;
}

.stock{
    margin:15px 0;
    font-size:14px;
    font-weight:500;
}

.stock-ok{
    color:#2ca24c;
}

.stock-no{
    color:#dc3545;
}

.btn-cart{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    height:48px;
    margin-top:10px;
    border-radius:12px;
    background:#91A8E8;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-cart:hover{
    background:#7d96e5;
    color:#fff;
}

.product-actions{

    position:absolute;

    top:20px;

    right:20px;

    display:flex;

    flex-direction:column;

    gap:12px;

    z-index:5;

}

.product-actions a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    color:#22365d;

    text-decoration:none;

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

    transition:.3s;

}

.product-actions a:hover{

    background:#91A8E8;

    color:#fff;

    transform:scale(1.08);

}



.product-badge{
    position:absolute;
    top:15px;
    left:15px;
    padding:6px 12px;
    border-radius:30px;
    font-size:11px;
    font-weight:700;
    color:#fff;
    z-index:2;
}

.badge-new{
    background:#2ca24c;
}

.badge-sale{
    background:#ff5a5f;
}