.tasnim-gift-wrap-box {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #f9f9f9;
}
#open-gift-wrap {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}
#gift-wrap-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}
#gift-wrap-modal h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}
.gift-wrap-options {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.gift-wrap-options li {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: #dddddd12;
}
.gift-wrap-options li:hover {
    background: #f0f0f0;
}
.gift-wrap-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}
.gift-wrap-options input[type="radio"] {
    margin-right: 10px;
}
.gift-wrap-options img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 10px !important;
    margin-left: 10px;
}
.gift-wrap-options span {
    flex: 1;
    font-weight: bold;
}
.gift-wrap-price {
    color: #007cba;
    font-weight: normal;
}
#gift_note {
    width: 100%;
    height: 80px;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
}
#add-gift-wrap {
    background: #01393a;
    color: white;
    border: none;
    padding: 12px 20px;
    margin-right: 10px;
    border-radius: 5px;
}
#add-gift-wrap:hover {
    background: #005a87;
}
#close-gift-wrap {
    background: #ccc;
    color: #333;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
}
#close-gift-wrap:hover {
    background: #999;
}
#gift-wrap-modal::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 255 255);
    z-index: -1;
}
