/* ------------------------------------------------------------------
 * Magento360_VesTrackorderHyvaCompatibility
 *
 * Most of the order-tracking page styling is now expressed in Tailwind
 * utility classes inside the compat-module templates. This file only carries
 * the few rules Tailwind can't express cleanly:
 *
 *   1. the red-badge tab's downward triangle indicator,
 *   2. hard suppression of upstream Luma artefacts that the Hyvä fallback
 *      may still render (action-toolbar with "View Another Order", QR image,
 *      gift-message section), in case any cached / fallback path slips
 *      through.
 *
 * Keep this file small. If you find yourself adding general layout rules,
 * prefer Tailwind utilities in the template instead.
 * ------------------------------------------------------------------ */

/* downward triangle under the active "items ordered" badge */
.tabset-active::after {
    content: '';
    position: absolute;
    left: 24px;
    bottom: -7px;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top-color: var(--primary, #d85909);
}

/* Failsafes — only fire if an upstream / cached path renders these. */
#orderinfo .order-actions-toolbar,
#orderinfo .qrcode,
#orderinfo .actions-toolbar .secondary .action.back,
#orderinfo .block-order-details-gift-message {
    display: none !important;
}
