.pickup-only-notice {
    position: relative;
    z-index: 1001;
    color: #292f3d;
    background: #fff1ed;
    border-bottom: 1px solid rgba(235, 90, 59, 0.25);
}

.pickup-only-notice__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.pickup-only-notice__text {
    padding: 0 48px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}

.pickup-only-notice__close {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.2s ease;
}

.pickup-only-notice__close:hover,
.pickup-only-notice__close:focus-visible {
    background-color: rgba(235, 90, 59, 0.12);
    outline: none;
}

.pickup-only-notice__close::before,
.pickup-only-notice__close::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 8px;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background-color: #292f3d;
}

.pickup-only-notice__close::before {
    transform: rotate(45deg);
}

.pickup-only-notice__close::after {
    transform: rotate(-45deg);
}

@media (max-width: 767.98px) {
    .pickup-only-notice__inner {
        justify-content: flex-start;
        min-height: 48px;
    }

    .pickup-only-notice__text {
        padding: 0 40px 0 0;
        font-size: 13px;
        line-height: 18px;
        text-align: left;
    }

    .pickup-only-notice__close {
        right: 14px;
    }
}
