/*dashboard-start*/
*{
    box-sizing: border-box;
}
body {
    margin:0;
    background:#f8db9e61;
    font-family:Tahoma, sans-serif;
}

.apa-app {
    width: 100%;
    max-width: 500px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 90px 15px 115px;
    direction: rtl;
}


/* کارت توضیحات */
.info-card {
    background:rgba(255,255,255,.45);
    backdrop-filter:blur(15px);
    border-radius:20px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    margin-bottom:25px;
    line-height:2;
    color:#124944;
    font-size:14px;
}



/* عنوان */
.section-title {
    font-size:20px;
    font-weight:bold;
    color:#124944;
    margin-bottom:15px;
}



/* کارت طلا */
.gold-card {

    background:rgba(255,255,255,.55);
    border-radius:22px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}


.gold-name {

    font-size:18px;
    font-weight:bold;
    color:#124944;
    max-width: 23%;
}
.gold-card,
.info-card {
    width:100%;
}
.apa-app-wrapper {
    width:100%;
    display:flex;
    justify-content:center;
}

.price-buttons {

    display:flex;
    gap:12px;

}


.price-btn {

    flex:1;
    border:none;
    padding:12px;
    border-radius:15px;
    color:white;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;

}


.buy {

    background:#16803c;

}


.sell {

    background:#c62828;

}


.price {

    display:block;
    font-size:17px;

}



/* Bottom Sheet */


.sheet-overlay {

    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    display:none;
    z-index:99;

}


.bottom-sheet {

    position:fixed;
    bottom:-100%;
    left:0;
    width:100%;
    background:#fff;
    border-radius:30px 30px 0 0;
    padding:25px;
    transition:.3s;
    z-index:100;
    box-sizing:border-box;

}


.bottom-sheet.active {

    bottom:0;

}


.sheet-overlay.active {

    display:block;

}


.sheet-title {

    text-align:center;
    font-size:18px;
    font-weight:bold;
    color:#124944;
    margin-bottom:20px;

}


.close-btn {

    width:100%;
    padding:13px;
    border:none;
    background:#124944;
    color:white;
    border-radius:12px;
    margin-top:20px;

}


.input-box {

    width:100%;
    padding:14px;
    border-radius:12px;
    border:1px solid #ddd;
    margin-bottom:15px;
    text-align:center;
font-size: 1rem;
}

.apa-section {

    margin-bottom:25px;

}


.apa-section-title {

    font-size:18px;

    font-weight:bold;

    color:#124944;

    margin-bottom:12px;

}



.apa-product-card {

    background:rgba(255,255,255,.55);

    backdrop-filter:blur(15px);

    border-radius:20px;

    padding:18px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}



.product-name {

    font-size:16px;

    font-weight:bold;

    color:#333;

    margin-bottom:18px;

}

/*dashboard-end*/