.primagas-cart-popup {
    position: fixed;
    top: 80px;
    right: 16px;
    width: 360px;
    max-width: calc(100vw - 32px);
    z-index: 15;
    padding: 20px 44px 20px 20px;
    background: #fff;
    border-radius: 4px;
    border-left: 4px solid #DF2B2A;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease;
    pointer-events: none;
}

.primagas-cart-popup[hidden] {
    display: none;
}

.primagas-cart-popup.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.primagas-cart-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    color: #7F7F7F;
    cursor: pointer;
}

.primagas-cart-popup-close:hover,
.primagas-cart-popup-close:focus {
    color: #DF2B2A;
}

.primagas-cart-popup-title {
    font-weight: bold;
    margin-bottom: 8px;
}

.primagas-cart-popup-products {
    margin-bottom: 16px;
    color: #7F7F7F;
}

.primagas-cart-popup-link {
    display: inline-block;
}

.primagas-cart-popup-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

@media (max-width: 639px) {
    .primagas-cart-popup {
        left: 16px;
        right: 16px;
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .primagas-cart-popup {
        transition: none;
    }
}
