/* Arka Plan Karartma */
#sh-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    z-index: 999999;
}

/* Popup Kutu */
#sh-popup {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 40px 20px;
    border-radius: 15px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* KIRMIZI KAPATMA BUTONU (Görseldeki gibi dışa taşan stil) */
#sh-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #e74c3c;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    line-height: 0;
}

/* Başlıklar */
#sh-popup h2 {
    font-size: 22px;
    color: #333;
    margin: 0 0 10px;
    font-weight: 700;
}

#sh-popup p {
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
}

/* Hediye Kartları Grid */
.sh-gift-list {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.sh-gift-card {
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    padding: 15px;
    width: 140px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.sh-gift-card img {
    max-width: 70px;
    height: auto;
    margin-bottom: 10px;
}

.sh-product-title {
    font-size: 12px;
    color: #555;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

/* YEŞİL BUTON (Görseldeki gibi parlak yeşil) */
.sh-select-btn {
    background-color: #2ecc71;
    color: #fff;
    border: none;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    text-transform: uppercase;
}

.sh-select-btn:hover {
    background-color: #27ae60;
}