body{
    background-color: #faf7f4;
}


/* Common CSS */
.tag_pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fef7ef;
    border: 2px solid #f4e4d7;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #E8650A;
}



/* Return Banner CSS */
.return_banner {
    background-image: url(../img/return_banner_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}
.return_banner::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    z-index: -1;
}
.return_banner_text h1 {
    font-size: 70px;
    font-weight: 800;
    color: #020f29;
    line-height: 75px;
    margin-bottom: 0;
}
.return_banner_text .cursive_text {
    width: 520px;
}
.return_banner_text p {
    font-size: 16px;
    color: #303030;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
}
.btn_primary_orange {
    background-image: linear-gradient(to bottom, #fc9315, #ef5507);
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 16px 35px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}
.btn_primary_orange:hover {
    background-image: linear-gradient(to top, #fc9315, #ef5507);
    color: #fff;
}
.btn_outline_dark {
    background-color: transparent;
    color: #020f29;
    border: 2px solid #757575;
    border-radius: 15px;
    padding: 16px 35px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s, transform 0.15s;
    text-decoration: none;
}
.btn_outline_dark:hover {
    background-color: #020f29;
    border-color: #020f29;
    color: #fff;
}
.feature_strip {
    display: flex;
    flex-wrap: wrap;
}
.feature_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 25px;
    border-right: 1px solid #d6cec7;
}
.feature_item:last-child{
    border-right: none;
}
.feature_item .icon_wrap i{
    font-size: 35px;
    line-height: 1;
    color: #f65705;
}
.feature_item h5 {
    display: block;
    color: #020f29;
    font-weight: 700;
    font-size: 15px;
}
.feature_item p {
    color: #888;
    font-size: 14px;
}

/* Right summary card */
.summary_card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
}
.summary_top_icon {
    width: 120px;
    height: 120px;
    background-color: #fffaf6;
    border: 1px solid #f6e6da;
    box-shadow:0 2px 6px rgba(222, 176, 139, 0.08), 0 12px 30px rgba(222, 176, 139, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.summary_top_icon img {
  filter: drop-shadow(0 4px 10px rgba(255, 140, 0, 0.15));
}
.summary_top_text h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #f65705;
    text-transform: uppercase;
}
.summary_top_text h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: #020f29;
}
.summary_card hr {
    border-color: #cc8051;
    margin: 0;
}
.summary_text{
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}
.note_icon {
    width: 80px;
    height: 80px;
    background-color: #FFE0C7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.note_icon i {
    font-size: 40px;
    line-height: 1;
    color: #f65705;
}
.note_text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
.summary_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.summary_grid_box {
    background-color: #fefdfc;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
}
.summary_grid_icon {
    width: 50px;
    height: 50px;
    background-color: #feefdc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.summary_grid_icon i {
    font-size: 25px;
    color: #f65705;
}
.summary_grid_box h6 {
    font-size: 18px;
    font-weight: 700;
    color: #020f29;
}
.summary_grid_box p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}



/* Return Form CSS */
.return_form_sec {
    background-image: url(../img/return_form_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}
.return_form_wrap{
    background-image: linear-gradient(to bottom, #fdfbf8, transparent);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
}
.return_form_text h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #f65705;
    text-transform: uppercase;
}
.return_form_text h2 {
    font-size: 50px;
    font-weight: 900;
    color: #020f29;
    line-height: 55px;
}
.return_form_text p{
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 450px;
}
.return_form .divider_orange {
    width: 80px;
    height: 3px;
    background: #f65705;
    margin: 16px 0 20px;
}
.perks_box {
    background-color: #fdf8f4;
    border: 1px solid #f6e6da;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
}
.perk_item_wrap {
    text-align: center;
    border-right: 1px solid #ebe3de;
}
.perk_item_wrap:last-child{
    border-right: none;
}
.perk_icon {
    width: 52px;
    height: 52px;
    background-color: #fcece1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.perk_icon i {
    font-size: 30px;
    line-height: 1;
    color: #f65705;
}
.perk_item h6 {
    font-size: 14px;
    font-weight: 800;
    color: #020f29;
}
.perk_item p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* Form fields */
.form_card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.return_form .field_label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #020f29;
    margin-bottom: 8px;
}
.return_form .field_label i {
    font-size: 18px;
    color: #f65705;
}
.return_form .form-control,
.return_form .form-select {
    width: 100%;
    height: 55px;
    border: 1.5px solid #E8E4DF;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: #020f29;
    background-color: transparent;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}
.return_form .form-control:focus,
.return_form .form-select:focus {
    border-color: #f65705;
    box-shadow: none;
}
.return_form .info_notice {
    background-image: url(../img/notice_bg.jpg);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.return_form .info_notice i {
    font-size: 35px;
    color: #f65705;
}
.return_form .info_notice p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    max-width: 350px;
}
.form_btn {
    background-image: linear-gradient(to right, #fb6123, #fe6e16);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.form_btn:hover {
    background-image: linear-gradient(to right, #020f29, #020f29);
    color: #fff;
}



/* Return Benefit Sec CSS */
.return_benefit {
    padding: 60px 0;
    background-color: #fcfaf9;
}
.benefit_card {
    background-color: #fefefe;
    border-radius: 20px;
    padding: 30px 25px 50px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}
.benefit_card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url(../img/benefit_box_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.benefit_card .benefit_icon {
    width: 110px;
    height: 110px;
    background-color: #fef2e9;
    border: 12px solid #fef9f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    padding: 15px;
}
.benefit_card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #020f29;
}
.benefit_divider {
    width: 35px;
    height: 3px;
    background-color: #f65705;
    margin: 0 auto 14px;
}
.benefit_card p {
    font-size: 16px;
    color: #777;
    line-height: 1.7;
}

.promise_bar {
    background-color: #fbf3ec;
    border: 1px solid #f6e6da;
    border-radius: 16px;
    padding: 12px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    gap: 15px;
}
.promise_left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.promise_left i {
    font-size: 45px;
    color: #f65705;
}
.promise_left p {
    font-size: 18px;
    font-weight: 500;
    color: #4a4a4e;
}
.promise_left p strong{
    color: #020f29;
}
.promise_icon {
    width: 80px;
    height: 80px;
}



/* Refund Sec CSS */
.refund_sec {
    padding: 0 0 60px;
    background-color: #fcfaf9;
}
.refund_card, .address_card {
    background-color: #fefaf6;
    border-radius: 20px;
    padding: 50px 30px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}
.refund_card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url(../img/refund_box_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.refund_heading_icon{
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}
.refund_heading_text h5, refund_heading_text h5 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f65705;
}
.refund_heading_text h3, .refund_heading_text h3 {
    font-size: 40px;
    font-weight: 800;
    color: #020f29;
    line-height: 1.1;
}
.refund_heading_divider {
    width: 40px;
    height: 3px;
    background: #f65705;
    margin-bottom: 20px;
}
.refund_text{
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    padding-bottom: 25px;
    border-bottom: 2px solid #fdd8c5;
}
.exchange_box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.exchange_icon {
    width: 85px;
    height: 85px;
    flex-shrink: 0;
}
.exchange_text h6 {
    font-size: 20px;
    font-weight: 800;
    color: #020f29;
    margin-bottom: 4px;
}
.exchange_text p {
    font-size: 15px;
    color: #020f29;
    line-height: 1.6;
}

.address_heading_icon, .address_icon{
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}
.address_card hr {
    border: 2px solid #fdd8c5;
    margin: 25px 0;
}
.address_block p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}
.address_block p span {
    color: #020f29;
    font-size: 18px;
}

.shipping_notice {
    background: #f8f2ec;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.shipping_notice .sn_icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}
.shipping_notice p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
.shipping_notice p span {
    color: #020f29;
    font-size: 16px;
}



@media screen and (max-width: 991px){
    .tag_pill {
        gap: 6px;
        padding: 6px 15px;
        font-size: 13px;
    }
    .return_banner_text h1 {
        font-size: 60px;
        line-height: 65px;
    }
    .return_banner_text .cursive_text {
        width: 320px;
    }
    .return_banner_text p {
        font-size: 15px;
        line-height: 1.6;
    }
    .btn_primary_orange, .btn_outline_dark{
        padding: 14px 25px;
        font-size: 15px;
    }
    .feature_item{
        padding: 0 12px;
        gap: 10px;
    }
    .feature_item .icon_wrap i{
        font-size: 25px;
    }
    .feature_item h5 {
        font-size: 14px;
    }
    .feature_item p {
        font-size: 13px;
    }

    .summary_top_icon{
        width: 90px;
        height: 90px;
    }
    .summary_top_text h2 {
        font-size: 28px;
    }
    .summary_text {
        font-size: 15px;
        line-height: 1.6;
    }
    .note_icon{
        width: 55px;
        height: 55px;
    }
    .note_icon i{
        font-size: 30px;
    }
    .note_text{
        font-size: 14px;
    }
    .summary_grid_box {
        border-radius: 10px;
        padding: 12px;
    }
    .summary_grid_icon{
        width: 40px;
        height: 40px;
    }
    .summary_grid_icon i{
        font-size: 18px;
    }
    .summary_grid_box h6{
        font-size: 16px;
    }
    .summary_grid_box p{
        font-size: 13px;
    }

    .return_form_wrap {
        padding: 15px;
        border-radius: 15px;
    }
    .return_form_text h2 {
        font-size: 36px;
        font-weight: 800;
        line-height: 40px;
    }
    .return_form_text p {
        font-size: 14px;
        line-height: 1.5;
    }
    .form_card {
        border-radius: 15px;
        padding: 15px;
    }
    .return_form .field_label {
        gap: 8px;
        font-size: 14px;
        margin-bottom: 5px;
    }
    .return_form .info_notice {
        border-radius: 8px;
        padding: 15px;
        gap: 15px;
    }
    .form_btn {
        padding: 14px 30px;
        font-weight: 600;
        font-size: 14px;
        gap: 10px;
    }

    .promise_bar{
        padding: 8px 10px;
        gap: 10px;
    }
    .promise_left{
        gap: 10px;
    }
    .promise_left i {
        font-size: 35px;
    }
    .promise_left p {
        font-size: 14px;
    }

    .refund_card, .address_card {
        border-radius: 15px;
        padding: 20px 15px;
    }
    .refund_heading_icon {
        width: 90px;
        height: 90px;
    }
    .refund_heading_text h5, refund_heading_text h5{
        font-size: 12px;
    }
    .refund_heading_text h3, .refund_heading_text h3{
        font-size: 32px;
    }
    .refund_text{
        font-size: 15px;
    }
    .exchange_icon, .address_heading_icon, .address_icon, .shipping_notice .sn_icon {
        width: 60px;
        height: 60px;
    }
    .exchange_text h6, .address_block p span, .shipping_notice p span {
        font-size: 16px;
    }
    .address_block p, .exchange_text p, .shipping_notice p{
        font-size: 14px;
    }
}