/* Shipping Restrictions — UK Soft Warning Banner */

.woh-uk-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 9000;
    background: #1f3a2e;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.45;
    max-width: 720px;
    margin: 0 auto;
    transform: translateY(110%);
    transition: transform 280ms ease;
}

.woh-uk-banner[data-state="open"] {
    transform: translateY(0);
}

.woh-uk-banner__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
}

.woh-uk-banner__message {
    margin: 0;
    color: inherit;
}

.woh-uk-banner__link {
    white-space: nowrap;
    color: #ffd76b;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.woh-uk-banner__link:hover,
.woh-uk-banner__link:focus {
    color: #fff;
}

.woh-uk-banner__close {
    background: transparent;
    border: 0;
    color: inherit;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: 4px;
}

.woh-uk-banner__close:hover,
.woh-uk-banner__close:focus {
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

@media (max-width: 600px) {
    .woh-uk-banner__inner {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "message close"
            "link    link";
    }

    .woh-uk-banner__message { grid-area: message; }
    .woh-uk-banner__close   { grid-area: close; }
    .woh-uk-banner__link    { grid-area: link; }
}
