/*
 * VRÁTENIE / REKLAMÁCIA — rozcestník (page-vratenie-reklamacia-tovaru.php) a
 * obsahové bloky pred formulármi (page-vratenie-tovaru.php, page-reklamacia-tovaru.php).
 * Farby/fonty nadväzujú na checkout.css a moj-ucet.css (#2F5FE0, Baloo Bhaijaan 2).
 * Formulár samotný (vr-*) štýluje plugin GURU-CLOUD Vratky — tento súbor sa
 * stará len o obsah okolo neho.
 */

.vrr-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px 90px;
    box-sizing: border-box;
}

/* Stránka po úspešnom odoslaní formulára — celý obsah nahradí len potvrdenie
   (pozri page-vratenie-tovaru.php / page-reklamacia-tovaru.php, $GLOBALS['gc_*_success']). */
.vrr-wrap--result {
    max-width: 640px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}
.vrr-wrap--result .vr-wrap {
    width: 100%;
}

/*-----------HERO----------------*/
.vrr-hero {
    text-align: center;
    margin-bottom: 40px;
}
.vrr-eyebrow {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    background: #F1F1FB;
    color: #2F5FE0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px;
}
.vrr-hero-title {
    font-family: 'Baloo Bhaijaan 2', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 4vw, 32px);
    color: #111827;
    letter-spacing: -.5px;
    margin: 0 0 10px;
}
.vrr-hero-sub {
    font-size: 15px;
    color: #7a7d8a;
    line-height: 1.6;
    max-width: 60ch;
    margin: 0 auto;
}

/*-----------HUB CARDS (page-vratenie-reklamacia-tovaru.php)----------------*/
.vrr-hub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 620px) {
    .vrr-hub {
        grid-template-columns: 1fr;
    }
}
.vrr-hub-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid #EEF0FA;
    border-radius: 20px;
    padding: 30px 28px;
    box-sizing: border-box;
    text-decoration: none;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.vrr-hub-card:hover {
    border-color: #2F5FE0;
    transform: translateY(-3px);
    box-shadow: 0 16px 30px -18px rgba(47, 95, 224, .35);
}
.vrr-hub-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #F1F1FB;
    color: #2F5FE0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vrr-hub-icon svg {
    width: 26px;
    height: 26px;
}
.vrr-hub-title {
    font-family: 'Baloo Bhaijaan 2', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #111827;
    margin: 0;
}
.vrr-hub-text {
    font-size: 14px;
    color: #7a7d8a;
    line-height: 1.55;
    margin: 0;
}
.vrr-hub-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2F5FE0;
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
    padding-top: 4px;
}
.vrr-hub-cta svg {
    width: 15px;
    height: 15px;
    transition: transform .15s ease;
}
.vrr-hub-card:hover .vrr-hub-cta svg {
    transform: translateX(3px);
}

/*-----------LEAD STATEMENT (napr. "VRÁTENIE NIE JE PROBLÉM")----------------*/
.vrr-lead {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #EEF0FA;
    border-radius: 20px;
    padding: 30px 32px;
    box-sizing: border-box;
    margin-bottom: 36px;
}
@media (max-width: 560px) {
    .vrr-lead {
        flex-direction: column;
        gap: 14px;
        padding: 24px 22px;
    }
}
.vrr-lead-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #DCEEE9;
    color: #12683F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vrr-lead-icon svg {
    width: 25px;
    height: 25px;
}
.vrr-lead-title {
    font-family: 'Baloo Bhaijaan 2', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #111827;
    letter-spacing: -.3px;
    margin: 4px 0 8px;
}
.vrr-lead-text {
    font-size: 15px;
    color: #424654;
    line-height: 1.65;
    margin: 0;
}

/*-----------SECTION LABEL----------------*/
.vrr-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Baloo Bhaijaan 2', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #111827;
    margin: 0 0 18px;
}
.vrr-section-title svg {
    width: 19px;
    height: 19px;
    color: #2F5FE0;
    flex-shrink: 0;
}

/*-----------STEPS (POSTUP)----------------*/
.vrr-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
@media (max-width: 700px) {
    .vrr-steps {
        grid-template-columns: 1fr;
    }
}
.vrr-step {
    position: relative;
    background: #F9F9FB;
    border: 1px solid #F1F1FB;
    border-radius: 16px;
    padding: 22px 20px;
    box-sizing: border-box;
}
.vrr-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #2F5FE0;
    color: #fff;
    font-family: 'Baloo Bhaijaan 2', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}
.vrr-step-title {
    font-family: 'Baloo Bhaijaan 2', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    color: #111827;
    margin: 0 0 6px;
}
.vrr-step-text {
    font-size: 13.5px;
    color: #7a7d8a;
    line-height: 1.55;
    margin: 0;
}

/*-----------CONDITIONS (PODMIENKY)----------------*/
.vrr-conditions {
    background: #fff;
    border: 1px solid #EEF0FA;
    border-radius: 18px;
    padding: 28px 30px;
    box-sizing: border-box;
    margin-bottom: 44px;
}
.vrr-conditions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.vrr-condition {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: #424654;
    line-height: 1.5;
}
.vrr-condition-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F1F1FB;
    color: #2F5FE0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.vrr-condition-icon svg {
    width: 11px;
    height: 11px;
}

/*-----------DIVIDER before form----------------*/
.vrr-form-anchor {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 28px;
    color: #9CA3AF;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}
.vrr-form-anchor::before,
.vrr-form-anchor::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #EEF0FA;
}
