/* ---- CSS VARIABLES (used by both base + your styles) ---- */
:root {
    --primary: #1678f2;
    --text: #111;
    --muted: #666;
    --border: #e6e8eb;
    --bg: #fafafa;
    --white: #fff;
    /* your custom tokens */
    --headerBg: #fff;
    --whiteText: #fff;
    --borderLightGrey: #e6e8eb;
    --blackText: #111;
    --lightGreyText: #666;
    --blueText: #1678f2;
    --arrowColor: #1678f2;
    --font-size-18: 18px;
    --font-size-14: 14px;
    --font-weight-bold: 700;
}

/* ---- base reset + utilities (lightweight) ---- */
* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font: 14px/1.4 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    color: var(--text);
    background: #fff;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: var(--primary);
    text-decoration: none
}

.font14 {
    font-size: 14px
}

.font16 {
    font-size: 16px
}

.font22 {
    font-size: 22px
}

.grey-text--dark {
    color: #444
}

.lato-bold {
    font-weight: 700
}

.lato-black {
    font-weight: 800
}

.lato-regular {
    font-weight: 400
}

.primaryColor {
    color: var(--primary)
}

.append-right12 {
    margin-right: 12px
}

.append-left5 {
    margin-left: 5px
}

.append-right10 {
    margin-right: 10px
}

.rowGap16 {
    row-gap: 16px
}

.paddingLeft20 {
    padding-left: 20px
}

.widthFitContent {
    width: fit-content
}

.make-flex {
    display: flex
}

.alignCenter {
    align-items: center
}

.justifyCenter {
    justify-content: center
}

.spaceBetween {
    justify-content: space-between
}

.perfectCenter {
    align-items: center;
    justify-content: center
}

.column {
    flex-direction: column
}

.hrtl-center {
    align-items: center
}

/* ---- YOUR LAYOUT & COMPONENT STYLES (merged) ---- */
.component__app__e805c {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header__headerWrap__e4145 {
    background: var(--headerBg);
    box-shadow: 0 4px 8px 0 #0000000d;
    margin-bottom: 40px;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 12;
    border-bottom: 1px solid var(--border); /* subtle baseline */
}

.header__container__f65fa {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between
}

/* shell layout – responsive */
.shell__container__95935 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin: 0 auto 40px;
    width: 100%;
    max-width: 1200px;
    padding: 0 16px;
}

.shell__left__4efd1 {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    flex: 1 1 0;
    max-width: 800px;
}

.shell__right__b6f2c {
    width: 360px;
    flex: 0 0 360px;
}

/* summary card */
.index__wrapper__b2db4 {
    background: var(--whiteText);
    border: 1px solid var(--borderLightGrey);
    border-radius: 16px;
}

.index__summaryContainer__253b2 {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.index__summaryContent__0c053 {
    display: flex;
    padding: 12px 16px;
}

.index__detailsContainer__0870b {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.index__titleSection__c4f45 {
    align-items: center;
    display: flex;
    margin-bottom: 5px;
}

.index__titleWrapper__f5ee2 {
    align-items: center;
    display: flex;
    width: 100%;
}

.index__titleText__2784f, .index__title__247f3 {
    color: var(--blackText);
    display: flex;
    font-size: var(--font-size-18);
}

.index__title__247f3 {
    font-weight: var(--font-weight-bold);
    justify-content: space-between;
    margin-bottom: 5px;
    width: 100%;
}

.index__titleText__2784f {
    margin-right: 20px;
}

.index__viewMore__49a8a {
    align-items: center;
    color: var(--blueText);
    cursor: pointer;
    display: flex;
    font-weight: var(--font-weight-bold);
    margin-left: auto;
    margin-right: 8px;
    text-transform: uppercase;
}

.index__viewMoreText__84292 {
    color: var(--blueText);
    font-size: var(--font-size-14);
}

/* arrow (chevron made from borders; JS toggles rotation/text) */
.index__downArrow__4d14d, .index__upArrow__5c8aa {
    cursor: pointer;
    display: flex;
    margin-left: 10px;
    padding: 3px;
    transform: rotate(45deg);
    border-color: var(--arrowColor);
    border-style: solid;
    border-width: 0 2px 2px 0;
}

.index__downArrow__4d14d {
    margin-bottom: 5px;
}

.index__infoSection__ca12a {
    align-items: center;
    column-gap: 30px;
    display: flex;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.index__infoItem__5e27f {
    display: flex;
    margin-bottom: 5px;
    min-width: 80px;
    gap: 8px;
}

.index__lineBreak__e7010 {
    background-color: var(--borderLightGrey);
    height: 1px;
}

.index__container__4e00b {
    display: flex;
    flex: 1;
    flex-direction: column;
    list-style: inside;
}

    .index__container__4e00b li:first-child {
        padding-left: 78px;
    }

    .index__container__4e00b li {
        align-items: center;
        display: flex;
        font-size: var(--font-size-14);
        padding: 16px;
    }

.index__infoItem__c1c6c {
   
    display: flex;
    font-size: var(--font-size-14);
    margin-right: 10px;
}

.index__titleText__2446d {
    color: var(--lightGreyText);
    font-size: var(--font-size-14);
}

/* right rail card + rows */
.index__card__5d0e5 {
    border: 1px solid var(--borderLightGrey);
    border-radius: 12px;
    background: var(--white);
    padding: 16px
}

.index__fareSummaryContainer__84b53 {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.index__fareSummaryRow__85f4d {
    display: flex;
    justify-content: space-between;
    margin: 8px 0
}

/* login strip + addon */
.login__loginCard__cb5d0 {
    border: 1px solid var(--borderLightGrey);
    border-radius: 12px;
    background: var(--white);
    padding: 16px;
    gap: 12px
}

.addon__add_on_card__3e409 {
    border: 1px solid var(--borderLightGrey);
    border-radius: 12px;
    background: var(--white);
    padding: 16px
}

/* paymode list */
.paymodeList__wrap__008e2 {
    border: 1px solid var(--borderLightGrey);
    border-radius: 12px;
    background: var(--white);
    padding: 16px
}

.paymodeList__title__8f260 {
    margin: 0 0 12px
}

.paymodeList__list__af0c8 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.paymode__container__038c1 {
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--borderLightGrey);
    border-radius: 10px;
    padding: 10px
}

.paymode__rightContainer__a7bd3 {
    margin-left: auto;
    display: flex;
    gap: 8px;
    align-items: center
}

.tag__tagContainer__ce7ce {
    color: #064;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 999px;
    background: linear-gradient(91.67deg,#43e1a8,#28beb2)
}

/* UPI QR */
.upiQRLanding__upiQrLanding__a19ae {
    display: flex;
    gap: 16px;
    border: 1px dashed var(--borderLightGrey);
    border-radius: 12px;
    padding: 16px;
    background: var(--bg)
}

.upiQRLanding__leftSide__47a63 {
    flex: 1
}

.upiQRLanding__rightSide__346d7 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.upiQRLanding__cta__1fa14 {
    border: 1px solid var(--primary);
    background: #eef5ff;
    color: var(--primary);
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer
}

/* Buttons */
.button__button__3d1d7 {
    border: none;
    cursor: pointer
}

.button__primary__3cb6b {
    background: var(--primary);
    color: #fff
}

.button__large__2c028 {
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600
}

/* Footer */
.landingFooter__wrapper__e791c {
    border-top: 1px solid var(--borderLightGrey);
    background: #fcfcfc;
    margin-top: 24px
}

.landingFooter__container__83cb6 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px
}

/* tiny svg stroke color */
.directionalArrow__strokeColor__f37e9 {
    stroke: #444
}

.sessionTimer__clockIcon__41583 {
    width: 24px;
    height: 24px;
    margin-right: 6px
}

.sessionTimer__timerContainer__3c34c {
    gap: 6px
}

/* responsive */
@media (max-width: 991px) {
    .shell__container__95935 {
        flex-direction: column;
    }

    .shell__right__b6f2c {
        width: 100%;
        flex: 0 0 auto;
    }

    .shell__left__4efd1 {
        max-width: 100%;
    }
}

.index__passengerList__3b96e {
    flex: 1;
}
.index__container__4e00b {
    display: flex;
    flex: 1;
    flex-direction: column;
    list-style: none;
    list-style-position: outside;
    list-style-position: inside;
}

.index__titleText__2446d {
    color: var(--lightGreyText);
    font-size: var(--font-size-14);
}
.index__icon__801a5 {
    margin-right: 5px;
}
.index__titleText__2446d {
    color: var(--lightGreyText);
    font-size: var(--font-size-14);
}

.index__infoIcon__b1276 {
    height: 15px;
    margin-right: 5px;
    width: 15px;
}

.index__passengerListItem__8b772 {
    display: flex;
    justify-content: space-between;
    margin-top: .5rem;
}
.index__passengerIcon__ac985 {
    align-items: center;
    display: flex;
    padding: 12px 16px;
}
.index__passengerIconImage__4fbde {
    align-items: center;
    border-radius: 4px;
    display: flex;
    height: 41px;
    justify-content: center;
    margin-right: 22px;
    width: 41px;
}
.index__passengerHeading__b89bc {
    align-self: center;
    flex: 3;
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-bold);
}
.index__passengerDetails__7ab14 {
    display: flex;
    flex: 4;
    flex-direction: row;
    font-size: var(--font-size-14);
    justify-content: space-between;
    margin-right: 15px;
}
.index__commIcon__64909 {
    height: 41px;
    align-items: center;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    margin-right: 22px;
    width: 41px;
}
.index__innerListRight__40cd5 {
    display: flex;
    flex: 1;
    justify-content: space-between;
}
.index__lrgCol__c68f4 {
    align-self: center;
    flex: 3;
}

.index__colText__71910:last-child {
    margin-bottom: 0;
}
.index__colText__71910 {
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-bold);
    margin-bottom: 5px;
    text-align: left;
}
.index__halfCol__08984 {
    align-items: center;
    display: flex;
    flex: 4;
    flex-direction: row;
    justify-content: space-between;
    margin-right: 15px;
}
.index__iconWrap__6a28c {
    align-items: center;
    display: flex;
    padding: 12px 16px;
}
/*.izRhEM {
    width: 41px;
    height: 40px;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    margin-right: 15px;
    border-radius: 4px;
}*/