/*
Theme Name: Hello Elementor Child
Theme URI: https://attors.com
Description: Child theme for Hello Elementor
Author: Your Name
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Add your custom CSS below */

/* MAIN WRAPPER */
/* MAIN WRAPPER */
.gift-wrapper {
    max-width: 1150px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* LEFT SECTIONS */
.gift-left section {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* HEADINGS */
.gift-left h2,
.gift-left h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

/* PRICE OPTIONS */
.gift-prices {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gift-option {
    position: relative;
    border: 1px solid #ddd;
    padding: 18px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
    background: #fff;
}

.gift-option input {
    display: none;
}

.gift-option:hover {
    border-color: #0f1b2d;
}

.gift-option input:checked + span {
    color: #0f1b2d;
    font-weight: 600;
}

.gift-option input:checked {
}

.gift-option input:checked ~ span,
.gift-option input:checked + span {
    color: #0f1b2d;
}

/* INPUT FIELDS */
.gift-left input,
.gift-left textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.gift-left textarea {
    min-height: 100px;
}

/* SUMMARY BOX */
.gift-right {
    background: linear-gradient(135deg,#0f1b2d,#0b223f);
    color: #fff;
    padding: 35px;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.gift-right h2 {
    margin-bottom: 25px;
    font-size: 22px;
}

.gift-right p {
    font-size: 16px;
    margin-bottom: 25px;
}

/* BUTTON */
.gift-button {
    width: 100%;
    background: #0070ba;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.gift-button:hover {
    background: #005ea6;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .gift-wrapper {
        grid-template-columns: 1fr;
    }
    .gift-right {
        position: relative;
        top: auto;
    }
}