/* doan nay dung chung cho cac text cua sp*/
.product-text {
    padding-top: 20px;
}

.product-text li {
    margin-bottom: 6px;
    list-style: none;
}

.product-text li:nth-child(2){
    color: #4b4b4b;
    font-size: smaller;   
}
.product-text li:nth-child(3){
    color: #f50000;
}
.product-text li:nth-child(4){
    font-size: 13px;
}
.product-text li:last-child {
    color: rgb(255, 169, 21);
}

.product-content {
    border: 2px solid #990000;
    border-radius: 25px;
    width: 100%;
}
/*end doan chung*/

.product-list {
    display: flex;
    justify-content: flex-start;
    margin: 15px;
    flex-wrap: wrap;
}
.product-list-item {
    width: 14.5%;
    padding: 50px 12px 30px;
    border-radius: 10px;
    cursor: pointer;
    display: none;
}

.product-list-item.active {
    display:block;
}

.product-list-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); 
}
.product-list-item img {
    width: 100%;
    transition: transform 0.33s ease-in-out;
    padding: 0px;
}
.product-list-item:hover img{
    transform: translateY(-15px);
}

.product-title {
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
}
.product-title ul {
    display: flex;
    align-items: center;
}
.product-title ul li a {
    size: 20px;
    color: #990000;
    transition: all 0.5 ease;
}
.product-title ul li {
    background-color: white;
    border: 1px solid #990000;
    border-radius: 25px;
    margin-left: 5px;
    padding: 5px;
}
.product-title ul li:hover {
    box-shadow: 0 2px 3px #4b4b4b;
    background-color: #990000;
}
.product-title ul li:hover a {
    color: white;
}
.product-title h2 {
    color: #990000;
}