
/* ==========================================================
   Nexos Titanium — Premium Dark UI
   File: assets/css/titanium.css
   Notes:
   - Scoped by component classnames and body.nexos-titanium
   - Designed to pair with Nexos Engine (plugin)
   ========================================================== */

:root{
  --nx-bg: #050816;
  --nx-bg-2: #0b1224;
  --nx-surface: rgba(255,255,255,.05);
  --nx-surface-2: rgba(255,255,255,.035);
  --nx-border: rgba(255,255,255,.12);
  --nx-border-2: rgba(255,255,255,.16);

  --nx-ink: #e9eefc;
  --nx-ink-soft: rgba(233,238,252,.80);
  --nx-ink-mute: rgba(233,238,252,.62);

  --nx-accent: #5a96ff; /* customizable via Customizer */
  --nx-accent-2: rgba(90,150,255,.20);

  --nx-radius: 18px;
  --nx-radius-sm: 14px;

  --nx-shadow: 0 12px 36px rgba(0,0,0,.40);
  --nx-shadow-soft: 0 10px 30px rgba(0,0,0,.28);

  --nx-container: 1160px;

  --nx-font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --nx-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

html, body{
  background: radial-gradient(1200px 600px at 15% -10%, rgba(90,150,255,.22), transparent 60%),
              radial-gradient(900px 540px at 90% 0%, rgba(111,255,214,.10), transparent 55%),
              linear-gradient(180deg, var(--nx-bg), #020617 60%);
  color: var(--nx-ink);
  font-family: var(--nx-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .96; }

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

.nx-skip{
  position:absolute;
  left:-999px;
  top:12px;
  background: #0b1224;
  border: 1px solid var(--nx-border);
  padding:10px 14px;
  border-radius: 12px;
  z-index: 9999;
}
.nx-skip:focus{ left:12px; }

.nx-container{
  max-width: var(--nx-container);
  margin: 0 auto;
  padding: 0 18px;
}

.nx-shell{ min-height: calc(100vh - 120px); }

.nx-header{
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(5, 8, 22, .62);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
/* Cart badge */
.nx-btn-cart{ position: relative; }
.nx-cart-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 20px;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
}

/* Badge placement on icon-only cart button */
.nx-btn-cart-icon{ position: relative; }
.nx-btn-cart-icon .nx-cart-badge{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  font-size: 11px;
}


.nx-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  height: 76px;
}

.nx-brand{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  gap: 6px;
}

.nx-site-title{
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 18px;
}

.nx-tagline{
  font-size: 12px;
  color: var(--nx-ink-mute);
}

.custom-logo-link img{
  height: 34px;
  width:auto;
  display:block;
}

.nx-nav{ display:flex; align-items:center; gap: 12px; }

.nx-menu{
  list-style:none;
  display:flex;
  gap: 14px;
  padding: 0;
  margin: 0;
  align-items:center;
}
.nx-menu li{ position:relative; }
.nx-menu a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 10px;
  border-radius: 12px;
  color: var(--nx-ink-soft);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}
.nx-menu a:hover{
  color: var(--nx-ink);
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.nx-header-cta{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Buttons */
.nx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--nx-ink);
  font-weight: 700;
  font-size: 14px;
  box-shadow: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;
}
.nx-btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--nx-shadow-soft);
  border-color: rgba(255,255,255,.18);
}
.nx-btn:active{ transform: translateY(0); }

.nx-btn-primary{
  background: linear-gradient(180deg, rgba(90,150,255,.95), rgba(90,150,255,.62));
  border-color: rgba(90,150,255,.65);
}
.nx-btn-primary:hover{
  box-shadow: 0 14px 38px rgba(90,150,255,.18);
}

.nx-btn-ghost{
  background: rgba(255,255,255,.03);
}

.nx-ico svg{
  width: 18px;
  height: 18px;
  display:block;
}

/* Mobile nav */
.nx-nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--nx-ink);
  cursor:pointer;
}
.nx-nav-toggle svg{
  width: 22px;
  height: 22px;
}
.nx-nav-toggle-icon.is-hidden{ display:none; }

.nx-nav-mobile{
  position:absolute;
  left: 0;
  right: 0;
  top: 76px;
  padding: 14px 18px 18px;
  background: rgba(5, 8, 22, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.nx-menu-mobile{
  flex-direction:column;
  align-items:stretch;
  gap: 10px;
}
.nx-menu-mobile a{
  width:100%;
  justify-content:space-between;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.nx-mobile-cta{
  margin-top: 12px;
  display:flex;
  gap: 10px;
}

/* Sections */
.nx-main{ padding-bottom: 60px; }

.nx-section{ padding: 54px 0; }
.nx-section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nx-section-head{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-bottom: 18px;
}

.nx-h1{ font-size: 34px; line-height: 1.14; margin:0; letter-spacing: -.2px; }
.nx-h2{ font-size: 26px; line-height: 1.2; margin:0; letter-spacing: -.2px; }
.nx-h3{ font-size: 18px; line-height: 1.2; margin:0; }
.nx-muted{ color: var(--nx-ink-mute); margin:0; }
.nx-link{ color: var(--nx-ink); }

.nx-kicker{
  color: rgba(90,150,255,.90);
  font-weight: 800;
  letter-spacing: .14em;
  font-size: 11px;
  text-transform: uppercase;
  margin:0 0 10px 0;
}

/* Hero */
.nx-hero{
  padding: 64px 0 26px;
}
.nx-hero-inner{
  display:grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 18px;
  align-items:stretch;
}
.nx-hero-title{
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 10px 0;
  letter-spacing: -.6px;
}
.nx-hero-sub{
  color: var(--nx-ink-soft);
  font-size: 15px;
  line-height: 1.s;
  margin: 0;
  max-width: 62ch;
}
.nx-hero-actions{
  display:flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.nx-hero-trust{
  display:flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.nx-trust-pill{
  font-size: 12px;
  color: var(--nx-ink-soft);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 8px 10px;
  border-radius: 999px;
}

.nx-hero-card .nx-card{ height: 100%; }

/* Grid + cards */
.nx-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.nx-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--nx-radius);
  box-shadow: 0 12px 34px rgba(0,0,0,.26);
}
.nx-card-inner{ padding: 16px; }

.nx-card-glow{
  background:
    radial-gradient(800px 320px at 20% 0%, rgba(90,150,255,.22), transparent 60%),
    rgba(255,255,255,.035);
  border-color: rgba(90,150,255,.20);
}

.nx-why-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.nx-why-card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--nx-radius);
  padding: 16px;
}

/* Prose (content) */
.nx-content{ max-width: 980px; }
.nx-prose{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--nx-radius);
  padding: 18px;
}
.nx-prose-head{ margin-bottom: 10px; }
.nx-prose p{ color: var(--nx-ink-soft); line-height: 1.7; }
.nx-prose a{ color: rgba(90,150,255,.95); text-decoration: underline; text-decoration-thickness: 1px; }

.nx-divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 14px 0;
}

.nx-empty{
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  border-radius: var(--nx-radius);
  padding: 16px;
}
.nx-empty-title{ font-weight: 800; margin-bottom: 6px; }
.nx-empty-text{ color: var(--nx-ink-mute); line-height: 1.6; margin-bottom: 12px; }

/* Product layout */
.nx-product-layout{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 16px;
}
.nx-product-side .nx-meta{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.nx-meta li{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.nx-meta strong{ font-weight: 800; }
.nx-meta span{ color: var(--nx-ink-soft); }

.nx-stack{ display:flex; flex-direction:column; gap: 10px; }

.nx-pagination{ margin-top: 18px; }
.nx-pagination .page-numbers{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  margin-right: 6px;
}

/* Footer */
.nx-footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(5, 8, 22, .52);
  backdrop-filter: blur(12px);
}
.nx-footer-inner{
  padding: 22px 0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
}
.nx-footer-brand{
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 6px;
}
.nx-footer-copy{
  font-size: 12px;
  color: var(--nx-ink-mute);
}
.nx-menu-footer{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px){
  .nx-hero-inner{ grid-template-columns: 1fr; }
  .nx-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .nx-why-grid{ grid-template-columns: 1fr; }
  .nx-header-cta{ display:none; }
  .nx-nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nx-nav-desktop{ display:none; }
}

@media (max-width: 640px){
  .nx-grid{ grid-template-columns: 1fr; }
  .nx-product-layout{ grid-template-columns: 1fr; }
  .nx-h1{ font-size: 30px; }
  .nx-hero-title{ font-size: 34px; }
}



/* ==========================================================
   Topbar / Nav polish (match NexosWP plugin topbar look)
   ========================================================== */

/* More "topbar" gradient + crisp divider */
.nx-header{
  background: linear-gradient(180deg, rgba(12,18,48,.78), rgba(7,10,26,.66));
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}

/* Hide tagline in header for clean brand lockup */
.nx-header .nx-tagline{ display:none; }

.nx-header-inner{
  height: 72px;
}

/* Center the menu like the screenshot */
.nx-nav{
  flex: 1 1 auto;
  justify-content: center;
}

.nx-nav-desktop{
  display:flex;
  justify-content:center;
}

/* Menu items: tighter, premium pill hover */
.nx-menu a{
  padding: 10px 14px;
  border-radius: 14px;
  color: rgba(233,238,252,.86);
  font-weight: 700;
  letter-spacing: .1px;
  background: transparent;
}
.nx-menu a:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.16);
}

/* Dropdown caret for menu items with children */
.nx-menu .menu-item-has-children > a::after{
  content: "▾";
  font-size: 12px;
  opacity: .75;
  margin-left: 8px;
}

/* Dropdown menu */
.nx-menu .sub-menu{
  position:absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  margin: 0;
  list-style:none;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(5, 8, 22, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0,0,0,.42);
  display:none;
}
.nx-menu li:hover > .sub-menu,
.nx-menu li:focus-within > .sub-menu{
  display:block;
}
.nx-menu .sub-menu a{
  width: 100%;
  display:flex;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(255,255,255,.02);
}
.nx-menu .sub-menu a:hover{
  border-color: rgba(90,150,255,.45);
  background: rgba(90,150,255,.12);
}

/* CTA area: match screenshot (icon pill + primary) */
.nx-header-cta{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Circular icon button */
.nx-btn-icon{
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.nx-btn-icon svg{
  width: 20px;
  height: 20px;
  opacity: .92;
}

/* "Get Started" / "Portal" button: more premium gradient */
.nx-btn-primary{
  padding: 10px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(90,150,255,1), rgba(60,120,255,.72));
  border-color: rgba(90,150,255,.60);
  box-shadow: 0 12px 26px rgba(90,150,255,.16);
}

/* Mobile: keep header CTA visible (like plugin topbar) */
@media (max-width: 980px){
  .nx-header-cta{ display:flex; }
  .nx-nav{ justify-content:flex-end; }
  .nx-nav-toggle{ display:inline-flex; }
  .nx-nav-desktop{ display:none; }
  .nx-header-inner{ gap: 10px; }
}

/* Ensure "old plugin topbar" can be hidden cleanly when using Titanium */
body.nexos-titanium .nexos-topbar{ display:none !important; }
/* ==========================================================
   WooCommerce Checkout — FIX "Your order" overlap + Coupon box
   Nexos Titanium
   ========================================================== */

/* 1) Put checkout into 2 columns (left: details, right: order) */
body.woocommerce-checkout form.checkout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: start;
}

/* Make Woo’s float columns behave inside grid */
body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2{
  float: none !important;
  width: auto !important;
}

/* Place elements into the right column properly */
body.woocommerce-checkout #customer_details{ grid-column: 1; }
body.woocommerce-checkout #order_review_heading{ grid-column: 2; margin-top: 0; }
body.woocommerce-checkout #order_review{ grid-column: 2; }

/* Prevent any overlap / stacking issues */
body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review{
  position: relative;
  z-index: 1;
}

/* 2) Coupon bar + coupon form: make it clean & not a huge square */
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info{
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}

body.woocommerce-checkout form.checkout_coupon{
  margin: 14px 0 22px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);

  display: flex;
  gap: 12px;
  align-items: center;
}

body.woocommerce-checkout form.checkout_coupon p{ margin: 0; }

body.woocommerce-checkout form.checkout_coupon .form-row-first,
body.woocommerce-checkout form.checkout_coupon .form-row-last{
  float: none !important;
  width: auto !important;
  padding: 0 !important;
}

body.woocommerce-checkout form.checkout_coupon .form-row-first{ flex: 1; }
body.woocommerce-checkout form.checkout_coupon input.input-text{ width: 100%; }
body.woocommerce-checkout form.checkout_coupon button{ white-space: nowrap; }

/* Mobile: stack nicely */
@media (max-width: 980px){
  body.woocommerce-checkout form.checkout{ grid-template-columns: 1fr; }
  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review{ grid-column: 1; }
}
@media (max-width: 600px){
  body.woocommerce-checkout form.checkout_coupon{
    flex-direction: column;
    align-items: stretch;
  }
  body.woocommerce-checkout form.checkout_coupon button{ width: 100%; }
}
/* ==========================================================
   Checkout — Keep "Your order" at top-right (same grid row)
   ========================================================== */

body.woocommerce-checkout form.checkout{
  grid-auto-rows: auto;
}

/* Put all checkout blocks in row 1 */
body.woocommerce-checkout #customer_details{
  grid-column: 1;
  grid-row: 1;
}

body.woocommerce-checkout #order_review_heading{
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 12px;
}

body.woocommerce-checkout #order_review{
  grid-column: 2;
  grid-row: 1;
  margin-top: 44px; /* space under heading */
  align-self: start;
}

/* Optional: keep order summary visible while scrolling */
@media (min-width: 981px){
  body.woocommerce-checkout #order_review{
    position: sticky;
    top: 96px; /* adjust if your header is taller */
  }
}

/* Mobile: normal flow */
@media (max-width: 980px){
  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review{
    grid-column: 1;
    grid-row: auto;
    position: static;
    margin-top: 0;
  }
}

/* ==========================================================
   WooCommerce Single Product — Titanium layout fix
   Image left, summary right, related products below
   ========================================================== */

body.single-product .woocommerce div.product{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: start;
}

/* Left column: gallery */
body.single-product .woocommerce div.product .woocommerce-product-gallery{
  width: 100% !important;
  max-width: 760px;
  margin: 0 !important;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 16px;
  overflow: hidden;
}

/* Make product image not look like a huge white square */
body.single-product .woocommerce div.product .woocommerce-product-gallery__wrapper{
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
}
body.single-product .woocommerce div.product .woocommerce-product-gallery img{
  width: 100%;
  height: auto;
  display: block;
}

/* Right column: summary */
body.single-product .woocommerce div.product .summary{
  width: 100% !important;
  margin: 0 !important;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

/* Make add-to-cart row neat */
body.single-product .woocommerce div.product form.cart{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
body.single-product .woocommerce div.product form.cart .quantity{
  margin: 0 !important;
}
body.single-product .woocommerce div.product form.cart button.single_add_to_cart_button{
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
}

/* Related products always full width under both columns */
body.single-product .woocommerce div.product .related,
body.single-product .woocommerce div.product .upsells{
  grid-column: 1 / -1;
  margin-top: 18px;
}

/* Hide post-style date/meta if your theme prints it on products */
body.single-product.post-type-product .entry-meta,
body.single-product.post-type-product .posted-on,
body.single-product.post-type-product time.entry-date{
  display: none !important;
}

/* Mobile */
@media (max-width: 980px){
  body.single-product .woocommerce div.product{
    grid-template-columns: 1fr;
  }
}
/* WooCommerce notice (added to cart) — fix square + text overlap */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error{
  position: relative;
  padding: 14px 16px 14px 52px !important; /* space for icon */
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}

/* Move the default Woo icon to the left and keep it from covering text */
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before{
  position: absolute !important;
  left: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
}

/* If your theme adds extra inner border/overlay on notices, disable it */
.woocommerce-message::after,
.woocommerce-info::after,
.woocommerce-error::after{
  content: none !important;
}
/* WooCommerce notice action button (View cart) — make it premium */
.woocommerce-message .button,
.woocommerce-info .button{
  float: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-left: auto !important;
  padding: 10px 14px !important;
  border-radius: 12px !important;

  color: #ffffff !important;
  background: linear-gradient(180deg, rgba(86,155,255,.95), rgba(45,95,200,.95)) !important;
  border: 1px solid rgba(255,255,255,.20) !important;

  text-decoration: none !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  min-height: 38px;
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}

/* Better hover */
.woocommerce-message .button:hover,
.woocommerce-info .button:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
}

/* Ensure the notice content + button align nicely */
.woocommerce-message{
  display: flex;
  align-items: center;
  gap: 14px;
}
.woocommerce-message::before{
  top: 50% !important;
}
/* Support tab selects: make option text visible in opened dropdown */
#nexos-new-ticket select{
  color: rgba(233,238,252,.95) !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
}

#nexos-new-ticket select option{
  color: #0b1020 !important;       /* visible on white dropdown list */
  background: #ffffff !important;
}

#nexos-new-ticket select option:disabled{
  color: #9aa3b2 !important;
}

