.st-towel-meter {
    margin: 1em 0;
    padding: 12px 16px;
    background: #fff8ee;
    border: 1px solid #f0c87a;
    border-radius: 6px;
    font-family: inherit;
}

.st-towel-meter__bar {
    height: 8px;
    background: #f0e0c0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.st-towel-meter__fill {
    height: 100%;
    background: #e88c2c;
    transition: width 0.3s ease;
}

.st-towel-meter__msg {
    font-size: 14px;
    color: #5a3a10;
    line-height: 1.4;
}

.st-towel-popup {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-towel-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.st-towel-popup__box {
    position: relative;
    background: #fff;
    padding: 28px 24px 22px;
    border-radius: 10px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
    text-align: center;
    z-index: 1;
}

.st-towel-popup__close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #888;
}

.st-towel-popup__close:hover {
    color: #222;
}

.st-towel-popup__title {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 600;
}

.st-towel-popup__msg {
    margin: 0 0 18px;
    font-size: 15px;
    color: #444;
}

.st-towel-popup__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.st-towel-popup__cta {
    display: inline-block;
    background: #e88c2c;
    color: #fff;
    padding: 9px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

.st-towel-popup__cta:hover {
    background: #d57a18;
    color: #fff;
}

.st-towel-popup__dismiss {
    background: transparent;
    border: 1px solid #d0d0d0;
    padding: 9px 16px;
    border-radius: 5px;
    color: #555;
    cursor: pointer;
}

.st-towel-popup__dismiss:hover {
    background: #f5f5f5;
}
