.gift-info-message {
    margin: 15px 0;
    padding: 10px;
    background: #f8f8f8;
    border-left: 4px solid #0073aa;
    font-style: italic;
}

.gift-selection-container {
    margin: 20px 0;
}

.gift-upgrade-message {
    margin-top: 10px;
    color: #d63638;
    font-weight: 600;
}

/* Modal */
.gift-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.gift-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    border-radius: 8px;
    position: relative;
    max-height: 90%;
    height: 80%;
}

.gift-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.gift-list {
    gap: 15px;
    height: 75%;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}

.gift-list .card-content {
    overflow-y: auto;
}

.gift-card {
    border: 2px solid #ddd;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gift-card.selected {
    border-color: #0073aa;
    background-color: #f0f9ff;
}

.gift-card .unavailable {
    opacity: 0.6;
    pointer-events: none;
}

.gift-image {
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    max-height: 200px;
}

.gift-desc {
    font-size: 14px;
}
.gift-select-btn {
    padding: 5px
}

.gift-checkbox-label {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
}

.gift-checkbox {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

.gift-checkbox:checked ~ .checkmark {
    background-color: #0073aa;
    border-color: #0073aa;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.gift-checkbox:checked ~ .checkmark:after {
    display: block;
}

.gift-checkbox:checked ~ .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.gift-done-btn {
    display: block;
    margin: 20px auto 0;
}

.gift-checkbox:disabled ~ .checkmark {
    background-color: #f0f0f0;
    border-color: #ccc;
    cursor: not-allowed;
}

.gift-checkbox:disabled ~ .checkmark:after {
    display: none;
}

.gift-selected-list {
    margin-top: 15px;
    font-size: 14px;
}

.gift-selected-title {
    font-weight: 600;
    color: #0073aa;
    margin-bottom: 8px;
    font-size: 15px;
}

.gift-selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.gift-selected-name {
    color: #333;
}

.gift-remove-btn {
    background: #d63638;
    color: white;
    border: none;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
}

.gift-remove-btn:hover {
    background: #c0392b;
}