
.title {
    margin: 20px;
}

.line {
    border: 1px solid #F5F5F5;
}

.star {
    color: sandybrown;
}

.nonstar {
    color: sandybrown;
}


.all{
    width: 100%;
}

.shampo-container{
    border: 1px solid#EDEDED;
    border-radius: 10px;
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    margin-top: 10px;
}

.shampo-case,
.accesory-case {
    display: flex;
    width: 100%;
    flex-shrink: 0;
}


.shampo-img ,.accesory-img{
    width: 45%;
    height: 100%;
}

.shampo-img img,.accesory-img img{
    width: 100%;
    height: 100%;
}

.shampo-text,
.accesory-text {
    width: 55%;
    height: 100%;
    padding-top: 55px;
}


#timer1,
#timer2 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #822, #533);
    padding: 20px 40px;
    border-radius: 12px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product{
    width: 100%;
    margin-top: 50px;
}

.products-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center; 
}

.products-card {
    flex: 0 1 calc(25% - 20px); 
    min-width: 250px; 
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 15px;
    transition: 0.3s;
    box-sizing: border-box;
}

.products-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #FF8F9C;
}

.product-img-wrapper {
    position: relative; 
    overflow: hidden;    
}

.product-actions {
    position: absolute;
    top: 15px;
    right: -50px;      
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: 0.4s ease; 
    z-index: 10;       
}

.products-card:hover .product-actions {
    right: 15px;  
}

.action-btn {
    background: #ffffff;
    border: none;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px; 
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    color: #333;
    font-size: 16px;
}

.action-btn:hover {
    background: #FF8F9C;
    color: white;
    transform: scale(1.1); 
}

.action-btn.active-wishlist {
    color: #e74c3c !important; 
}

.action-btn.active-wishlist i {
    font-weight: 900; 
}

.product-img1 {
    width: 100%;
    height: 200px; 
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-img1 img {
    width: 120px;
    /* height: 100%; */
    object-fit: cover; 
}

.products-text {
    margin-top: 15px;
}

.category {
    color: #FF8F9C;
    font-size: 12px;
    font-weight: bold;
}

.product-title {
    font-size: 18px;
    text-wrap: wrap;
    margin: 8px 0;
    color: #787878;
    height: 40px;
    overflow: hidden;
}

.stars {
    color: #ffb81c;
    font-size: 12px;
    margin-bottom: 10px;
}

.current-price {
    font-weight: bold;
    font-size: 16px;
    color: #222;
}

.old-price {
    color: #999;
    font-size: 14px;
    margin-right: 5px;
}

