.sbpErrorBox{

    text-align:center;
    padding:40px 20px;

    background:#fff3cd;
    border:1px solid #ffeeba;

    border-radius:12px;

    margin:20px;
}

.sbpErrorBox h2{
    color:#856404;
}

.sbpErrorBox p{
    color:#856404;
}






#sbp-root {
    font-family: Arial;
    background: #fff;
}


/* top bar */
.pdTopBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
}

/* image */
.pdHero img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

/* content */
.pdContent {
    padding: 15px;
}

.pdPrice {
    font-size: 20px;
    font-weight: bold;
        color:#00b42a;

}


.pdBackBtn{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:12px;

    background:#000;   /* Black background */
    color:#fff;        /* White arrow */

    font-size:20px;
    font-weight:700;

    cursor:pointer;

    transition:all 0.2s ease;
}

.pdBackBtn:hover{
    opacity:0.9;
}

.pdBackBtn:active{
    transform:scale(0.95);
}