.quotation .black-bar {
    background-color: #000;
    color: #fff;
    padding: 6px 10px;
    font-weight: 700;
}

.section-title {
    color: white !important;
}

.quo-sticky-button {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    bottom: 12%;
    right: 5rem;
    width: 60px;
}

.quo-sticky-button a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.btn-radio-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.btn-check {
    display: none;
}

.btn-radio {
    border: 2px solid #ff9c33;
    color: #ff9c33;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    text-align: center;
    min-width: 120px;
}

.btn-radio:hover {
    background-color: rgba(255, 156, 51, 0.1);
}

.btn-check:checked + .btn-radio {
    background-color: #ff9c33;
    color: #fff;
    border-color: #ff9c33;
}

.color-picker {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.color-picker input[type="radio"] {
    display: none;
}

.color-picker label {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.color-picker label:hover {
    transform: scale(1.1);
}

.color-picker input[type="radio"]:checked + label::after {
    content: "✔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.color-picker input[type="radio"]:checked + label {
    border-color: white;
    box-shadow: 0 0 0 2px var(--color);
}

