/**
 * Front-end only: ensure the Drupal/Gin admin toolbar leaves no residual bar or
 * top spacing on the Gafoor app.
 *
 * This stylesheet is loaded by the gafoor (front-end) theme only. Real admin
 * pages use the Gin theme, so the backend toolbar is unaffected. Server-side,
 * gafoor_vendor_pro_toolbar_alter() already removes the toolbar on non-admin
 * routes; this is a belt-and-braces cleanup for any leftover markup/padding.
 */
/* Core admin toolbar. */
#toolbar-administration,
.toolbar-oriented,
.toolbar-loading #toolbar-administration,
/* Gin's primary + secondary (front-end) toolbars. */
.gin-secondary-toolbar,
.gin-secondary-toolbar--frontend,
.region-sticky-watermark {
  display: none !important;
}

/* Remove any top spacing these toolbars reserve on the body/html. */
html,
body.toolbar-fixed,
body.toolbar-horizontal,
body.toolbar-tray-open,
body.gin--horizontal-toolbar,
body.gin--vertical-toolbar,
body.gin--has-sticky-toolbar {
  padding-top: 0 !important;
}
