.promo-badge {
    display: inline-flex;
    align-items: center;
    border: 0.5px solid #ff5501;
    background-color: #fff6f4;
    padding: 8px;
    font-family: Arial, sans-serif;
    line-height: 1.2;
    margin-top: 4px;
    margin-bottom: 4px;
    max-width: 100%;
    flex-wrap: wrap;
}

.promo-badge.minimal {
    border: none;
    position: absolute;
    padding: 4px;
    width: 100%;
}

.promo-bold {
    color: #ff5501;
    font-weight: bold;
    margin: 2px;
    white-space: nowrap;
}

.promo-small {
    margin: 2px;
    color: #555;
    white-space: nowrap;
}

.promo-code {
    display: inline-flex;
    margin: 5px;
    color: #ff5501;
    background-color: #fff;
    white-space: nowrap;
}

.promo-badge .more-btn {
    background-color: white;
    color: #ff5501;
    border: 1px solid #ff5501;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.promo-badge .more-btn:hover {
    background-color: white;
    border: 2px solid #ff5501;
}

.promo-more-notice {
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

.more.promo-badge {
    min-height: 32px;
    padding: 16px;
    margin-bottom: 16px;
    background-color: #fff;
    width: 80%;
}

.countdown-counter {
    color: #ff5501;
    margin: 2px;
    font-weight: bold;
}

.countdown {
    color: #555;
    margin: 2px;
}

.promo-code-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ff7733;
    border-radius: 5px;
    margin: 2px;
    background: #fff;
}

.copy-code-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 15px;
    height: 15px;
    padding: 0;
    margin-right: 5px;
    box-sizing: border-box;
    vertical-align: middle;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    outline: none;
}

.copy-code-btn svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: #ff5400;
    transition: filter 0.2s;
}

.copy-code-btn:hover,
.copy-code-btn:focus {
    border: none;
    background-color: inherit;
}

.copy-code-btn:hover svg,
.copy-code-btn:focus svg {
    filter: brightness(1.2);
}

.copy-code-btn.copied {
    animation: click-feedback 150ms ease;
}

@keyframes click-feedback {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(0.6);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.applied-promos.label {
    font-weight: bold;
}

.marketplace-promo {
    color: #ff5501;
    font-weight: 600;
}

.marketplace-discount {
    color: #ff5501;
}

tbody.coupons td.item.promo-coupon {
    padding: 0 0 35px;
}

.cart-item.promo-badge {
    background-color: #fff5f2;
    border: 1px solid #ff5501;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    font-family: inherit;
    border-radius: 4px;
}

.promo-description {
    font-weight: 700;
    color: #444;
    margin-right: 10px;
    white-space: nowrap;
}

.item-coupon.counter {
    color: #444;
    font-weight: bold;
    margin-right: 16px;
    white-space: nowrap;
}

.item-coupon.countdown {
    color: #555;
    margin: 5px;
}

.item-coupon.coupon-box {
    background-color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 50%;
}

.item-coupon.coupon-code {
    font-weight: 700;
    color: #444;
}

.apply-coupon-btn {
    background: none;
    border: 1px solid #ff5501;
    color: #ff5501;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.apply-coupon-btn:hover {
    background-color: #ff5501;
    color: #fff;
}

@media (min-width: 769px) {
    .cart.table-wrapper tbody td.coupon {
        padding: 0 0 20px 0;
    }
}

td.coupon div.applied-coupon.message.success {
    font-size: inherit;
}

.applied-discount-code {
    font-weight: bold;
}