.nouram-cart-notice {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99998;
    width: min(420px, calc(100vw - 24px));
    display: none;
}

.nouram-cart-notice.is-visible {
    display: block;
    animation: nouramCartNoticeIn 0.28s ease-out;
}

.nouram-cart-notice__inner {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fffdf7, #fff7e9);
    border: 1px solid #ffe2a6;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.nouram-cart-notice__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(199, 0, 57, 0.08);
    color: #a4002f;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nouram-cart-notice__close:hover {
    background: rgba(199, 0, 57, 0.14);
    transform: scale(1.03);
}

.nouram-cart-notice__icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #C70039, #FFC300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 18px rgba(199, 0, 57, 0.14);
}

.nouram-cart-notice__content {
    flex: 1;
}

.nouram-cart-notice__title {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
    color: #1f1f1f;
    font-weight: 800;
}

.nouram-cart-notice__text {
    margin: 0;
    color: #444;
    font-size: 13px;
    line-height: 1.65;
}

.nouram-cart-notice__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.nouram-google-official-btn--cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    padding: 12px 16px 12px 12px;
    background: #ffffff;
    color: #1f1f1f;
    text-decoration: none;
    border-radius: 14px;
    border: 1px solid #dadce0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s ease;
}

.nouram-google-official-btn--cart:hover {
    transform: translateY(-1px);
    background: #fcfcfc;
    box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

.nouram-google-official-btn__icon-wrap {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nouram-google-official-btn__icon {
    width: 18px;
    height: 18px;
    display: block;
}

.nouram-cart-notice__secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 14px;
    background: #fff;
    color: #C70039;
    border: 1px solid rgba(199, 0, 57, 0.15);
    font-weight: 700;
    transition: all 0.25s ease;
}

.nouram-cart-notice__secondary-btn:hover {
    background: #fff7f9;
    transform: translateY(-1px);
}

@keyframes nouramCartNoticeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nouram-cart-notice {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
    }

    .nouram-cart-notice__inner {
        flex-direction: column;
        padding: 16px;
    }

    .nouram-cart-notice__actions {
        flex-direction: column;
    }

    .nouram-google-official-btn--cart,
    .nouram-cart-notice__secondary-btn {
        width: 100%;
    }
}