.product-modal {
    position: fixed;
    width: 50%;
    max-width: 900px;
    height: 530px;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    z-index: 1001;
    border-radius: 25px;
    padding: 20px 30px;
    display: none;
}
.close-popup {
    position: absolute;
    right: 20px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    top: 15px;
}
.product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.product-bigImg {
    width: 420px;
    height: 420px;
}
.product-bigImg .product-bigImg-img {
    width: 100%;
    height: 100%;
}
.product-imgBox {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 auto;
    width: 420px;
    padding: 0;
}

.product-imgBox-list {
    display: flex;
    transition: transform 0.4s ease;
    padding: 10px 15px;
}

.product-imgBox-list-item {
    flex: 0 0 auto;
    width: 77px;
    height: 77px;
    margin: 0 6px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 2px;
    box-sizing: border-box;
}

.product-imgBox-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-imgBox-list-item.active {
    border: 2px solid #000000;
}

.product-imgBox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 97px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin: 0;
    padding: 0;
    outline: none;
}

.product-imgBox-btn.per {
    left: -10px;
}

.product-imgBox-btn.nex {
    right: -10px;
}
.product-info{
    padding-top: 10px;
}
.product-modal-name {
    padding-right: 20px;
    font-family: "Roboto";
    font-weight: 600;
    font-size: 24px;
    color: #222222;
    line-height: 24px;
    text-align: left;
}
.product-rate {
    margin: 10px 0;
    text-align: left;
}
.product-modal-rate {
    width: 14px;
    height: 14px;
}
.DetailRow{
    margin-bottom: 5px;
}
.DetailRow .Label {
    font-family: Roboto, Roboto;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    text-align: left;
    margin-bottom: 5px;
}
.product-modal-btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.product-modal-btn a{
    width: 100%;
    border-radius: 29px;
    background: #216DFF;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    font-size: 20px;
    border: 1px solid transparent;
}
.view-detail{
    padding: 5px 0;
    border-bottom: 1px solid #000000;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}