.yp-popup-ete-overlay {
    position: fixed;
    inset: 0;
    background: rgba(29, 29, 29, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 16px;
    box-sizing: border-box;
}

.yp-popup-ete-overlay[hidden] {
    display: none;
}

body.yp-popup-ete-open {
    overflow: hidden;
}

.yp-popup-ete {
    position: relative;
    background: #fff;
    width: min(440px, 92vw);
    max-height: 90vh;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: clamp(28px, 6vw, 40px) clamp(20px, 5vw, 32px) clamp(24px, 5vw, 32px);
    box-sizing: border-box;
    text-align: center;
}

.yp-popup-ete-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    padding: 4px;
}

.yp-popup-ete-title {
    font-family: "bimbo-pro", "Bimbo Pro", cursive, sans-serif;
    font-size: clamp(28px, 7vw, 38px);
    color: #663050;
    margin: 0 0 12px;
    line-height: 1.1;
    transform: rotate(-4deg);
    text-align: center !important;
}

.yp-popup-ete-text {
    font-size: clamp(14px, 3.6vw, 16px);
    line-height: 1.4;
    color: #663050;
    margin: 0 0 16px;
}

.yp-popup-ete-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.yp-popup-ete-list a {
    display: block;
    padding: 10px 16px;
    border-radius: 10px;
    background: #f6efe8;
    color: #b17f4a;
    font-weight: 600;
    font-size: clamp(13px, 3.4vw, 15px);
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}

.yp-popup-ete-list a:hover {
    background: #b17f4a;
    color: #fff;
}

.yp-floating-buy-ete {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    background: #663050;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: background 0.18s, transform 0.18s;
}

.yp-floating-buy-ete:hover {
    background: #b17f4a;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .yp-floating-buy-ete {
        right: 14px;
        bottom: 64px;
        padding: 12px 18px;
        font-size: 14px;
    }
}
