/* HIDDEN */
.gsp-hidden {
    display: none !important;
}

/* 🎁 Ikona – Skonio Burtų spalva */
#gsp-gift-icon {
    position: fixed !important;
    bottom: 70px; /* ⬆️ Pakelta PC */
    left: 20px !important;
    right: auto !important;

    width: 56px;
    height: 56px;
    border-radius: 18px;

    background: #768D7F; /* Skonio Burtai brand */
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    cursor: pointer;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 999998;

    animation: gspPulse 2s infinite ease-in-out;
}

@keyframes gspPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.10); }
    100% { transform: scale(1); }
}

/* Overlay */
#gsp-gift-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;
}

/* Modal */
#gsp-gift-modal {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 480px;

    border-radius: 18px;
    padding: 28px 24px;

    max-height: 90vh;
    overflow-y: auto;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Inner */
#gsp-gift-modal-inner {
    width: 100%;
}

/* X MYGTUKAS – labai lengvai paspaudžiamas */
#gsp-gift-close {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;
    background: #f0f0f0;

    cursor: pointer;
    font-size: 20px;
    color: #333;

    z-index: 99999 !important; /* 🔥 svarbiausia */
    padding: 0;
    transition: 0.2s ease;
}

/* X hover */
#gsp-gift-close:hover {
    background: #dddddd;
    transform: scale(1.07);
}

/* Omnisend 100% width */
#omnisend-embedded-v2-66f3fb8b028a4c770826834d {
    width: 100%;
}

/* Mobile optimizacija */
@media (max-width: 600px) {
    #gsp-gift-icon {
        bottom: 80px; /* ⬆️ Pakelta MOBILE */
        left: 16px !important;
        right: auto !important;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    #gsp-gift-modal {
        margin: 0 12px;
        padding: 22px 18px;
    }
}
