.ttb-trip-summary-wrap {
    display: flex;
    width: 100%;
}

.ttb-trip-summary-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.ttb-trip-summary-title {
    margin: 0 0 22px;
    color: #1f2a2e;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 700;
    border-bottom-style: solid;
    border-bottom-width: 0;
    border-bottom-color: rgba(184, 135, 60, 0.22);
}

.ttb-summary-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ttb-summary-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ttb-summary-item:last-child {
    border-bottom-width: 0;
    padding-bottom: 0;
}

.ttb-summary-item:first-child {
    padding-top: 0;
}

.ttb-summary-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-top: 0;
    color: #b8873c;
    background-color: rgba(184, 135, 60, 0.1);
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
}

.ttb-summary-icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.ttb-summary-text {
    display: flex;
    flex: 1 1 auto;
    align-items: baseline;
    gap: 18px;
    min-width: 0;
}

.ttb-summary-label {
    flex: 0 0 135px;
    max-width: 135px;
    color: #1f2a2e;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.ttb-summary-value {
    flex: 1 1 auto;
    min-width: 0;
    color: #59646a;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
}

.ttb-summary-price-content {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
    white-space: nowrap;
}

.ttb-price-prefix,
.ttb-price-old,
.ttb-price-current,
.ttb-price-suffix {
    display: inline-block;
    white-space: nowrap;
}

.ttb-price-prefix {
    color: #59646a;
}

.ttb-price-old {
    color: rgba(89, 100, 106, 0.72);
    text-decoration-line: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: currentColor;
}

.ttb-price-current {
    color: #b8873c;
    font-weight: 800;
}

.ttb-price-suffix {
    color: #59646a;
    font-size: 0.92em;
}

@media (max-width: 767px) {
    .ttb-trip-summary-card {
        max-width: 100%;
        padding: 22px;
        border-radius: 18px;
    }

    .ttb-trip-summary-title {
        font-size: 23px;
        margin-bottom: 18px;
    }

    .ttb-summary-item {
        gap: 12px;
        padding: 14px 0;
    }

    .ttb-summary-icon {
        width: 24px;
        height: 24px;
        font-size: 13px;
    }

    .ttb-stack-mobile-yes .ttb-summary-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .ttb-stack-mobile-yes .ttb-summary-label {
        flex-basis: auto;
        max-width: 100%;
    }

    .ttb-stack-mobile-yes .ttb-summary-value {
        width: 100%;
    }

    .ttb-summary-price-content {
        flex-wrap: wrap;
        row-gap: 4px;
        white-space: normal;
    }
}
