/* =========================================================
   SHIPAROX
   Reference-matched responsive CSS
========================================================= */

:root {
    --orange: #f0522e;
    --orange-dark: #e54825;

    --navy: #101827;
    --navy-light: #141e30;

    --text-dark: #101827;
    --text-gray: #5f6672;
    --light-gray: #fafaf9;

    --footer-text: #aab2c0;
    --footer-heading: #ffffff;

    --border: #e3e5e8;

    --telegram: #22a7df;

    --max-width: 1220px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background: #fafaf9;
    color: var(--text-dark);

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    height: 84px;

    background: #ffffff;

    border-bottom: 1px solid #e4e5e7;

    position: sticky;
    top: 0;

    z-index: 100;
}

.header-inner {
    width: min(calc(100% - 126px), var(--max-width));
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   BRAND
========================================================= */

.brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 20px;
    line-height: 18px;

    font-weight: 800;

    letter-spacing: -0.8px;

    color: #080b10;
}

.brand-text strong span {
    color: var(--orange);
}

.brand-text small {
    margin-top: 2px;

    font-size: 8px;

    line-height: 9px;

    font-weight: 600;

    letter-spacing: 1.7px;

    color: #70757c;
}


/* =========================================================
   CUBE LOGO
========================================================= */

.brand-icon {
    width: 32px;
    height: 32px;

    position: relative;

    flex: 0 0 32px;

    transform: scale(0.70);
    transform-origin: center;
}

.cube-top,
.cube-left,
.cube-right {
    position: absolute;

    width: 0;
    height: 0;

    border-style: solid;
}

.cube-top {
    left: 16px;
    top: 3px;

    border-width: 0 13px 8px 13px;
    border-color: transparent transparent #ff795d transparent;

    transform: translateX(-13px);
}

.cube-left {
    left: 3px;
    top: 11px;

    border-width: 8px 13px 13px 0;
    border-color: transparent #df3e25 transparent transparent;
}

.cube-right {
    left: 16px;
    top: 11px;

    border-width: 8px 0 13px 13px;
    border-color: transparent transparent transparent #f0522e;
}

.cube-mark {
    position: absolute;

    width: 3px;
    height: 5px;

    left: 15px;
    top: 8px;

    background: rgba(255, 255, 255, 0.65);

    transform: skewY(-30deg);
}


/* =========================================================
   HEADER TRACK BUTTON
========================================================= */

.header-track-btn {
    width: 121px;
    height: 40px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border: 0;

    border-radius: 14px;

    background: var(--orange);

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 3px 7px rgba(240, 82, 46, 0.15);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.header-track-btn svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.header-track-btn:hover {
    background: var(--orange-dark);

    transform: translateY(-1px);

    box-shadow:
        0 5px 12px rgba(240, 82, 46, 0.20);
}


/* =========================================================
   TRACKING HERO
========================================================= */

.tracking-section {
    min-height: 590px;

    background: #fafaf9;

    display: flex;
    align-items: center;
}

.tracking-container {
    width: min(calc(100% - 126px), var(--max-width));

    margin: 0 auto;

    display: flex;
    justify-content: center;
}

.tracking-content {
    width: 100%;
    max-width: 700px;

    text-align: center;

    margin-top: -8px;
}


/* =========================================================
   TRACKING HEADING
========================================================= */

.tracking-content h1 {
    font-size: 32px;

    line-height: 1.12;

    letter-spacing: -1.3px;

    font-weight: 750;

    color: #101827;

    margin-bottom: 10px;
}

.tracking-content > p {
    color: #53677f;

    font-size: 14px;

    line-height: 1.45;

    margin-bottom: 34px;
}


/* =========================================================
   TRACKING FORM
========================================================= */

.tracking-form {
    width: 512px;

    margin: 0 auto;

    display: flex;
    flex-direction: row;

    align-items: stretch;

    gap: 12px;
}

.tracking-form input {
    width: 358px;
    height: 55px;

    border-radius: 12px;

    border: 1px solid #dedfe2;

    background: #ffffff;

    padding: 0 16px;

    color: #1a202b;

    font-size: 14px;

    outline: none;

    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.05);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.tracking-form input::placeholder {
    color: #aab0b8;
}

.tracking-form input:focus {
    border-color: var(--orange);

    box-shadow:
        0 0 0 3px rgba(240, 82, 46, 0.10);
}

.tracking-form button {
    width: 142px;
    height: 55px;

    flex: 0 0 142px;

    border: 0;

    border-radius: 12px;

    background: var(--orange);

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 3px 8px rgba(240, 82, 46, 0.12);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.tracking-form button:hover {
    background: var(--orange-dark);

    transform: translateY(-1px);
}

.tracking-form button:active {
    transform: translateY(1px);
}


/* =========================================================
   TRACKING MESSAGE
========================================================= */

.tracking-message {
    min-height: 20px;

    margin-top: 14px;

    font-size: 12px;

    color: #606875;
}

.tracking-message.success {
    color: #129b72;
}

.tracking-message.error {
    color: #d8472c;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--navy);

    color: var(--footer-text);

    padding: 82px 0 34px;
}

.footer-container {
    width: min(calc(100% - 126px), var(--max-width));

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(480px, 1.65fr)
        minmax(150px, 0.65fr)
        minmax(385px, 1.25fr);

    gap: 60px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    margin-bottom: 27px;

    gap: 10px;
}

.footer-brand .brand-text strong {
    color: #ffffff;

    font-size: 23px;
    line-height: 21px;
}

.footer-brand .brand-text small {
    color: #8d96a6;

    font-size: 8px;
}

.footer-icon {
    width: 37px;
    height: 37px;

    flex-basis: 37px;

    transform: scale(0.82);
}

.footer-about > p {
    max-width: 470px;

    font-size: 13px;

    line-height: 1.75;

    color: #aeb6c5;
}


/* =========================================================
   SECURITY
========================================================= */

.security-row {
    margin-top: 30px;

    display: flex;
    align-items: center;

    gap: 13px;
}

.system-status {
    height: 26px;

    min-width: 208px;

    padding: 0 12px;

    display: flex;
    align-items: center;

    gap: 7px;

    border-radius: 20px;

    border: 1px solid #007e68;

    background: rgba(0, 128, 105, 0.12);

    color: #00c897;

    font-size: 10px;

    line-height: 1;

    white-space: nowrap;
}

.system-status br {
    display: none;
}

.system-status strong {
    font-weight: 700;
}

.status-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #00c897;

    box-shadow:
        0 0 8px rgba(0, 200, 151, 0.45);
}

.encryption {
    display: flex;
    align-items: center;

    gap: 7px;

    font-size: 10px;

    line-height: 1.15;

    color: #aab2c0;

    white-space: nowrap;
}

.encryption br {
    display: none;
}

.encryption svg {
    width: 15px;
    height: 15px;

    flex: 0 0 15px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column h2 {
    color: #ffffff;

    font-size: 14px;

    line-height: 1;

    font-weight: 750;

    letter-spacing: 0.1px;

    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.footer-links a {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #aab2c0;

    font-size: 13px;

    line-height: 1.2;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a span {
    font-size: 13px;

    color: #727c8d;
}

.footer-links a:hover {
    color: #ffffff;

    transform: translateX(3px);
}

.footer-links a strong {
    color: #b7bfca;
}


/* =========================================================
   SUPPORT
========================================================= */

.support-description {
    font-size: 11px;

    line-height: 1.45;

    color: #aab2c0;

    margin-bottom: 13px;
}

.support-card {
    height: 52px;

    min-height: 52px;

    padding: 8px 13px;

    display: flex;
    align-items: center;

    gap: 10px;

    border-radius: 11px;

    margin-bottom: 15px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.support-card:hover {
    transform: translateY(-1px);
}

.telegram-card {
    background: rgba(30, 113, 158, 0.30);

    border-color: #146f9e;
}

.telegram-card:hover {
    border-color: #2398d3;
}

.email-card {
    background: rgba(255, 255, 255, 0.035);
}

.email-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.support-icon {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 20px;
}

.support-icon svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;
}

.telegram-icon {
    color: #21a7df;
}

.email-icon {
    color: var(--orange);
}

.support-info {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.support-info small {
    font-size: 9px;

    line-height: 1.15;

    color: #8d98a8;

    margin-bottom: 1px;
}

.support-info strong {
    color: #ffffff;

    font-size: 11px;

    line-height: 1.2;

    overflow-wrap: anywhere;
}

.support-arrow {
    margin-left: auto;

    font-size: 14px;

    color: #8993a3;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: min(calc(100% - 126px), var(--max-width));

    margin: 58px auto 0;

    padding-top: 34px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}

.copyright {
    max-width: 520px;

    font-size: 11px;

    line-height: 1.5;

    color: #7e8796;
}

.bottom-links {
    display: flex;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 25px;
}

.bottom-links a {
    font-size: 11px;

    color: #7e8796;

    transition: color 0.2s ease;
}

.bottom-links a:hover {
    color: #ffffff;
}


/* =========================================================
   FLOATING TELEGRAM
========================================================= */

.floating-telegram {
    position: fixed;

    right: 37px;
    bottom: 22px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1ca4dc;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.20);

    z-index: 200;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.floating-telegram:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.25);
}

.floating-telegram svg {
    width: 32px;
    height: 32px;

    fill: none;

    stroke: white;

    stroke-width: 1.5;
}

.online-dot {
    position: absolute;

    right: -1px;
    top: -1px;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #0abf88;

    border: 2px solid #ffffff;
}


/* =========================================================
   TELEGRAM SUPPORT LABEL
   Created entirely with CSS so HTML does not need changing.
========================================================= */

.floating-telegram::before {
    content: "Need Support? Send a DM";

    position: absolute;

    right: 66px;
    top: 50%;

    transform: translateY(-50%);

    width: 212px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 12px;

    border-radius: 20px;

    background: #ffffff;

    color: #1c222b;

    font-size: 11px;

    white-space: nowrap;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.12);

    border: 1px solid #e8e8e8;
}

.floating-telegram::after {
    content: "";

    position: absolute;

    right: 56px;
    top: 50%;

    width: 0;
    height: 0;

    transform: translateY(-50%);

    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 7px solid #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .header-inner,
    .tracking-container,
    .footer-container,
    .footer-bottom {
        width: calc(100% - 50px);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .tracking-section {
        min-height: 560px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    /* HEADER */

    .site-header {
        height: 76px;

        position: relative;
    }

    .header-inner {
        width: calc(100% - 36px);
    }

    .brand {
        gap: 6px;
    }

    .brand-icon {
        width: 30px;
        height: 30px;

        flex-basis: 30px;

        transform: scale(0.68);
    }

    .brand-text strong {
        font-size: 17px;

        line-height: 16px;

        letter-spacing: -0.6px;
    }

    .brand-text small {
        font-size: 6.5px;

        line-height: 8px;

        letter-spacing: 1.35px;
    }

    .header-track-btn {
        width: 91px;
        height: 37px;

        border-radius: 11px;

        gap: 7px;

        font-size: 11px;
    }

    .header-track-btn svg {
        width: 13px;
        height: 13px;
    }


    /* TRACKING */

    .tracking-section {
        min-height: 520px;

        align-items: flex-start;

        padding-top: 175px;
    }

    .tracking-container {
        width: calc(100% - 36px);
    }

    .tracking-content {
        width: 100%;

        margin-top: 0;
    }

    .tracking-content h1 {
        font-size: 30px;

        line-height: 1.12;

        letter-spacing: -1px;

        margin-bottom: 9px;
    }

    .tracking-content > p {
        font-size: 13px;

        line-height: 1.45;

        margin-bottom: 27px;
    }

    .tracking-form {
        width: 100%;

        flex-direction: column;

        gap: 10px;
    }

    .tracking-form input {
        width: 100%;
        height: 52px;

        border-radius: 11px;

        padding: 0 15px;

        font-size: 13px;
    }

    .tracking-form button {
        width: 100%;
        height: 52px;

        flex: none;

        border-radius: 11px;

        font-size: 13px;
    }


    /* FOOTER */

    .site-footer {
        padding: 55px 0 27px;
    }

    .footer-container {
        width: calc(100% - 36px);

        display: flex;

        flex-direction: column;

        gap: 48px;
    }

    .footer-about {
        display: block;
    }

    .footer-brand {
        margin-bottom: 25px;

        gap: 7px;
    }

    .footer-brand .brand-icon {
        transform: scale(0.72);

        transform-origin: left center;

        margin-right: -6px;
    }

    .footer-brand .brand-text strong {
        font-size: 20px;
    }

    .footer-brand .brand-text small {
        font-size: 7px;
    }

    .footer-about > p {
        font-size: 13px;

        line-height: 1.75;
    }

    .security-row {
        margin-top: 26px;

        flex-direction: row;

        align-items: center;

        gap: 10px;
    }

    .system-status {
        min-width: 0;

        width: auto;

        min-height: 26px;

        height: auto;

        padding: 7px 10px;

        font-size: 9px;
    }

    .encryption {
        flex: 1;

        font-size: 9px;

        gap: 5px;
    }

    .encryption svg {
        width: 14px;
        height: 14px;
    }


    /* SERVICES */

    .footer-column h2 {
        font-size: 14px;

        margin-bottom: 19px;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-links a {
        font-size: 13px;

        gap: 9px;
    }


    /* SUPPORT */

    .support-column {
        margin-top: 0;
    }

    .support-description {
        font-size: 11px;

        line-height: 1.5;

        margin-bottom: 13px;
    }

    .support-card {
        height: 52px;

        min-height: 52px;

        padding: 8px 12px;

        border-radius: 11px;

        gap: 9px;
    }

    .support-info small {
        font-size: 8px;
    }

    .support-info strong {
        font-size: 11px;
    }


    /* BOTTOM */

    .footer-bottom {
        width: calc(100% - 36px);

        margin-top: 43px;

        padding-top: 28px;

        display: block;
    }

    .copyright {
        font-size: 10px;

        line-height: 1.6;
    }

    .bottom-links {
        margin-top: 20px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .bottom-links a {
        font-size: 10px;
    }


    /* FLOATING TELEGRAM */

    .floating-telegram {
        width: 56px;
        height: 56px;

        right: 18px;
        bottom: 18px;
    }

    .floating-telegram svg {
        width: 30px;
        height: 30px;
    }

    .floating-telegram::before {
        right: 62px;

        width: 190px;

        height: 34px;

        font-size: 10px;
    }

    .floating-telegram::after {
        right: 53px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .header-inner,
    .tracking-container,
    .footer-container,
    .footer-bottom {
        width: calc(100% - 28px);
    }

    .header-track-btn {
        width: 82px;

        font-size: 10px;
    }

    .tracking-section {
        padding-top: 150px;
    }

    .tracking-content h1 {
        font-size: 27px;
    }

    .tracking-content > p {
        font-size: 12px;
    }

    .system-status {
        font-size: 8px;
    }

    .encryption {
        font-size: 8px;
    }

    .floating-telegram {
        right: 15px;
        bottom: 15px;

        width: 52px;
        height: 52px;
    }

    .floating-telegram::before {
        right: 57px;

        width: 175px;
    }

    .floating-telegram::after {
        right: 48px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* =========================================================
   VIDEO-MATCHED TRACKING RESULT
========================================================= */
.tracking-result{width:100%;max-width:700px;margin:30px auto 0;text-align:left}
.tracking-card{background:#fff;border:1px solid #e4e7eb;border-radius:18px;padding:24px;box-shadow:0 7px 28px rgba(16,24,39,.055)}
.result-head{padding-bottom:18px}
.result-title-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.result-title-row h2{font-size:23px;line-height:1.1;letter-spacing:-.7px;margin:0;font-weight:800;color:#101827}
.status-pill{display:inline-flex;align-items:center;gap:7px;height:26px;padding:0 12px;border:1px solid #f0dfb4;background:#fffaf0;border-radius:999px;color:#9a5c28;font-size:11px;font-weight:750}
.status-pill i{width:8px;height:8px;border-radius:50%;background:#ef5b39;display:block}
.service-pill{display:inline-flex;align-items:center;gap:7px;height:27px;padding:0 12px;border:1px solid #e0e3e8;background:#fbfbfa;border-radius:999px;color:#4f5968;font-size:11px;font-weight:650;margin-top:10px}
.service-pill .plane{font-size:13px}
.scan-line{font-size:12px;line-height:1.45;color:#69717e;margin:10px 0 14px;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;letter-spacing:.15px}
.scan-line b{font-family:inherit;font-weight:400;margin:0 4px;color:#8c929a}
.action-row{display:flex;gap:9px;align-items:center}
.action-btn{height:39px;padding:0 14px;border:0;border-radius:11px;background:#f7f7f8;color:#1c2430;display:inline-flex;align-items:center;justify-content:center;gap:8px;font-size:11px;font-weight:750;cursor:pointer;box-shadow:0 1px 1px rgba(0,0,0,.02);transition:.2s ease}
.action-btn:hover{background:#f0f1f3;transform:translateY(-1px)}
.action-btn.copied{background:#eafaf5;color:#13856d}.share-btn{width:43px;padding:0}.action-icon{font-size:17px;line-height:1}.copy-icon{font-size:16px}
.result-section{border:1px solid #e4e7eb;border-radius:15px;background:#fff;margin-top:12px;overflow:hidden}
.compact-heading{padding:16px 18px 11px}.section-heading{display:flex;align-items:center;gap:13px;padding:18px;border-bottom:1px solid #f0f1f3}.section-heading h3,.compact-heading h3{font-size:13px;line-height:1.25;text-transform:none;letter-spacing:0;color:#171e29;margin:0;font-weight:800}.section-heading p{font-size:11px;line-height:1.45;color:#7a818d;margin:4px 0 0}.heading-icon{width:38px;height:38px;border-radius:50%;display:grid;place-items:center;flex:0 0 38px;font-size:22px}.person-icon{background:#eef7ff;color:#326bd5}.clock-icon{background:#f8efff;color:#7c42d7}.goods-icon{background:#ecfbf5;color:#20a681}.collapse-mark{margin-left:auto;border:0;background:transparent;color:#8d949f;font-size:19px;cursor:pointer}
.description-box{display:grid;grid-template-columns:2fr 1fr 1fr .75fr 1.1fr;gap:8px;padding:2px 18px 14px}.description-box>div{min-width:0}.tracking-card small{display:block;color:#8b929d;font-size:8px;line-height:1.35;letter-spacing:.55px;text-transform:uppercase;margin-bottom:7px}.description-main strong,.mini-spec strong{display:block;font-size:11px;line-height:1.35;color:#171e29}.mini-spec strong em{font-style:normal;font-weight:500;color:#626b77}.charge strong,.orange-price{color:#ef5a38!important}.badge-row{display:flex;gap:8px;flex-wrap:wrap;padding:0 18px 16px}.badge{padding:7px 9px;border-radius:8px;font-size:9px;font-weight:750}.badge.warning{background:#fff3e8;color:#dd5a2e}.badge.orange{background:#fff0e8;color:#df4d2c}.badge.green{background:#ebfbf5;color:#188d70}
.handling{padding:4px 18px 15px}.handling strong{font-size:12px;color:#171e29}.handling p{font-size:11px;line-height:1.55;color:#626b77;margin:8px 0 0}.photo-preview{padding:0 18px 19px}.photo-preview>strong{display:block;font-size:12px;color:#171e29;margin:0 0 10px}.photo-preview img{width:100%;max-width:390px;height:205px;object-fit:cover;object-position:center;border-radius:15px;display:block}
.profile-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:15px 18px 18px}.profile-card{border-radius:11px;background:#fafafa;padding:14px 13px;min-height:126px}.consignee-card{background:#fff8f2;border:1px solid #f1d6c6}.profile-label-row{display:flex;justify-content:space-between;gap:8px;align-items:flex-start;margin-bottom:8px}.profile-label-row small{margin:0}.profile-label-row span{font-size:8px;color:#8c939c;text-align:right}.profile-card h4{font-size:14px;line-height:1.25;margin:0 0 6px;color:#151b24}.profile-card p{font-size:10px;line-height:1.55;color:#69717e;margin:2px 0}
.timeline-card{position:relative;padding:24px 20px 22px 80px}.timeline-line{position:absolute;left:44px;top:34px;bottom:30px;width:2px;background:#e9eaf0}.timeline-event{position:relative;margin-bottom:20px}.timeline-event:last-child{margin-bottom:0}.event-dot{position:absolute;left:-50px;top:5px;width:27px;height:27px;border-radius:50%;background:#ef5a38;color:#fff;display:grid;place-items:center;font-size:15px;box-shadow:0 0 0 7px #fff}.small-dot{width:11px;height:11px;left:-42px;top:8px;background:#ef5a38}.event-card{background:#fafafa;border-radius:13px;padding:14px 15px}.event-top{display:flex;align-items:center;justify-content:space-between;gap:12px}.event-top strong{font-size:13px;color:#141b25}.event-top span{font-size:9px;line-height:1.35;color:#747b86;background:#f0f1f3;border-radius:5px;padding:6px 8px;text-transform:uppercase}.event-card time{display:block;font-size:10px;color:#6c7480;margin-top:8px}.event-card p{font-size:11px;line-height:1.55;color:#555e69;margin:8px 0 0}
.eta-section{margin-top:12px;padding:15px 18px;border:1px solid #f0d9cb;border-radius:12px;background:#fff9f3}.eta-section small{font-size:8px;letter-spacing:.65px;color:#8a919a;display:block;margin-bottom:7px}.eta-section strong{font-size:16px;color:#171e29}.eta-section p{font-size:11px;color:#626b77;margin:6px 0 0}.bottom-eta{margin-bottom:12px}
.goods-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:15px 18px}.goods-grid>div{background:#fbfbfc;border-radius:13px;padding:16px 15px;min-height:73px}.goods-grid strong{display:block;font-size:16px;color:#171e29}.goods-handling{padding:2px 18px 18px}.goods-handling h4{font-size:13px;margin:0 0 9px}.goods-handling p{font-size:11px;line-height:1.55;color:#626b77;margin:0;background:#fbfbfc;border-radius:12px;padding:14px}.goods-photo{padding-bottom:20px}
/* Waybill shown by the video when View Waybill is pressed. */
body.modal-open{overflow:hidden}.waybill-modal[hidden]{display:none}.waybill-modal{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;padding:18px}.waybill-backdrop{position:absolute;inset:0;background:rgba(8,15,27,.62);backdrop-filter:blur(2px)}.waybill-sheet{position:relative;width:min(760px,100%);max-height:92vh;overflow:auto;background:#fff;border-radius:18px;padding:28px;box-shadow:0 25px 80px rgba(0,0,0,.25)}.waybill-close{position:absolute;right:15px;top:12px;border:0;background:#f3f4f5;width:35px;height:35px;border-radius:50%;font-size:24px;cursor:pointer}.waybill-brand{display:flex;align-items:center;gap:9px;margin-bottom:20px}.waybill-head{display:grid;grid-template-columns:1fr 1fr 70px;gap:12px;align-items:center;border:1px solid #e5e7eb;border-radius:14px;padding:18px}.waybill-head small,.wb-title span{font-size:9px;color:#858d98;letter-spacing:.6px}.waybill-head h2{font-size:23px;margin:4px 0}.waybill-status strong{display:block;color:#ed5936;font-size:14px;margin-top:4px}.fake-qr{font-size:52px;text-align:center}.waybill-person,.waybill-particulars{border:1px solid #e5e7eb;border-radius:14px;margin-top:13px;padding:18px}.waybill-person.receiver{border-color:#efcbb8;background:#fffaf6}.wb-title{display:flex;justify-content:space-between;align-items:center;color:#5d6570}.wb-title strong{font-size:13px}.waybill-person hr{border:0;border-top:1px solid #eceef1;margin:12px 0 16px}.waybill-person h3{font-size:16px;margin:0 0 7px}.waybill-person p{font-size:11px;color:#606976;margin:5px 0}.waybill-particulars h3{font-size:13px;margin:0 0 15px}.waybill-spec{display:grid;grid-template-columns:2fr 1fr 1fr .7fr 1fr;gap:12px}.waybill-spec small{font-size:8px}.waybill-spec strong{display:block;font-size:11px;line-height:1.45}
@media(max-width:700px){
  .tracking-result{max-width:100%;margin-top:31px}.tracking-card{border-radius:18px;padding:24px}.result-title-row h2{font-size:22px}.result-head{padding-bottom:17px}.action-row{gap:8px}.action-btn{height:39px;padding:0 12px;font-size:11px}.share-btn{width:42px}.description-box{grid-template-columns:2fr 1fr 1fr .75fr 1.1fr;gap:9px;overflow:hidden}.description-main strong{font-size:10px}.profile-grid{grid-template-columns:1fr;gap:12px}.profile-card{min-height:0;padding:16px}.timeline-card{padding-left:78px}.event-top{align-items:flex-start;flex-direction:column}.event-top span{align-self:flex-start}.photo-preview img{max-width:390px;height:205px}.waybill-modal{padding:0}.waybill-sheet{height:100%;max-height:none;border-radius:0;padding:22px 17px}.waybill-head{grid-template-columns:1fr 1fr 55px}.waybill-spec{grid-template-columns:1.7fr .8fr .9fr .55fr .9fr;gap:8px}.waybill-spec strong{font-size:10px}
}
@media(max-width:400px){.tracking-card{padding:18px}.description-box{grid-template-columns:1.6fr .9fr .9fr .7fr 1fr}.action-btn{padding:0 9px}.action-btn:not(.share-btn) .action-icon{display:none}.photo-preview img{height:180px}.section-heading{padding:15px}.profile-grid,.goods-grid{padding-left:15px;padding-right:15px}}
