.gsm-open-modal{
    position: relative;

    width: 100%;
    margin-top: 12px;
    padding: 15px 18px;

    border: 1px solid #b9def3 !important;
    border-radius: 15px !important;

    background:
        linear-gradient(
            180deg,
            #f7fbff 0%,
            #e8f4fc 100%
        ) !important;

    color: #0f3b57 !important;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: .1px;

    cursor: pointer;

    transition:
        all .18s ease;

    box-shadow:
        0 6px 18px rgba(17,72,102,.08),
        inset 0 1px 0 rgba(255,255,255,.95);

    overflow: hidden;
}

/* BAL OLDALI ICE ACCENT */
.gsm-open-modal::before{
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background:
        linear-gradient(
            180deg,
            #7dd3fc,
            #38bdf8,
            #2563eb
        );
}

/* ICON */
.gsm-open-modal::after{
    content: "❄";

    margin-left: 10px;

    font-size: 14px;

    opacity: .85;
}

/* HOVER */
.gsm-open-modal:hover{

    transform: translateY(-1px);

    border-color: #8ecff0 !important;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #eef8ff 100%
        ) !important;

    box-shadow:
        0 10px 24px rgba(17,72,102,.12),
        inset 0 1px 0 rgba(255,255,255,1);
}

/* ACTIVE */
.gsm-open-modal:active{
    transform: translateY(0);
}

/* FOCUS */
.gsm-open-modal:focus{
    outline: none;

    box-shadow:
        0 0 0 4px rgba(125,211,252,.18),
        0 10px 24px rgba(17,72,102,.12);
}

/* MOBILE */
@media (max-width:480px){

    .gsm-open-modal{
        padding: 14px 16px;
        font-size: 14px;
    }
}

.gsm-modal-overlay {
    position: fixed !important;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

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

    z-index: 999999 !important;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    padding: 20px;
    box-sizing: border-box;

    transition: opacity .18s ease;
}

.gsm-modal-overlay.gsm-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gsm-modal {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 440px;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    animation: gsmPop .18s ease-out;
}

@keyframes gsmPop {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.gsm-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.gsm-modal h3 {
    margin: 0;
    font-size: 18px;
}

#gsm-reservation-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#gsm-reservation-form input[type="text"],
#gsm-reservation-form input[type="email"],
#gsm-reservation-form input[type="tel"] {
    height: 46px;
    border-radius: 10px;
    padding: 0 14px;
    border: 1px solid #dcdcdc;
    width: 100%;
}

.gsm-gdpr {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.gsm-submit-btn {
    width: 100%;
}

.gsm-response {
    margin-top: 14px;
    font-weight: 600;
    font-size: 14px;
}

.gsm-success {
    color: #159947;
}

.gsm-error {
    color: #d63638;
}

.gsm-close-modal {
    width: 36px;
    height: 36px;

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

    border: 0;
    background: transparent;

    font-size: 26px;
    line-height: 1;

    cursor: pointer;

    padding: 0;

    border-radius: 8px;

    transition: background 0.15s ease;
}

.gsm-close-modal:hover {
    background: rgba(0,0,0,0.06);
}

body.gsm-no-scroll {
    overflow: hidden;
}

.gsm-reserved-badge{
    position: relative;

    display: flex;
    align-items: center;
    gap: 10px;

    margin: 14px 0 18px;
    padding: 16px 18px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #f0f9ff 0%,
            #dbeafe 45%,
            #e0f2fe 100%
        );

    border: 1px solid rgba(125,211,252,.55);

    color: #0f3b57;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;

    box-shadow:
        0 8px 24px rgba(59,130,246,.08),
        inset 0 1px 0 rgba(255,255,255,.7);

    overflow: hidden;

    backdrop-filter: blur(8px);
}

/* BAL OLDALI ICE LINE */
.gsm-reserved-badge::before{
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 5px;

    background:
        linear-gradient(
            180deg,
            #7dd3fc,
            #38bdf8,
            #2563eb
        );
}


/* ENYHE FÉNY EFFECT */
.gsm-reserved-badge .gsm-ice-glow{
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 0%,
            rgba(255,255,255,.35) 50%,
            transparent 100%
        );

    transform: translateX(-100%);

    animation: gsmIceGlow 4s linear infinite;
}

@keyframes gsmIceGlow{
    to{
        transform: translateX(100%);
    }
}

/* MOBIL */
@media (max-width:480px){

    .gsm-reserved-badge{
        padding: 14px;
        border-radius: 14px;
        font-size: 13px;
    }
}