/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Custom CSS for Nexus Theme
 *
 * This file allows you to customize the theme colors and styles for the entire Nexus template.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --primary: #4b5563; use --primary: #your-color;
 * - You can also override any CSS properties here.
 */

:root {
    --white: #fff;

    /* Neutral shades */
    --neutral-50: #fbf9fa;
    --neutral-100: #f4f5f7;
    --neutral-200: #e4e4e7;
    --neutral-300: #d0d5dd;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --neutral-950: #030712;

    /* Neutral shades */
    /* define own pallet with brand colors */
    --primary-50: var(--neutral-50);
    --primary-100: var(--neutral-100);
    --primary-200: var(--neutral-200);
    --primary-300: var(--neutral-300);
    --primary-400: var(--neutral-400);
    --primary-500: var(--neutral-500);
    --primary-600: var(--neutral-600);
    --primary-700: var(--neutral-700);
    --primary-800: var(--neutral-800);
    --primary-900: var(--neutral-900);
    --primary-950: var(--neutral-900);

    /* Primary colors */
    /* Use shades from comments if `primary` colors use other colors, then neutral */
    --primary: var(--neutral-900);          /* var(--primary-600) */
    --primary-lifted: var(--neutral-800);   /* var(--primary-700) */
    --primary-accented: var(--neutral-700); /* var(--primary-800) */

    /* Secondary colors */
    --secondary: var(--neutral-500);
    --secondary-lifted: var(--neutral-600);
    --secondary-accented: var(--neutral-700);

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: var(--neutral-900);
    --grayscale-lifted: var(--neutral-800);
    --grayscale-accented: var(--neutral-700);

    /* Neutral colors */
    --neutral: var(--neutral-500);
    --neutral-lifted: var(--neutral-600);
    --neutral-accented: var(--neutral-700);

    /* Text neutral colors */
    --text-inverted: var(--white);
    --text-muted: var(--neutral-400);
    --text-lifted: var(--neutral-500);
    --text-accented: var(--neutral-600);
    --text: var(--neutral-900);

    /* Border neutral colors */
    --border-muted: var(--neutral-200);
    --border: var(--neutral-300);
    --border-lifted: var(--neutral-400);
    --border-accented: var(--neutral-600);

    /* Background neutral colors */
    --bg: var(--white);
    --bg-muted: var(--neutral-50);
    --bg-lifted: var(--neutral-100);
    --bg-accented: var(--neutral-200);
    --bg-inverted: var(--neutral-900);

    /* Additional colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Additional custom properties */
    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    /* Other */
    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}


/* Generated by website2025/scripts/export-whmcs-integration.mjs.
 * Do not edit this output in whmcs-theme.
 * Inputs: src/index.css + integrations/whmcs/styles/virgo-whmcs-adapter.css
 */

:root {
  /* Existing theme vars */
  --color-primary: #064D3E;
  --color-secondary: #FFA827;
  --color-accent: #60C5A8;
  --color-accent-strong: #0A6B58;
  --color-primary-light: #0A6B4F;
  --color-primary-hover: #043529;

  /* Keep light = base to prevent accidental non-compliant usage with white text */
  --color-secondary-light: #FFE0B2;
  --color-secondary-hover: #FB8C00;

  --color-accent-light: #80D4C4;
  --color-accent-hover: #4DB6AC;

  /* CTA tokens (added) */
  --color-cta: #047857;         /* emerald-700 (matches previous inline style) */
  --color-cta-hover: #065F46;   /* emerald-800 */
  --color-highlight: #FF9800;

  /* Pricing CTA hover (to preserve previous exact appearance) */
  --color-pricing-cta-hover: #204c3f;

  /* Neutral colors (moved from theme.ts) */
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;

  /* Scroll indicator tokens (to preserve previous exact appearance) */
  --color-scroll-indicator: rgba(122, 122, 124, 0.918);
  --color-scroll-indicator-light: rgb(123, 124, 124);

  /* Status colors (moved from theme.ts) */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* Common UI tokens */
  --color-on-primary: #ffffff;
  --color-on-secondary: #ffffff;
  --color-on-accent: #ffffff;

  --overlay-soft: rgba(0, 0, 0, 0.08);
  --overlay-strong: rgba(0, 0, 0, 0.14);
}

/* WHMCS Nexus presentation adapter.
 * Canonical source: website2025/integrations/whmcs.
 * Shared brand colour tokens are exported from website2025/src/index.css.
 */
/* Virgo Networks brand overlay for WHMCS 9.x templates and order forms.
 * Generated template copies remain updateable from official WHMCS GitHub release tags.
 */
body { color: var(--color-gray-900); }
a, .text-primary { color: var(--color-accent-strong); }
a:hover, a:focus { color: var(--color-primary); }

.btn-primary,
.btn-success,
.btn-order-now,
.btn-checkout,
button[type="submit"].btn-primary {
  color: #fff;
  background-color: var(--color-cta);
  border-color: var(--color-cta);
  border-radius: var(--virgo-radius);
}
.btn-primary:hover, .btn-primary:focus,
.btn-success:hover, .btn-success:focus,
.btn-order-now:hover, .btn-checkout:hover {
  color: #fff;
  background-color: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
}

.navbar-main, .main-navbar-wrapper, .navbar-primary,
.header, header.header { border-color: var(--color-gray-200); }
.navbar-main, .navbar-primary { background: var(--color-primary); }
.navbar-main .navbar-nav > li > a,
.navbar-primary .navbar-nav > li > a { color: #fff; }
.navbar-main .navbar-nav > li > a:hover,
.navbar-primary .navbar-nav > li > a:hover { color: var(--color-secondary); }

.card, .panel, .product, .product-info, .domain-pricing .tld-pricing-header {
  border-radius: var(--virgo-radius);
  border-color: var(--color-gray-200);
}
.card:hover, .panel:hover, .product:hover { box-shadow: var(--virgo-shadow); }
.card-header, .panel-primary > .panel-heading, .product .product-header {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.alert-success { border-color: var(--color-accent); }
.form-control:focus {
  border-color: var(--color-accent-strong);
  box-shadow: 0 0 0 .2rem rgba(10, 107, 88, .16);
}

footer, .footer, #footer { background-color: var(--color-primary); color: #fff; }
footer a, .footer a, #footer a { color: var(--color-accent); }
footer a:hover, .footer a:hover, #footer a:hover { color: var(--color-secondary); }

/* Virgo Nexus header: website identity row plus a quieter WHMCS utility row.
 *
 * The primary row mirrors website2025/src/components/Header.tsx and DesktopNav.tsx:
 * max-w-6xl container, 280x62 logo, text-lg desktop navigation and rounded
 * green login/account CTA. The utility row preserves the key WHMCS tasks.
 */
header#header.header.virgo-portal-header {
  background: #ffffff !important;
  border: 0 !important;
  color: var(--color-gray-700) !important;
  display: block !important;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  width: 100% !important;
  z-index: 40 !important;
}

header#header.virgo-portal-header *,
header#header.virgo-portal-header *::before,
header#header.virgo-portal-header *::after {
  box-sizing: border-box !important;
}

header#header.virgo-portal-header .virgo-primary-header {
  background: #ffffff !important;
  border: 0 !important;
}

header#header.virgo-portal-header .virgo-header-inner {
  align-items: center !important;
  display: flex !important;
  justify-content: space-between !important;
  margin: 0 auto !important;
  max-width: 72rem !important; /* Tailwind max-w-6xl */
  min-height: 5.875rem !important;
  padding: 1rem .5rem !important; /* px-2 py-4 */
  position: relative !important;
  width: 100% !important;
}

header#header.virgo-portal-header .virgo-header-logo {
  align-items: center !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
}

header#header.virgo-portal-header .virgo-header-logo img {
  display: block !important;
  height: auto !important;
  max-height: none !important;
  max-width: 100% !important;
  width: 280px !important;
}

header#header.virgo-portal-header .virgo-primary-navigation {
  align-items: center !important;
  display: flex !important;
  flex: 0 0 auto !important;
  gap: 2rem !important; /* website desktop space-x-8 */
  justify-content: flex-end !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
}

header#header.virgo-portal-header .virgo-primary-link,
header#header.virgo-portal-header button.virgo-primary-link,
header#header.virgo-portal-header .virgo-primary-link:link,
header#header.virgo-portal-header .virgo-primary-link:visited {
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--color-gray-700) !important; /* website text-gray-700 */
  cursor: pointer !important;
  display: inline-flex !important;
  font-family: inherit !important;
  font-size: 1.125rem !important; /* text-lg */
  font-weight: 400 !important;
  gap: .5rem !important;
  line-height: 1.75rem !important;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
  transition: color .2s ease !important;
  white-space: nowrap !important;
}

header#header.virgo-portal-header .virgo-primary-link:hover,
header#header.virgo-portal-header .virgo-primary-link:focus {
  color: var(--color-accent-strong) !important;
  outline: none !important;
  text-decoration: none !important;
}

header#header.virgo-portal-header .virgo-primary-link i {
  font-size: 1rem !important;
  width: 1rem !important;
}

header#header.virgo-portal-header .virgo-primary-dropdown {
  position: relative !important;
}

header#header.virgo-portal-header .virgo-primary-menu {
  background: #ffffff !important;
  border: 1px solid var(--color-gray-200) !important;
  border-radius: .5rem !important;
  box-shadow: 0 10px 25px rgba(17, 24, 39, .12) !important;
  display: none !important;
  padding: 1rem !important;
  position: absolute !important;
  right: 0 !important;
  top: calc(100% + .625rem) !important;
  z-index: 60 !important;
}

header#header.virgo-portal-header .virgo-primary-dropdown:hover .virgo-primary-menu,
header#header.virgo-portal-header .virgo-primary-dropdown:focus-within .virgo-primary-menu {
  display: block !important;
}

header#header.virgo-portal-header .virgo-company-menu {
  min-width: 13rem !important;
}

header#header.virgo-portal-header .virgo-services-menu {
  display: none !important;
  gap: 1.5rem !important;
  min-width: 36rem !important;
  padding: 1.25rem 1.5rem !important;
}

header#header.virgo-portal-header .virgo-primary-dropdown:hover .virgo-services-menu,
header#header.virgo-portal-header .virgo-primary-dropdown:focus-within .virgo-services-menu {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

header#header.virgo-portal-header .virgo-primary-menu h3 {
  color: var(--color-primary) !important;
  font-family: inherit !important;
  font-size: .75rem !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  line-height: 1rem !important;
  margin: 0 0 .5rem !important;
  text-transform: uppercase !important;
}

header#header.virgo-portal-header .virgo-primary-menu a,
header#header.virgo-portal-header .virgo-primary-menu a:link,
header#header.virgo-portal-header .virgo-primary-menu a:visited {
  border-radius: .375rem !important;
  color: var(--color-gray-700) !important;
  display: block !important;
  font-family: inherit !important;
  font-size: .875rem !important;
  font-weight: 400 !important;
  line-height: 1.25rem !important;
  margin: 0 !important;
  padding: .6rem .75rem !important;
  text-decoration: none !important;
}

header#header.virgo-portal-header .virgo-primary-menu a:hover,
header#header.virgo-portal-header .virgo-primary-menu a:focus {
  background: var(--color-gray-100) !important;
  color: var(--color-primary) !important;
  text-decoration: none !important;
}

header#header.virgo-portal-header .virgo-account-button,
header#header.virgo-portal-header .virgo-account-button:link,
header#header.virgo-portal-header .virgo-account-button:visited {
  align-items: center !important;
  background: var(--color-primary) !important;
  border: 0 !important;
  border-radius: .75rem !important; /* rounded-xl */
  color: #ffffff !important;
  display: inline-flex !important;
  font-family: inherit !important;
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  gap: .5rem !important;
  line-height: 1.75rem !important;
  min-height: 44px !important;
  padding: .75rem 1rem !important; /* website px-4 py-3 */
  text-decoration: none !important;
  transition: background-color .2s ease !important;
  white-space: nowrap !important;
}

header#header.virgo-portal-header .virgo-account-button:hover,
header#header.virgo-portal-header .virgo-account-button:focus {
  background: var(--color-accent-strong) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

header#header.virgo-portal-header .virgo-mobile-toggle {
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: .5rem !important;
  color: var(--color-gray-700) !important;
  display: none !important;
  font-size: 1.5rem !important;
  height: 2.75rem !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: .5rem !important;
  width: 2.75rem !important;
}

header#header.virgo-portal-header .virgo-utility-header {
  background: #ffffff !important;
  border-bottom: 1px solid var(--color-gray-200) !important;
  border-top: 1px solid var(--color-gray-100) !important;
  color: var(--color-gray-700) !important;
  width: 100% !important;
}

header#header.virgo-portal-header .virgo-utility-inner {
  align-items: center !important;
  display: flex !important;
  gap: 1.5rem !important;
  justify-content: space-between !important;
  margin: 0 auto !important;
  max-width: 72rem !important;
  min-height: 3.125rem !important;
  padding: .5rem .5rem !important;
  width: 100% !important;
}

header#header.virgo-portal-header .virgo-utility-navigation {
  align-items: center !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1.5rem !important;
  min-width: 0 !important;
}

header#header.virgo-portal-header .virgo-utility-navigation a,
header#header.virgo-portal-header .virgo-utility-navigation a:link,
header#header.virgo-portal-header .virgo-utility-navigation a:visited {
  color: var(--color-gray-600) !important;
  font-family: inherit !important;
  font-size: .875rem !important;
  font-weight: 500 !important;
  line-height: 1.25rem !important;
  padding: .35rem 0 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

header#header.virgo-portal-header .virgo-utility-navigation a:hover,
header#header.virgo-portal-header .virgo-utility-navigation a:focus {
  color: var(--color-primary) !important;
  text-decoration: none !important;
}

header#header.virgo-portal-header .virgo-utility-actions {
  align-items: center !important;
  display: flex !important;
  flex: 0 0 auto !important;
  gap: .5rem !important;
}

header#header.virgo-portal-header .virgo-cart-button,
header#header.virgo-portal-header .virgo-notification-button {
  align-items: center !important;
  background: #ffffff !important;
  border: 1px solid var(--color-gray-200) !important;
  border-radius: .5rem !important;
  color: var(--color-gray-600) !important;
  display: inline-flex !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  height: 2.375rem !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  text-decoration: none !important;
  width: 2.375rem !important;
}

header#header.virgo-portal-header .virgo-cart-button:hover,
header#header.virgo-portal-header .virgo-cart-button:focus,
header#header.virgo-portal-header .virgo-notification-button:hover,
header#header.virgo-portal-header .virgo-notification-button:focus {
  border-color: var(--color-accent) !important;
  color: var(--color-primary) !important;
  text-decoration: none !important;
}

header#header.virgo-portal-header .virgo-cart-badge,
header#header.virgo-portal-header .virgo-utility-badge {
  align-items: center !important;
  background: var(--color-secondary) !important;
  border-radius: 9999px !important;
  color: var(--color-gray-900) !important;
  display: inline-flex !important;
  font-size: .6875rem !important;
  font-weight: 700 !important;
  height: 1.15rem !important;
  justify-content: center !important;
  line-height: 1 !important;
  min-width: 1.15rem !important;
  padding: 0 .2rem !important;
  position: absolute !important;
  right: -.4rem !important;
  top: -.4rem !important;
}

.master-breadcrumb {
  background: var(--color-gray-50) !important;
  border-bottom: 1px solid var(--color-gray-200) !important;
  color: var(--color-gray-500) !important;
  margin: 0 !important;
  padding: 0 !important;
}

.master-breadcrumb > .container {
  margin: 0 auto !important;
  max-width: 72rem !important;
  padding: .65rem .5rem !important;
}

.master-breadcrumb .breadcrumb {
  background: transparent !important;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: .875rem !important;
  line-height: 1.25rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

.master-breadcrumb .breadcrumb a {
  color: var(--color-accent-strong) !important;
}

@media (max-width: 1199.98px) {
  header#header.virgo-portal-header .virgo-header-inner {
    min-height: 4.75rem !important;
    padding: .75rem 1rem !important;
  }

  header#header.virgo-portal-header .virgo-header-logo img {
    max-width: min(280px, calc(100vw - 5rem)) !important;
  }

  header#header.virgo-portal-header .virgo-mobile-toggle {
    display: inline-flex !important;
  }

  header#header.virgo-portal-header .virgo-primary-navigation {
    align-items: stretch !important;
    background: #ffffff !important;
    border-top: 1px solid var(--color-gray-200) !important;
    flex-direction: column !important;
    gap: 0 !important;
    left: 0 !important;
    padding: .75rem 1rem 1rem !important;
    position: absolute !important;
    right: 0 !important;
    top: 100% !important;
    z-index: 70 !important;
  }

  header#header.virgo-portal-header .virgo-primary-navigation:not(.show) {
    display: none !important;
  }

  header#header.virgo-portal-header .virgo-primary-link,
  header#header.virgo-portal-header button.virgo-primary-link {
    justify-content: space-between !important;
    padding: .75rem 0 !important;
    width: 100% !important;
  }

  header#header.virgo-portal-header .virgo-primary-menu,
  header#header.virgo-portal-header .virgo-services-menu {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 0 .5rem !important;
    min-width: 0 !important;
    padding: 0 0 .5rem 1rem !important;
    position: static !important;
  }

  header#header.virgo-portal-header .virgo-primary-dropdown:hover .virgo-services-menu,
  header#header.virgo-portal-header .virgo-primary-dropdown:focus-within .virgo-services-menu {
    display: block !important;
  }

  header#header.virgo-portal-header .virgo-account-button {
    justify-content: center !important;
    margin-top: .5rem !important;
    width: 100% !important;
  }

  header#header.virgo-portal-header .virgo-utility-inner {
    gap: 1rem !important;
    padding: .5rem 1rem !important;
  }

  header#header.virgo-portal-header .virgo-utility-navigation {
    flex-wrap: nowrap !important;
    gap: 1rem !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
  }

  header#header.virgo-portal-header .virgo-utility-navigation::-webkit-scrollbar {
    display: none !important;
  }
}


/* Website header pixel calibration.
 *
 * Tailwind's website values resolve against a 16px root. WHMCS parent themes
 * can alter rem-derived measurements, making a translated 72rem container and
 * rem-based vertical padding appear wider/taller than the live website.
 * These final scoped rules use the resolved pixel values of Header.tsx /
 * DesktopNav.tsx so the Nexus primary row aligns to the public-site reference.
 */
header#header.header.virgo-portal-header .virgo-header-inner {
  max-width: 1152px !important; /* measured website max-w-6xl */
  height: 84px !important; /* measured public website desktop header height */
  min-height: 84px !important;
  padding: 16px 8px !important; /* measured website px-2 py-4 */
}

header#header.header.virgo-portal-header .virgo-primary-navigation {
  gap: 32px !important; /* space-x-8 */
}

header#header.header.virgo-portal-header .virgo-primary-link,
header#header.header.virgo-portal-header button.virgo-primary-link,
header#header.header.virgo-portal-header .virgo-primary-link:link,
header#header.header.virgo-portal-header .virgo-primary-link:visited {
  font-size: 18px !important; /* text-lg */
  /* Do not introduce a gap between the icon and the label.  The website
     uses a margin on the SVG instead of a gap on the link itself.  If we
     leave a gap here the navigation items become ~8px wider than the
     corresponding items on virgonetworks.co.uk. */
  gap: 0 !important;
  line-height: 28px !important;
}

header#header.header.virgo-portal-header .virgo-primary-link i {
  font-size: 16px !important;
  width: 16px !important;
}

header#header.header.virgo-portal-header .virgo-header-svg {
  display: inline-block !important;
  flex: 0 0 auto !important;
  vertical-align: middle !important;
}

header#header.header.virgo-portal-header .virgo-header-svg-16 {
  height: 16px !important;
  margin-right: 8px !important; /* website mr-2 */
  width: 16px !important;
}

header#header.header.virgo-portal-header .virgo-header-caret {
  height: 16px !important;
  margin-left: 8px !important; /* website ml-2 */
  width: 16px !important;
}

header#header.header.virgo-portal-header .virgo-primary-link,
header#header.header.virgo-portal-header button.virgo-primary-link,
header#header.header.virgo-portal-header .virgo-account-button {
  gap: 0 !important; /* website spacing supplied by SVG margin utilities */
}

header#header.header.virgo-portal-header .virgo-account-button,
header#header.header.virgo-portal-header .virgo-account-button:link,
header#header.header.virgo-portal-header .virgo-account-button:visited {
  border-radius: 12px !important; /* rounded-xl */
  font-size: 18px !important;
  /*
   * The SVG already supplies the website-equivalent 8px right margin.
   * A button gap here would double that space and make Login/My Account
   * wider than the public-site CTA.
   */
  gap: 0 !important;
  line-height: 28px !important;
  min-height: 44px !important;
  padding: 12px 16px !important; /* px-4 py-3 */
}

header#header.header.virgo-portal-header .virgo-primary-menu {
  border-radius: 8px !important;
  padding: 16px !important;
  top: calc(100% + 10px) !important;
}

header#header.header.virgo-portal-header .virgo-services-menu {
  gap: 24px !important;
  min-width: 576px !important;
  padding: 20px 24px !important;
}

header#header.header.virgo-portal-header .virgo-company-menu {
  min-width: 208px !important;
}

header#header.header.virgo-portal-header .virgo-primary-menu h3 {
  font-size: 12px !important;
  line-height: 16px !important;
  margin: 0 0 8px !important;
}

header#header.header.virgo-portal-header .virgo-primary-menu a {
  border-radius: 6px !important;
  font-size: 14px !important;
  line-height: 20px !important;
  padding: 10px 12px !important;
}

header#header.header.virgo-portal-header .virgo-utility-inner {
  max-width: 1152px !important;
  min-height: 40px !important;
  padding: 3px 8px !important;
}

header#header.header.virgo-portal-header .virgo-utility-navigation {
  gap: 24px !important;
}

header#header.header.virgo-portal-header .virgo-utility-navigation a {
  font-size: 14px !important;
  line-height: 20px !important;
  padding: 5px 0 !important;
}

header#header.header.virgo-portal-header .virgo-cart-button,
header#header.header.virgo-portal-header .virgo-notification-button {
  border-radius: 8px !important;
  font-size: 15px !important;
  height: 34px !important;
  width: 34px !important;
}

.master-breadcrumb > .container {
  max-width: 1152px !important;
  padding: 8px !important;
}

.master-breadcrumb .breadcrumb {
  font-size: 14px !important;
  line-height: 20px !important;
}

@media (max-width: 1199.98px) {
  header#header.header.virgo-portal-header .virgo-header-inner {
    height: auto !important;
    min-height: 79.91px !important; /* measured website mobile header height */
    padding: 16px 8px !important; /* measured website mobile px-2 py-4 */
  }

  header#header.header.virgo-portal-header .virgo-primary-navigation {
    padding: 12px 16px 16px !important;
  }

  header#header.header.virgo-portal-header .virgo-primary-link,
  header#header.header.virgo-portal-header button.virgo-primary-link {
    padding: 12px 0 !important;
  }

  header#header.header.virgo-portal-header .virgo-account-button {
    margin-top: 8px !important;
  }

  header#header.header.virgo-portal-header .virgo-utility-inner {
    padding: 3px 16px !important;
  }
}


/* Virgo public-site footer: isolated Tailwind-equivalent component.
 *
 * Source alignment target: website2025/src/components/Footer.tsx.
 * Nexus and Twenty-One ship different inherited/footer link rules.
 * Presentation-critical properties within this component intentionally use
 * high specificity and selected !important declarations so both generated
 * system themes render the same footer.
 */
footer#footer.footer.virgo-site-footer {
  --virgo-footer-white: #ffffff;
  --virgo-footer-black: var(--color-gray-900);
  background: var(--color-primary) !important;
  border: 0 !important;
  box-sizing: border-box !important;
  color: var(--virgo-footer-white) !important;
  display: block !important;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  position: relative !important;
  text-align: left !important;
  width: 100% !important;
}

footer#footer.virgo-site-footer *,
footer#footer.virgo-site-footer *::before,
footer#footer.virgo-site-footer *::after {
  box-sizing: border-box !important;
}

footer#footer.virgo-site-footer .virgo-footer-inner {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 2.5rem 1rem !important; /* py-10 px-4 */
  width: 100% !important;
}

footer#footer.virgo-site-footer .virgo-footer-grid {
  align-items: start !important;
  display: grid !important;
  gap: 2.5rem !important; /* gap-10 */
  grid-template-columns: minmax(0, 1fr) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

footer#footer.virgo-site-footer .virgo-footer-brand,
footer#footer.virgo-site-footer .virgo-footer-section,
footer#footer.virgo-site-footer .virgo-footer-registration {
  background: transparent !important;
  border: 0 !important;
  color: var(--virgo-footer-white) !important;
  margin: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

footer#footer.virgo-site-footer h2,
footer#footer.virgo-site-footer h3,
footer#footer.virgo-site-footer h4,
footer#footer.virgo-site-footer p,
footer#footer.virgo-site-footer ul,
footer#footer.virgo-site-footer li,
footer#footer.virgo-site-footer address {
  background: transparent !important;
  border: 0 !important;
  color: var(--virgo-footer-white) !important;
  font-family: inherit !important;
  letter-spacing: normal !important;
  padding: 0 !important;
  text-align: left !important;
  text-transform: none !important;
}

footer#footer.virgo-site-footer .virgo-footer-brand-name {
  color: var(--virgo-footer-white) !important;
  display: block !important;
  font-size: 1.5rem !important; /* text-2xl */
  font-weight: 700 !important;
  line-height: 2rem !important;
  margin: 0 0 1rem !important; /* space-y-4 */
}

footer#footer.virgo-site-footer .virgo-footer-section h3 {
  color: var(--virgo-footer-white) !important;
  font-size: 1.25rem !important; /* text-xl */
  font-weight: 600 !important;
  line-height: 1.75rem !important;
  margin: 0 0 1rem !important; /* space-y-4 */
}

footer#footer.virgo-site-footer .virgo-footer-description {
  color: var(--virgo-footer-white) !important;
  font-size: .875rem !important; /* text-sm */
  font-weight: 400 !important;
  line-height: 1.625 !important; /* leading-relaxed */
  margin: 0 0 1rem !important;
  max-width: none !important;
}

footer#footer.virgo-site-footer .virgo-footer-social {
  align-items: center !important;
  display: flex !important;
  gap: 1rem !important; /* space-x-4 */
  margin: 0 !important;
  padding: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-social a,
footer#footer.virgo-site-footer .virgo-footer-social a:link,
footer#footer.virgo-site-footer .virgo-footer-social a:visited {
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--virgo-footer-white) !important;
  display: inline-flex !important;
  font-size: 1.25rem !important;
  height: 1.25rem !important; /* h-5 */
  justify-content: center !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
  width: 1.25rem !important; /* w-5 */
}

footer#footer.virgo-site-footer .virgo-footer-social a:hover,
footer#footer.virgo-site-footer .virgo-footer-social a:focus {
  color: var(--color-accent) !important;
}

footer#footer.virgo-site-footer .virgo-footer-links {
  display: block !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-links li {
  color: var(--virgo-footer-white) !important;
  display: block !important;
  font-size: .875rem !important; /* text-sm */
  line-height: 1.25rem !important;
  margin: 0 0 .5rem !important; /* space-y-2 */
  padding: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-links li:last-child {
  margin-bottom: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-links a,
footer#footer.virgo-site-footer .virgo-footer-links a:link,
footer#footer.virgo-site-footer .virgo-footer-links a:visited,
footer#footer.virgo-site-footer .virgo-footer-legal a,
footer#footer.virgo-site-footer .virgo-footer-legal a:link,
footer#footer.virgo-site-footer .virgo-footer-legal a:visited {
  background: transparent !important;
  border: 0 !important;
  color: var(--virgo-footer-white) !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
}

footer#footer.virgo-site-footer .virgo-footer-links a:hover,
footer#footer.virgo-site-footer .virgo-footer-links a:focus,
footer#footer.virgo-site-footer .virgo-footer-legal a:hover,
footer#footer.virgo-site-footer .virgo-footer-legal a:focus {
  color: var(--color-accent) !important;
  text-decoration: none !important;
}

footer#footer.virgo-site-footer .virgo-footer-contact p {
  color: var(--virgo-footer-white) !important;
  font-size: .875rem !important; /* text-sm */
  line-height: 1.25rem !important;
  margin: 0 0 1rem !important;
}

footer#footer.virgo-site-footer .virgo-footer-contact strong {
  color: var(--virgo-footer-white) !important;
  display: block !important;
  font-weight: 600 !important;
}

footer#footer.virgo-site-footer .virgo-footer-contact p span {
  color: var(--virgo-footer-white) !important;
  display: block !important;
  font-weight: 500 !important;
}

footer#footer.virgo-site-footer a.virgo-footer-cta,
footer#footer.virgo-site-footer a.virgo-footer-cta:link,
footer#footer.virgo-site-footer a.virgo-footer-cta:visited {
  align-items: center !important;
  background: var(--color-secondary) !important;
  border: 0 !important;
  border-radius: .5rem !important; /* rounded-lg */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1) !important; /* shadow-md */
  color: var(--virgo-footer-black) !important; /* text-gray-900 */
  display: inline-flex !important;
  font-family: inherit !important;
  font-size: .875rem !important; /* text-sm */
  font-weight: 600 !important;
  gap: .5rem !important; /* space-x-2 */
  line-height: 1.25rem !important;
  margin: 0 !important;
  padding: .625rem 1.25rem !important; /* py-2.5 px-5 */
  text-decoration: none !important;
  transition: all .2s ease !important;
}

footer#footer.virgo-site-footer a.virgo-footer-cta:hover,
footer#footer.virgo-site-footer a.virgo-footer-cta:focus {
  background: var(--color-secondary-hover) !important;
  color: var(--virgo-footer-black) !important;
  text-decoration: none !important;
  transform: scale(1.05) !important;
}

footer#footer.virgo-site-footer a.virgo-footer-cta:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .6), 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1) !important;
}

footer#footer.virgo-site-footer .virgo-footer-svg {
  display: inline-block !important;
  flex: 0 0 auto !important;
  vertical-align: middle !important;
}

footer#footer.virgo-site-footer .virgo-footer-svg-social {
  height: 20px !important; /* measured website h-5 w-5 */
  width: 20px !important;
}

footer#footer.virgo-site-footer .virgo-footer-svg-arrow {
  color: var(--virgo-footer-black) !important;
  height: 16px !important; /* measured website h-4 w-4 */
  width: 16px !important;
}

footer#footer.virgo-site-footer .virgo-footer-registration-grid {
  color: var(--virgo-footer-white) !important;
  display: grid !important;
  gap: 1.5rem !important; /* gap-6 */
  grid-template-columns: minmax(0, 1fr) !important;
  margin: 2rem 0 0 !important; /* mt-8 */
  padding: 0 !important;
  width: 100% !important;
}

footer#footer.virgo-site-footer .virgo-footer-registration h4 {
  color: var(--virgo-footer-white) !important;
  font-size: .875rem !important; /* text-sm */
  font-weight: 600 !important;
  line-height: 1.25rem !important;
  margin: 0 0 .25rem !important; /* mb-1 */
}

footer#footer.virgo-site-footer .virgo-footer-registration p,
footer#footer.virgo-site-footer .virgo-footer-registration address {
  color: var(--virgo-footer-white) !important;
  font-size: .75rem !important; /* text-xs */
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1rem !important;
  margin: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-bottom {
  align-items: center !important;
  border: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, .2) !important;
  color: var(--virgo-footer-white) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: .5rem !important; /* space-y-2 */
  justify-content: space-between !important;
  margin: 1.5rem 0 0 !important; /* mt-6 */
  padding: 1rem 0 0 !important; /* pt-4 */
  width: 100% !important;
}

footer#footer.virgo-site-footer .virgo-footer-copyright {
  color: var(--virgo-footer-white) !important;
  font-size: .75rem !important; /* text-xs */
  font-weight: 400 !important;
  line-height: 1rem !important;
  margin: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-legal {
  align-items: center !important;
  color: var(--virgo-footer-white) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  font-size: .75rem !important; /* text-xs */
  font-weight: 400 !important;
  gap: .75rem !important; /* gap-3 */
  justify-content: center !important;
  line-height: 1rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

footer#footer.virgo-site-footer .virgo-footer-locale {
  align-items: center !important;
  background: rgba(255, 255, 255, .1) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: .375rem !important;
  color: var(--virgo-footer-white) !important;
  display: inline-flex !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 400 !important;
  gap: .375rem !important;
  line-height: inherit !important;
  margin: 0 !important;
  padding: .25rem .5rem !important;
  text-transform: none !important;
}

footer#footer.virgo-site-footer .virgo-footer-locale:hover,
footer#footer.virgo-site-footer .virgo-footer-locale:focus {
  background: rgba(255, 255, 255, .18) !important;
  color: var(--virgo-footer-white) !important;
}

@media (min-width: 640px) {
  footer#footer.virgo-site-footer .virgo-footer-inner {
    max-width: 640px !important;
  }
}

@media (min-width: 768px) {
  footer#footer.footer.virgo-site-footer {
    padding-left: 4rem !important; /* md:px-16 */
    padding-right: 4rem !important;
  }

  footer#footer.virgo-site-footer .virgo-footer-inner {
    max-width: 768px !important;
  }

  footer#footer.virgo-site-footer .virgo-footer-grid {
    gap: 3rem !important; /* md:gap-12 */
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important; /* md:grid-cols-4 */
  }

  footer#footer.virgo-site-footer .virgo-footer-registration-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important; /* md:grid-cols-4 */
  }

  footer#footer.virgo-site-footer .virgo-footer-address {
    grid-column: span 2 / span 2 !important; /* md:col-span-2 */
  }

  footer#footer.virgo-site-footer .virgo-footer-registration p,
  footer#footer.virgo-site-footer .virgo-footer-registration address,
  footer#footer.virgo-site-footer .virgo-footer-copyright,
  footer#footer.virgo-site-footer .virgo-footer-legal {
    font-size: .875rem !important; /* md:text-sm */
    line-height: 1.25rem !important;
  }

  footer#footer.virgo-site-footer .virgo-footer-bottom {
    flex-direction: row !important; /* md:flex-row */
    gap: 0 !important; /* md:space-y-0 */
  }
}

@media (min-width: 1024px) {
  footer#footer.virgo-site-footer .virgo-footer-inner {
    max-width: 1024px !important;
  }

  footer#footer.virgo-site-footer .virgo-footer-registration-grid {
    gap: 2.5rem !important; /* lg:gap-10 */
  }
}

@media (min-width: 1280px) {
  footer#footer.virgo-site-footer .virgo-footer-inner {
    max-width: 1280px !important;
  }
}

@media (min-width: 1536px) {
  footer#footer.virgo-site-footer .virgo-footer-inner {
    max-width: 1536px !important;
  }
}

