#oro-lock-countdown {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    background: #1c2b4a;
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

#oro-lock-countdown .oro-lock-time {
    font-weight: bold;
    margin-left: 6px;
}

/* The theme absolutely-positions .message_change_price with a fixed
   negative top offset, sized for its old one-line text. Our longer banner
   text (plus the countdown slot right after it) needs normal document flow
   instead, or it overlaps the content below. */
#cart .cart-grid-right .message_change_price {
    position: static !important;
    top: auto !important;
}

.oro-lock-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1c2b4a;
    color: #fff;
    padding: 12px 16px;
    border-radius: 30px;
    font-size: 14px;
    margin: 12px 0;
}

.oro-lock-inline-icon {
    margin-right: 8px;
}

.oro-lock-inline-label {
    flex: 1;
}

.oro-lock-inline-time {
    font-weight: bold;
    color: #d9b26a;
    font-size: 16px;
}

.oro-lock-expired {
    background: #7a2e2e;
}

.oro-lock-refresh-btn {
    background: #d9b26a;
    color: #1c2b4a;
    border: none;
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}

.oro-lock-refresh-btn:hover {
    background: #c79f52;
}

#oro-lock-countdown.oro-lock-countdown-expired {
    background: #7a2e2e;
    display: flex;
    align-items: center;
    gap: 8px;
}

#oro-lock-countdown.oro-lock-countdown-expired .oro-lock-refresh-btn {
    padding: 4px 12px;
    font-size: 12px;
}

.oro-lock-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.oro-lock-toast {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fbf3e6;
    color: #7a5a2f;
    border: 1px solid #e7d3ac;
    padding: 10px 14px;
    border-radius: 30px;
    font-size: 13px;
    margin: 8px 0;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.oro-lock-toast-hide {
    opacity: 0;
}

.oro-lock-toast-icon {
    color: #b98b3e;
    font-weight: bold;
}

.oro-lock-toast-fixed {
    position: fixed;
    bottom: 70px;
    left: 20px;
    z-index: 9998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

