.product-detailsp {
    display: flex;
    align-items: flex-start; /* Căn trên nếu chiều cao không bằng nhau */
    gap: 20px; /* Khoảng cách giữa ảnh và thông tin */
    border: 1px solid #f0f0f0;
    padding: 10px;
    width: auto;
    border-radius: 8px;
}
.product-imagessp {
    flex-shrink: 0; /* Không cho co lại */
}


/* Thông tin sản phẩm bên phải */
.product-infosp {
    flex: 1;
    padding-right: 20px;
    font-weight: 500;
    text-align: left;
}
.product-title {
    font-size: 24px;
    margin-bottom: 50px;
    color: #333;
}

.product-brand,
.product-origin,
.product-desc,
.product-ingredients,
.product-volume {
    margin: 10px 10px;
    color: #555;
}

.product-price {
  background: #fafafa;
  padding: 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.price-new {
    color: #d32f2f;
    font-weight: bold;
    
}

.price-old {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
}

.product-action {
    margin-top: 0px;
}

.buy-now,
.add-to-cart {
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.buy-now {
    background-color: red;
    color: white;
    
}

.add-to-cart {
    background-color: #f2d0d3;
    color: white;
} 
