.shahr-wax-custom-options-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    direction: rtl;
    font-family: inherit;
    width: 100%;
}
.shahr-wax-custom-option-box {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content:center ;
    text-align: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.shahr-wax-opt-title {
    color: #333333;
    font-size: 15px;
    font-weight: 800;
    margin: 0;
    line-height: 1.4;
}
.shahr-wax-opt-value {
    color: #666666;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 767px) {
    .shahr-wax-custom-options-wrapper {
        grid-template-columns: 1fr !important;
    }
}