.album-format-choice {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0 0 20px;
    border: 0;
}

.album-format-choice__legend {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 6px;
    padding: 0;
}

.album-format-choice__option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
    margin: 0;
}

.album-format-choice__option:hover {
    border-color: #f0a83a;
}

.album-format-choice__option.is-selected {
    border-color: #f08a00;
    background-color: #fff7e6;
    box-shadow: 0 2px 8px rgba(240, 138, 0, 0.12);
}

.album-format-choice__radio {
    flex: 0 0 auto;
}

.album-format-choice__radio input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #f08a00;
}

.album-format-choice__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.album-format-choice__title {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
}

.album-format-choice__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f08a00;
}

.album-format-choice__price .price {
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
}

.album-format-choice__qty {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.album-format-choice__qty-label {
    font-size: 0.85rem;
    color: #555;
}

.album-format-choice__qty input[type="number"] {
    width: 64px;
    padding: 6px 8px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.album-format-choice__unavailable {
    font-size: 0.9rem;
    color: #b0413e;
    font-style: italic;
}

.album-format-choice__empty {
    font-style: italic;
    color: #777;
}
