.espresso-poll {
    background: #f9f9f9;
    padding: 28px;
    margin: 24px 0;
    max-width: 600px;
}

.espresso-poll__header {
    margin-bottom: 20px;
}

.espresso-poll__badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d51317;
    display: block;
    margin-bottom: 8px;
}

.espresso-poll__question {
    font-family: 'Vollkorn', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    margin: 0;
}

/* Form */
.espresso-poll__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: #fff;
    cursor: pointer;
    transition: background 0.15s;
}

.espresso-poll__option:hover {
    background: #f0f0f0;
}

.espresso-poll__option input[type="radio"] {
    accent-color: #d51317;
    width: 18px;
    height: 18px;
}

.espresso-poll__option-text {
    font-size: 15px;
    color: #333;
}

.espresso-poll__option.is-selected {
    background: #fef2f2;
}

.espresso-poll__submit {
    margin-top: 14px;
    padding: 10px 28px;
    background: #d51317;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}

.espresso-poll__submit:hover {
    background: #b8111a;
}

.espresso-poll__submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Results */
.espresso-poll__result {
    margin-bottom: 14px;
}

.espresso-poll__result-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.espresso-poll__result-label {
    font-size: 14px;
    color: #333;
}

.espresso-poll__result-pct {
    font-size: 14px;
    font-weight: 700;
    color: #d51317;
}

.espresso-poll__result-bar {
    height: 8px;
    background: #e8e8e8;
    overflow: hidden;
}

.espresso-poll__result-fill {
    height: 100%;
    background: #d51317;
    transition: width 0.6s ease;
}

.espresso-poll__total {
    font-size: 12px;
    color: #999;
    margin-top: 12px;
}

/* Responsive */
@media (max-width: 767px) {
    .espresso-poll {
        padding: 20px;
    }

    .espresso-poll__question {
        font-size: 18px;
    }
}
