/* ============================================================
   ORBFIT — REFUND POLICY
   Namespaced with "ref_" — safe to load on any template.
   Remove the :root block if your global stylesheet already
   defines these same variables.
============================================================= */

:root {
    --primary: #346739;
    --primary-dark: #244a28;
    --primary-tint: #eef3ec;
    --dark: #000200;
    --white: #FFFFFF;
    --light: #f7f7f7;
    --gray: #666666;
    --border: #e5e5e5;
    --radius: 4px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

.ref_page {
    font-family: 'DIN Condensed', sans-serif;
    color: var(--dark);
    background: var(--white);
}

.ref_container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.ref_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: .18em;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ref_eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-tint);
}

.ref_stitch {
    display: block;
    height: 1px;
    margin: 40px 0;
    background-image: linear-gradient(to right, var(--border) 60%, transparent 0%);
    background-size: 10px 1px;
    background-repeat: repeat-x;
}

/* ------------------------------------------------------------
   BUTTONS
------------------------------------------------------------- */
.ref_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .25s var(--ease), transform .2s var(--ease);
}

.ref_btn-primary {
    background: var(--primary);
    color: var(--white);
    margin-top: 8px;
}
.ref_btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ------------------------------------------------------------
   HERO
------------------------------------------------------------- */
/*.ref_hero {*/
/*    padding: 90px 0 56px;*/
/*    background: var(--light);*/
/*    border-bottom: 1px solid var(--border);*/
/*}*/

/*.ref_hero-title {*/
/*    font-size: clamp(36px, 5vw, 54px);*/
/*    font-weight: 700;*/
/*    letter-spacing: -.01em;*/
/*    margin-bottom: 14px;*/
/*}*/

/*.ref_hero-sub {*/
/*    font-size: 16px;*/
/*    color: var(--gray);*/
/*    max-width: 540px;*/
/*    line-height: 1.6;*/
/*}*/


.ref_hero {
    background: var(--dark);
    min-height: 265px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* Skewed diagonal accent strips */
.ref_hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 9%;
    width: 5vw;
    height: 100%;
    background: rgba(52, 103, 57, .18);
    transform: skewX(-14deg);
}

.ref_hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 15%;
    width: 2.5vw;
    height: 100%;
    background: rgba(52, 103, 57, .1);
    transform: skewX(-14deg);
}

.ref_hero_bg {
    position: absolute;
    inset: 0;
    /*background: url('https://www.bestgraphicsdesign.com/static/images/footer-content-banner/refund_policy_banner.webp') center/cover no-repeat;*/


     background: url('https://www.vastwebindia.com/badge-images/refund.jpg') center/cover no-repeat; 

    /* background: url('https://cdn-ilcbakn.nitrocdn.com/GESvsvRvuzSaWjFnrPsqOPYtPPjrwPfT/assets/images/optimized/rev-6f4bbaf/shippingchimp.com/blog/wp-content/uploads/2020/08/10_5_eCommerce-Brands-That-Have-Steal-Worthy-Return-Policies-1024x546.png') center/cover no-repeat; */


    transform: scale(1.05);
    animation: lgHeroZoom 7s ease forwards;
}

@keyframes lgHeroZoom {
    to {
        transform: scale(1);
    }
}

.ref_hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 2, 0, .88) 0%, rgba(52, 103, 57, .32) 100%);
}

.ref_hero_strip3 {
    position: absolute;
    top: 0;
    right: 20%;
    width: 1.5vw;
    height: 100%;
    background: rgba(52, 103, 57, .06);
    transform: skewX(-14deg);
}

.ref_hero_inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 48px 70px 54px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.ref_hero_eyebrow {
    display: block;
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 700;
}

.ref_hero_title {
    font-size: clamp(54px, 8vw, 112px);
    font-weight: 300;
    text-transform: uppercase;
    line-height: .88;
    color: var(--white);
    letter-spacing: 1px;
}

.ref_hero_title em {
    display: block;
    font-style: normal;
    color: var(--primary);
}

.ref_hero_sub {
    color: rgba(255, 255, 255, .7);
    font-size: 18px;
    letter-spacing: 3px;
}

.ref_hero_baseline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 55%, transparent 100%);
}

.ref_hero_meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.ref_hero_badge {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    gap: 14px;
    border: 1px solid rgba(52, 103, 57);
    background: rgba(52, 103, 57, .34);
    padding: 13px 18px;
}

.ref_hero_badge i {
    color: rgb(77, 247, 126, 0.4);
    /*color: var(--primary);*/
    font-size: 20px;
}

.ref_hero_badge div {
    display: flex;
    align-items: center;
    /*flex-direction: column;*/
    gap: 8px;
    color: var(--white);
}

.ref_badge h4{
    color: var(--white);
}

.ref_badge p {
    margin-bottom: 0;
    color: var(--primary-tint);
}

.ref_hero_badge span {
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
}

.ref_hero_badge strong {
    font-size: 15px;
    color: var(--white);
    letter-spacing: 1px;
}

.ref_hero_bread {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
}

.ref_hero_bread a {
    color: var(--primary);
}

@media(max-width:900px) {
    .ref_hero_inner {
        padding: 40px 24px 48px;
    }

    .ref_hero_meta {
        display: none;
    }
}

@media(max-width:640px) {
    .ref_hero_title {
        font-size: clamp(44px, 13vw, 72px);
    }
}

/* ------------------------------------------------------------
   BODY LAYOUT
------------------------------------------------------------- */
.ref_body {
    padding: 60px 0 100px;
    background: var(--light);
}

.ref_body-grid {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 50px;
    align-items: start;
}

/* Sticky section rail — hanging-tag motif, consistent with other policy pages */
.ref_tags {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ref_tag {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px 14px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: border-color .2s var(--ease), background .2s var(--ease);
}

.ref_tag-hole {
    position: absolute;
    left: 13px;
    top: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--light);
    transition: border-color .2s var(--ease), background .2s var(--ease);
}

.ref_tag-code {
    font-size: 11px;
    letter-spacing: .14em;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
}

.ref_tag-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.ref_tag:hover {
    border-color: var(--primary);
}

.ref_tag-active {
    border-color: var(--primary);
    background: var(--primary-tint);
}

.ref_tag-active .ref_tag-hole {
    border-color: var(--primary);
    background: var(--primary);
}

.ref_tag-active .ref_tag-code,
.ref_tag-active .ref_tag-name {
    color: var(--primary-dark);
}

/* Content sections — white "tag boxes" floating on the gray page background */
.ref_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ref_section {
    background: var(--white);
    padding: 36px 38px;
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(0, 2, 0, .05);
}

/* Spacing between cards now comes from .ref_content's gap, so the old
   dashed divider is no longer needed between sections. */
.ref_stitch {
    display: none;
}

.ref_section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--primary);
    margin-bottom: 10px;
}

.ref_section h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.25;
}

.ref_section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 680px;
    margin-bottom: 14px;
}

.ref_subhead {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 22px 0 10px;
}

.ref_list {
    list-style: none;
    max-width: 680px;
    margin-bottom: 8px;
}

.ref_list li {
    position: relative;
    padding-left: 20px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--gray);
    margin-bottom: 10px;
}

.ref_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* Callouts */
.ref_callout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
    max-width: 560px;
}

.ref_callout {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    border: 1px solid var(--primary);
    background: var(--primary-tint);
    border-radius: var(--radius);
}

.ref_callout-muted {
    border-color: var(--border);
    background: var(--light);
}

.ref_callout-label {
    font-size: 11.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 700;
}

.ref_callout-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
}

.ref_callout-note {
    font-size: 12px;
    color: var(--gray);
}

/* Numbered return/exchange steps */
.ref_steps {
    list-style: none;
    max-width: 560px;
    margin: 20px 0;
    counter-reset: ref-step;
}

.ref_steps li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px dashed var(--border);
}

.ref_steps li:first-child {
    border-top: none;
}

.ref_step-num {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.ref_step-text {
    font-size: 14.5px;
    color: var(--dark);
    padding-top: 5px;
}

/* Warning box for NORETURN section */
.ref_warning {
    margin-top: 18px;
    padding: 20px 22px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    background: var(--light);
    border-radius: var(--radius);
    max-width: 680px;
}

.ref_warning-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.ref_warning .ref_list {
    margin-bottom: 0;
}

.ref_warning .ref_list li:last-child {
    margin-bottom: 0;
}

/* ------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------- */
@media (max-width: 900px) {
    .ref_body-grid {
        grid-template-columns: 1fr;
    }
    .ref_tags {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
    }
    .ref_tag {
        flex: 0 0 32%;
        min-width: 210px;
    }
}

@media (max-width: 640px) {
    .ref_hero { padding: 60px 0 40px; }
    .ref_callout-grid { grid-template-columns: 1fr; }
    
    .ref_tag {
        flex: 0 0 100%;
    }
}