/* Container του κουτιού με τα δώρα */
.my-custom-gifts-box {
    background: #fdfcf9;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.my-custom-gifts-box h3 {
    color: #0071a1;
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mycg-notice {
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
    background: #fff8e1;
    border-left: 5px solid #ffcc80;
    color: #555;
    font-size: 15px;
}

/* Λίστα δώρων */
.mycg-gift-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

/* Κάθε επιλογή δώρου */
.mycg-gift-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-align: center;
    background: #ffffff;
    position: relative;
    user-select: none;
}

.mycg-gift-option:hover {
    border-color: #0071a1;
    background: #f9f9f9;
}

/* Εφέ επιλογής */
.mycg-gift-option input[type="radio"] {
    display: none;
}

.mycg-gift-option input[type="radio"]:checked + .mycg-gift-thumb {
    border-color: #0071a1;
    box-shadow: 0 0 0 3px rgba(0, 113, 161, 0.2);
}

.mycg-gift-option input[type="radio"]:checked ~ .mycg-gift-name {
    font-weight: bold;
    color: #0071a1;
}

/* Εικόνα δώρου */
.mycg-gift-thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
    margin-bottom: 8px;
}

.mycg-gift-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Όνομα δώρου */
.mycg-gift-name {
    font-size: 14px;
    line-height: 1.3;
    color: #333;
    transition: color 0.2s ease;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Κουμπί Προσθήκης Δώρου */
.my-custom-gifts-box form button.button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #0071a1;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.my-custom-gifts-box form button.button:hover {
    background-color: #005f8a;
}

/* Εμφάνιση επιλεγμένου δώρου */
.mycg-gift-selected {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #eaf7f2;
    border: 1px solid #d4edda;
    border-radius: 8px;
    padding: 15px;
}

.mycg-gift-selected .mycg-gift-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.mycg-gift-selected .mycg-gift-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mycg-gift-selected p {
    flex-grow: 1;
    margin: 0;
    font-size: 16px;
}

.mycg-gift-selected p strong {
    color: #0071a1;
}

.mycg-gift-selected a.button {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.mycg-gift-selected a.button:hover {
    background-color: #c82333;
}

/* Notice όταν ο χρήστης είναι κοντά στο όριο */
.mycg-near-threshold {
    background-color: #fff8e1;
    border-left-color: #ffcc80;
    color: #6a6a6a;
}


