.presto-discount-widget {
    box-sizing: border-box;
    width: 100%;
    margin: 18px 0;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background: #fff;
}
.presto-discount-title {
    margin: 0 0 9px;
    font-size: 16px;
    font-weight: 700;
}
.presto-discount-entry {
    display: flex;
    align-items: stretch;
    gap: 8px;
}
.presto-discount-input {
    box-sizing: border-box;
    min-width: 0;
    flex: 1 1 auto;
    height: 42px;
    padding: 8px 12px;
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    font: inherit;
    text-transform: uppercase;
}
.presto-discount-input:focus {
    border-color: #d7a700;
    outline: none;
    box-shadow: 0 0 0 2px rgba(215, 167, 0, 0.15);
}
.presto-discount-apply,
.presto-discount-remove {
    cursor: pointer;
    border: 0;
    border-radius: 5px;
}
.presto-discount-apply {
    min-width: 105px;
    padding: 8px 16px;
    background: #efbd00;
    color: #1d1d1d;
    font-weight: 700;
}
.presto-discount-active {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 4px 5px 4px 12px;
    border: 1px solid #b8d8b8;
    border-radius: 18px;
    background: #eef8ee;
    color: #276227;
    font-weight: 700;
}
.presto-discount-remove {
    width: 28px;
    height: 28px;
    padding: 0;
    background: transparent;
    color: inherit;
    font-size: 22px;
    line-height: 26px;
}
.presto-discount-message {
    min-height: 18px;
    margin-top: 7px;
    color: #347334;
    font-size: 13px;
}
.presto-discount-message.error {
    color: #b52020;
}
.presto-discount-summary {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.presto-discount-summary > div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 4px 0;
}
.presto-discount-summary .discount strong {
    color: #3f7d3f;
}
.presto-discount-summary .total {
    margin-top: 3px;
    padding-top: 8px;
    border-top: 1px dashed rgba(0, 0, 0, 0.15);
    font-size: 16px;
}
.presto-discount-busy {
    opacity: 0.7;
}
.presto-discount-admin-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 6px;
    border-radius: 9px;
    background: #eef8ee;
    color: #277027;
    font-size: 11px;
    white-space: nowrap;
}
@media (max-width: 560px) {
    .presto-discount-entry {
        display: block;
    }
    .presto-discount-apply {
        width: 100%;
        margin-top: 8px;
    }
}
