.dq-choice {
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(135deg, #fff5f8 0%, #f6f1ff 100%);
    border: 1px solid rgba(124, 58, 145, .16);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(70, 30, 88, .10);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.dq-choice:hover {
    transform: translateY(-2px);
    border-color: rgba(194, 59, 130, .34);
    box-shadow: 0 18px 42px rgba(70, 30, 88, .16);
}

.dq-choice:focus-within {
    border-color: #8a3fc2;
    box-shadow: 0 0 0 3px rgba(138, 63, 194, .16), 0 18px 42px rgba(70, 30, 88, .16);
}

.dq-choice__surface {
    display: block !important;
    width: 100%;
    box-sizing: border-box;
    padding: clamp(1.25rem, 3vw, 2rem);
    color: inherit !important;
    text-decoration: none !important;
    border-radius: inherit;
}

.dq-choice__surface::before,
.dq-choice__surface::after,
.dq-choice__button::before,
.dq-choice__button::after {
    display: none !important;
    content: none !important;
}

.dq-choice__surface:focus-visible {
    outline: 3px solid #43224e;
    outline-offset: -5px;
}

.dq-choice__media {
    position: relative;
    display: grid;
    width: min(100%, 18.75rem);
    margin: 0 auto;
    overflow: hidden;
    aspect-ratio: 6 / 5;
    background: linear-gradient(145deg, #34223d 0%, #7b2d74 52%, #e83e74 100%);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(70, 30, 88, .18);
    place-items: stretch;
}

.dq-choice__media > * {
    grid-area: 1 / 1;
}

.dq-choice__fallback {
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 100%;
    padding: 1rem;
    color: #fff;
    line-height: 1.2;
    text-align: center;
}

.dq-choice__fallback strong {
    display: block;
    margin-bottom: .45rem;
    font-size: clamp(1.65rem, 6vw, 2.35rem);
    letter-spacing: .02em;
}

.dq-choice__fallback span {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.dq-choice__creative {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dq-choice__label {
    display: inline-block;
    margin-bottom: .7rem;
    padding: .32rem .72rem;
    color: #7b2d74;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .82);
    border-radius: 999px;
}

.dq-choice__title {
    display: block;
    margin: 0 0 .7rem;
    color: #34223d;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.2;
}

.dq-choice__text {
    display: block;
    max-width: 720px;
    margin: 0 auto 1.15rem;
    color: #594c61;
    font-size: 1.02rem;
    line-height: 1.65;
}

.dq-choice__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: .85rem 1.35rem;
    color: #fff !important;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none !important;
    background: linear-gradient(135deg, #e83e74, #8a3fc2);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(170, 50, 125, .24);
    transition: transform .18s ease, box-shadow .18s ease;
}

.dq-choice:hover .dq-choice__button {
    transform: translateY(-2px);
    box-shadow: 0 11px 24px rgba(170, 50, 125, .30);
}

.dq-choice__note {
    display: block;
    max-width: 650px;
    margin: .85rem auto 0;
    color: #746b78;
    font-size: .78rem;
    line-height: 1.45;
}

.dq-choice__prices {
    display: grid;
    gap: .55rem;
    max-width: 620px;
    margin: 0 auto 1.15rem;
    padding: 0;
    list-style: none;
}

.dq-choice__prices li {
    padding: .65rem .85rem;
    background: rgba(255, 255, 255, .8);
    border-radius: 10px;
}

.dq-highlight {
    margin: 1.6rem 0;
    padding: 1rem 1.2rem;
    background: #fff8fb;
    border-left: 4px solid #c23b82;
    border-radius: 10px;
}

@media (max-width: 640px) {
    .dq-choice {
        margin: 1.5rem 0;
        border-radius: 16px;
    }

    .dq-choice__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dq-choice,
    .dq-choice__button {
        transition: none;
    }
}
