/* object-storage.css */
.os-body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f6fb;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.os-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgb(0 0 0 / 0);
    width: 1300px;
    padding: 1px 100px;
}
.os-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}
.os-price {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}
.os-price .os-symbol {
    font-weight: 900;
}
.os-price .os-monthly {
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
}
.os-card h3 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
}
.os-slider-group {
    margin-bottom: 20px;
}
.os-slider-label {
    background: #8c1de0;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    padding: 2px 8px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 6px;
}
.os-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #8c1de0 0%, #7e29f0 100%);
    outline: none;
    border-radius: 30px;
    position: relative;
}
.os-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    background: white;
    border: 2px solid #aaa;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.15);
}
.os-slider:focus::-webkit-slider-thumb {
    border-color: #8c1de0;
}
.os-slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: white;
    border: 2px solid #aaa;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.15);
}
.os-slider:focus::-moz-range-thumb {
    border-color: #8c1de0;
}
.os-info-text {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 4px;
}
.os-info-text i {
    font-style: normal;
    border: 1px solid #888;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    text-align: center;
    line-height: 14px;
    font-size: 11px;
    cursor: default;
}

/* اصلاحات ریسپانسیو */
@media (max-width: 768px) {
    .os-body {
        height: auto;
        padding: 10px;
    }
    .os-card {
        width: 90vw;
        padding: 20px;
        box-shadow: 0 4px 14px rgb(0 0 0 / 0);
    }
    .os-header {
        font-size: 11px;
        flex-wrap: wrap;
        gap: 8px;
    }
    .os-price {
        font-size: 24px;
    }
    .os-price .os-monthly {
        font-size: 10px;
    }
    .os-slider-label {
        font-size: 11px;
    }
    .os-info-text {
        font-size: 11px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .os-card {
        width: 700px;
        padding: 30px 50px;
    }
    .os-price {
        font-size: 30px;
    }
    .os-price .os-monthly {
        font-size: 11px;
    }
}
