.pcqm-quote-page h2{
    font-size: 3rem;
}
.pcqm-items{
    display:flex;
    flex-direction:column;
    gap:25px;
    padding:5px 100px;
}

.pcqm-card{
    display:flex;
    gap:30px;
    padding:25px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    align-items:flex-start;
}

.pcqm-image{
    width:170px;
    flex-shrink:0;
}

.pcqm-image img{
    width:100%;
    border-radius:8px;
}

.pcqm-content{
    flex:1;
}

.pcqm-content h3{
    margin-bottom:20px;
    font-size:28px;
}

.pcqm-spec{
    display:flex;
    margin-bottom:10px;
}

.pcqm-spec span{
    width:170px;
    font-weight:600;
}

.pcqm-side{
    width:170px;
    text-align:center;
}

.pcqm-qty-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-bottom:20px;
}

.pcqm-qty{
    width:60px;
    text-align:center;
}

.pcqm-minus,
.pcqm-plus{
    width:36px;
    height:36px;
    border:none;
    border-radius:6px;
    background:#111;
    color:#fff;
    cursor:pointer;
}

.pcqm-remove{
    width:100%;
    background:#dc3545;
    color:#fff;
    border:none;
    border-radius:6px;
    padding:10px;
}

.pcqm-footer{
    margin-top:40px;
    display:flex;
    justify-content:space-between;
}

.pcqm-btn{
    padding:12px 30px;
    border-radius:6px;
    text-decoration:none;
    border:1px solid #ddd;
}

.pcqm-primary{
    background:#111;
    color:#fff;
}
@media(max-width:768px){

.pcqm-card{
    flex-direction:column;
}

.pcqm-image{
    width:100%;
}

.pcqm-side{
    width:100%;
}

.pcqm-footer{
    flex-direction:column;
    gap:15px;
}

.pcqm-btn{
    width:100%;
    text-align:center;
}

}