.product-grid .product-image-box .social li a.product-card-action {
    position: relative;
    cursor: pointer;
}

.product-grid .product-image-box .social li a.product-card-action.is-loading {
    cursor: wait;
    pointer-events: none;
}

.product-grid .product-image-box .social li a.product-card-action.is-loading i {
    opacity: 0;
}

.product-grid .product-image-box .social li a.product-card-action.is-loading::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    content: '';
    animation: product-action-spin .65s linear infinite;
}

.product-grid .product-image-box .social li a.wish-list.is-active {
    color: #fff;
    background: #d62d63;
    border-color: #d62d63;
    box-shadow: 0 7px 17px rgba(214, 45, 99, .24);
}

.product-grid .product-image-box .social li a.compare-product.is-active {
    color: #fff;
    background: #367dcc;
    border-color: #367dcc;
    box-shadow: 0 7px 17px rgba(54, 125, 204, .24);
}

.product-action-notice {
    --notice-accent: #299264;
    position: fixed;
    z-index: 1090;
    right: 24px;
    bottom: 24px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 13px;
    width: min(410px, calc(100vw - 32px));
    padding: 16px 15px;
    overflow: hidden;
    color: #333a43;
    background: rgba(255, 255, 255, .98);
    border: 1px solid #dfe4e7;
    border-radius: 14px;
    box-shadow: 0 20px 48px rgba(26, 34, 43, .2);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 34px, 0) scale(.96);
    transition: opacity .24s ease, transform .34s cubic-bezier(.2, .85, .32, 1.2);
}

.product-action-notice.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
}

.product-action-notice.is-info {
    --notice-accent: #397fc5;
}

.product-action-notice.is-error {
    --notice-accent: #c84450;
}

.product-action-notice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #fff;
    font-size: 18px;
    background: var(--notice-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 7px color-mix(in srgb, var(--notice-accent) 12%, transparent);
}

.product-action-notice.is-visible .product-action-notice-icon {
    animation: product-action-icon-in .5s cubic-bezier(.25, .9, .34, 1.35) .08s both;
}

.product-action-notice-copy {
    min-width: 0;
}

.product-action-notice-copy strong {
    display: block;
    margin-bottom: 3px;
    color: #272e36;
    font-size: 15px;
    font-weight: 780;
}

.product-action-notice-copy p {
    margin: 0;
    color: #68737e;
    font-size: 14px;
    line-height: 1.45;
}

.product-action-notice-copy a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 7px;
    color: var(--notice-accent);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.product-action-notice-copy a[hidden] {
    display: none;
}

.product-action-notice-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #77818b;
    font-size: 13px;
    background: #f2f4f5;
    border: 0;
    border-radius: 50%;
}

.product-action-notice-close:hover {
    color: #333b44;
    background: #e8ebed;
}

.product-action-notice-progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--notice-accent);
    transform-origin: left;
}

.product-action-notice.is-visible .product-action-notice-progress {
    animation: product-action-progress 4.8s linear forwards;
}

@keyframes product-action-spin {
    to { transform: rotate(360deg); }
}

@keyframes product-action-icon-in {
    0% { opacity: 0; transform: scale(.35) rotate(-18deg); }
    70% { opacity: 1; transform: scale(1.12) rotate(3deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes product-action-progress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

@media (max-width: 767.98px) {
    .product-action-notice {
        right: 16px;
        bottom: calc(82px + env(safe-area-inset-bottom, 0px));
        left: 16px;
        width: auto;
    }
}

@media (max-width: 479.98px) {
    .product-action-notice {
        grid-template-columns: 42px minmax(0, 1fr) 32px;
        gap: 11px;
        padding: 14px 12px;
    }

    .product-action-notice-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-action-notice,
    .product-action-notice.is-visible .product-action-notice-icon,
    .product-action-notice.is-visible .product-action-notice-progress,
    .product-grid .product-image-box .social li a.product-card-action.is-loading::after {
        animation: none;
        transition: none;
    }
}
