/* ------------------------------------------------------------------ *
 * Track Order page — a "boarding pass" styled lookup card. Echoes the
 * gold gradient badge already used for the NFC scan animation (.nfc-ball
 * in styles.css) and the soft radial glow behind the checkout page's
 * product art (.checkout-glow-bg), so the page feels native to the site
 * rather than a one-off.
 * ------------------------------------------------------------------ */

.track-order-section {
    position: relative;
    overflow: hidden;
}

.track-order-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(200, 155, 90, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.track-order-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Thin gold gradient accent along the top edge. */
.track-order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #C89B5A, #E8C58A, #C89B5A);
}

.track-order-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C89B5A 0%, #a87d40 100%);
    box-shadow: 0 14px 28px -8px rgba(200, 155, 90, 0.55);
}

.track-order-icon i {
    color: #FFFFFF;
    font-size: 2rem;
}

/* Ticket-stub divider: a dashed line capped with a small gold bead at each
   end, echoing a perforated boarding-pass stub without needing the card to
   allow overflow (which would also clip the top accent bar above). */
.track-order-divider {
    position: relative;
    border-top: 2px dashed rgba(11, 18, 32, 0.15);
}

.track-order-divider::before,
.track-order-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #C89B5A;
}

.track-order-divider::before {
    left: 0;
}

.track-order-divider::after {
    right: 0;
}

.track-order-input-wrap input {
    height: 3.25rem;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.track-order-input-wrap input:focus {
    border-color: #C89B5A;
    box-shadow: 0 0 0 0.2rem rgba(200, 155, 90, 0.18);
}

.track-order-submit {
    background: linear-gradient(135deg, #16213A 0%, #0B1220 100%);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.track-order-submit:hover,
.track-order-submit:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(11, 18, 32, 0.45);
    color: #FFFFFF;
}
