#gift-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

#gift-popup-content {
    background: #fff;
    padding: 30px;
    max-width: 400px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#gift-popup-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

#gift-popup-content .button {
    font-family: "Nunito Sans", Sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 15px 15px 15px 15px;
    padding: 0px 0px 0px 0px;
    height: 50px;
    line-height: 50px;
    width: 100%;
    color: var(--e-global-color-0f48415);
    background-color: var(--e-global-color-bf32815);
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

#close-gift-popup {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    margin-top: 15px;
    display: block;
    width: 100%;
    text-align: center;
}

.gift-selection-box {
    border: 2px dashed #a46497;
    padding: 20px;
    margin-bottom: 20px;
    background: #fdf9ff;
}

.gift-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 15px !important;
    padding: 15px !important;
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.gift-image {
    flex-shrink: 0 !important;
}

.gift-image img {
    max-width: 100px !important;
    height: auto !important;
    border-radius: 4px !important;
    display: block !important;
}

.gift-details {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: flex-start !important;
}

.gift-details span {
    font-weight: bold;
    font-size: 16px;
}

.gift-variation-select {
    padding: 5px;
}
