/* Global Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  background-color: #252525;
  color: var(--text-light);
  font-family: Arial, sans-serif;
}

/* Light Mode */
body.light {
  background-color: white;
  color: var(--primary-x);
  transition: background-color 0.2s, color 0.2s;
}

body.dark-mode {
  background-color: #252525;
  color: var(--text-light);
  transition: background-color 0.2s, color 0.2s;
}

/* Typography */
a {
  text-decoration: underline;
  color: var(--link);
  transition: color 0.3s;
}
a:hover {
  color: var(--secondary-dark);
}



/* Loader Styles */
#loader-overlay {
  position: fixed;
  inset: 0;
  background: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
}

.loader-content {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -100%);
  color: rgba(255, 255, 255, 0.8);
}

.loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  transform-origin: 60px 60px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0));
  animation: rotate 1.2s infinite linear;
}

.loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

/* Navigation */
.nav_container * {
  transition: all 0.3s;
}

.navIcon {
  color: #d3c6b6;
  border: none;
  padding: 7.5px 15px;
  border-radius: 1px;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.3s;
  margin: auto;
}

/* Nav Icon Animations */
@keyframes spinBar1 {
  50% {
    transform: rotate(45deg) translate(5px, 5px);
  }
  to {
    transform: rotate(0deg) translate(0, 0);
  }
}

@keyframes fadeBar2 {
  to {
    translate: 10px 0px;
  }
}

@keyframes fadeBar2x {
  to {
    opacity: 0;
  }
}

@keyframes spinBar3 {
  50% {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  to {
    transform: rotate(0deg) translate(0, 0);
  }
}

.change .navIcon:hover .bar1 {
  animation: spinBar1 0.6s forwards;
}
.navIcon:hover .bar2 {
  animation: fadeBar2 0.6s backwards;
}
.change .navIcon:hover .bar3 {
  animation: spinBar3 0.6s forwards;
}

.navIcon .bar1,
.navIcon .bar2,
.navIcon .bar3 {
  will-change: transform, opacity;
  transition: transform 0.3s, opacity 0.3s;
}

.change .navIcon:hover .bar2 {
  animation: fadeBar2x 0.6s backwards;
}

/* Form Elements */
input,
select,
textarea {
  background-color: var(--secondary-light);
  border: 1px solid var(--secondary);
  padding: 8px;
  border-radius: 5px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--secondary);
}

/* Base link style */
.nav-list li a {
  position: relative; /* anchor is the positioning container */
  display: inline-block;
  padding: 6px 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* pseudo-element underline, hidden by default */
.nav-list li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px; /* space below text */
  transform: translateX(-50%);
  width: 0; /* start collapsed */
  height: 3px;
  border-bottom: 3px solid transparent;
  transition: width 0.3s ease, border-color 0.3s ease;
}

/* Hover state */
.litem:hover a {
  color: var(--text-dark);
}

.litem:hover a::after {
  width: 50%; /* target underline length */
  border-color: var(--bg-transp-dark);
}

/* Light mode links */
.light .nav-list li a {
  color: var(--primary-x);
}

/* Dark mode links */
.dark-mode .nav-list li a {
  color: var(--text-light);
}

/* Active link - light mode */
.light .nav-list li.active a {
  color: var(--primary-x);
}

.light .nav-list li.active a::after {
  width: 70%; /* active underline length */
  border-color: var(--primary-x-dark);
}

/* Active link - dark mode */
.dark-mode .nav-list li.active a {
  color: var(--text-light);
}

.dark-mode .nav-list li.active a::after {
  width: 70%;
  border-color: var(--text-dark);
}

/* Mobile Styles */
@media (max-width: 769px) {
  .header {
    overflow: hidden;
    font-size: 2rem;
  }
  .chevron {
    display: none;
  }
  .bar1,
  .bar2,
  .bar3 {
    width: 40px;
    height: 5px;
    background-color: rgb(28, 23, 26);
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 5px;
  }

  .change .bar2 {
    opacity: 1;
    transform: translate(10px, 0);
  }

  .menuBar {
    top: 0;
    width: 100%;
    position: fixed;
    transition: 0.2s;
    z-index: 9999;
  }

  .change .menuBar ul {
    padding-top: 80px;
    transition: all 0.3s;
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
  }

  .nav-list {
    opacity: 0;
    transform: translateY(-20px); /* start slightly above */
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: x-large;
    color: white;
  }

  /* When menu is open */
  .change .nav-list {
    opacity: 1;
    transform: translateY(0);
    padding: 10px;
    max-height: 100%;
  }

  /* Optional: individual li fade-in delay */
  .nav-list li {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .change .nav-list li {
    opacity: 1;
    transition-delay: 0.1s; /* stagger effect */
  }

  .navIcon {
    position: fixed;
    right: 10px;
    z-index: 88;
  }

  .light .menuBar ul {
    background-color: rgba(218, 218, 218, 0.785);
    color: var(--primary-x);
  }

  .light .change .menuBar ul {
    background-color: rgb(248, 248, 248);
  }
  .dark-mode .menuBar ul {
    background-color: rgba(24, 24, 24, 0.73);
  }

  .dark-mode .change .menuBar ul {
    background-color: rgb(24, 24, 23);
  }

  .wxa-logo {
    position: fixed;
    z-index: 9999;
    top: 0;
    background-color: rgba(135, 135, 135, 0.8);
    backdrop-filter: blur(5px);
    width: 100%;
    display: flex;
  }

  .wxa-logo img {
    max-width: 70px;
    margin: auto;
    justify-self: center;
    padding: 5px;
    margin-left: 2vw;
  }
  .menuBar ul li {
    list-style: none;
    display: block;
    margin: 20px;
  }
  .nav-list {
    margin: auto;
    text-align: center;
    padding-left: 0px;
    padding-top: 90px;
  }
}

/* Desktop Styles */
@media (min-width: 769px) {
  .navIcon {
    display: none;
  }

  .menuBar {
    width: 100%;
    text-align: right;
    position: fixed;
    background-color: rgba(135, 135, 135, 0.5);
    backdrop-filter: blur(30px);
    top: 0;
    transition: 0.3s;
    z-index: 99;
    display: flex;
    justify-content: space-evenly;
  }

  .menuBar ul {
    padding-top: 0.4rem;
    margin-bottom: 0.4rem;
  }

  .menuBar ul li {
    list-style: none;
    display: inline-block;
  }

  .menuBar ul li a {
    text-decoration: none;
    font-size: x-large;
  }
  .wxa-logo img {
    max-width: 90px;
    padding: 3px;
  }
}

/* Common Elements */
#desktop-navbar,
#mobile-navbar,
.wxa-logo {
  transition: 0.3s;
}

/* Dropdown Styles */
.droper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Footer Styles */
.footer-section {
  background: #151414;
  position: relative;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo {
  margin: auto;
}

.footer-logo img {
  margin-bottom: 10px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.footer-social-icon a:hover i {
  color: var(--secondary-light);
  transition: all 0.3s ease;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--primary-x);
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.footer-widget ul li a:hover {
  color: var(--secondary-light);
}

.copyright-area {
  background: #202020;
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

.copyright-text p a {
  color: var(--success-light);
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

.footer-menu li:hover a {
  color: var(--secondary-light);
}

/* Dark Mode Toggle */
.dark_mode {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  padding-left: 5px;
}
.dark_mode:hover {
  color: #fff;
}

.dark-mode .dark_mode {
  color: var(--text-dark);
}
.light .dark_mode {
  color: var(--primary-x);
}
.dark_mode i {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Snackbar */
#snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#snackbar.show {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

/* Chevron */
.chevron {
  display: inline-block;
  margin-left: 6px;
  border: solid var(--text-dark);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s, border-color 0.3s;
}

[data-subnav-parent].actived .chevron {
  transform: rotate(-135deg);
  border-color: var(--text-dark);
}
@media (max-width: 767px) {
}

.nav-user {
  position: relative;
}

/* Wrapper */
.user-menu {
  position: relative;
  display: inline-block;
}

/* Trigger (button) */
.user-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
  border: none;
  border-radius: 9999px;
  background: var(--bg-transp-light);
  color: var(--text-dark);
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.user-trigger:hover {
  background: var(--bg-transp-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.user-menu.open .chevron {
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

/* Avatar circle (perfect center) */
.avatar-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Username next to avatar */
.username {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

/* Dropdown */
.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
  text-align: left;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  display: flex;
  flex-direction: column; /* stack items vertically */
}
.user-menu.open .user-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dark-mode .user-dropdown {
  background-color: var(--bglass9);
}
.light .user-dropdown {
  background-color: var(--mglass9);
}
/* Dropdown items */
.user-dropdown li {
  margin: auto;
  display: block;
}
.user-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.15s ease;
}
.user-dropdown a:hover {
  background: var(--bg-transp-light);
}

/* Responsive touch area & sizing */
@media (max-width: 768px) {
  .user-trigger {
    padding: 10px 14px;
  }
  .avatar-circle {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .user-dropdown {
    min-width: 180px;
    display: block;
  }
}

/* -------------------------------------------------------------------------
   Mobile site navigation + mobile UX polish
   ------------------------------------------------------------------------- */
.a2t-mobile-menu-btn,
.a2t-mobile-menu{
  display:none;
}

@media(max-width:760px){
  body.a2t-mobile-menu-open{
    overflow:hidden;
  }
  .a2t-site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    border-bottom:1px solid #e5eaf2;
  }
  html[data-theme="dark"] .a2t-site-header{
    background:#070b14;
    border-bottom-color:#1e293b;
  }
  .a2t-nav-shell{
    width:100%;
    min-height:72px;
    padding:0 18px;
    display:flex;
    justify-content:space-between;
  }
  .a2t-brand{
    font-size:24px;
  }
  .a2t-nav-links{
    display:none!important;
  }
  .a2t-nav-actions{
    gap:10px;
  }
  .a2t-nav-cta{
    display:none!important;
  }
  .a2t-theme-toggle{
    width:44px;
    height:44px;
    border-radius:14px;
  }
  .a2t-mobile-menu-btn{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    gap:4px;
    border:1px solid #e5eaf2;
    border-radius:14px;
    background:#fff;
    color:#07111f;
    padding:11px;
  }
  html[data-theme="dark"] .a2t-mobile-menu-btn,
  html[data-theme="dark"] .a2t-theme-toggle{
    background:#0d1422;
    border-color:#1e293b;
    color:#f8fafc;
  }
  .a2t-mobile-menu-btn span{
    display:block;
    width:18px;
    height:2px;
    border-radius:999px;
    background:currentColor;
  }
  .a2t-mobile-menu[hidden]{
    display:none!important;
  }
  .a2t-mobile-menu{
    display:block;
    position:fixed;
    inset:0;
    z-index:2000;
  }
  .a2t-mobile-menu-backdrop{
    position:absolute;
    inset:0;
    background:rgba(15,23,42,.44);
    backdrop-filter:blur(4px);
  }
  .a2t-mobile-menu-panel{
    position:absolute;
    right:12px;
    left:12px;
    top:12px;
    border:1px solid #e5eaf2;
    border-radius:22px;
    background:#fff;
    box-shadow:0 24px 70px rgba(15,23,42,.22);
    padding:18px;
  }
  html[data-theme="dark"] .a2t-mobile-menu-panel{
    background:#0d1422;
    border-color:#1e293b;
  }
  .a2t-mobile-menu-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding-bottom:14px;
    border-bottom:1px solid #e5eaf2;
  }
  html[data-theme="dark"] .a2t-mobile-menu-head{
    border-bottom-color:#1e293b;
  }
  .a2t-mobile-menu-close{
    width:42px;
    height:42px;
    border:1px solid #e5eaf2;
    border-radius:14px;
    background:#f8fafc;
    color:#07111f;
  }
  html[data-theme="dark"] .a2t-mobile-menu-close{
    background:#111a2b;
    color:#f8fafc;
    border-color:#1e293b;
  }
  .a2t-mobile-links{
    display:grid;
    gap:8px;
    padding:16px 0;
  }
  .a2t-mobile-links a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:48px;
    border:1px solid #e5eaf2;
    border-radius:14px;
    background:#f8fafc;
    color:#07111f;
    padding:0 15px;
    text-decoration:none;
    font-weight:900;
  }
  .a2t-mobile-links a::after{
    content:"›";
    color:#667085;
    font-size:22px;
  }
  html[data-theme="dark"] .a2t-mobile-links a{
    background:#111a2b;
    color:#f8fafc;
    border-color:#1e293b;
  }
  .a2t-mobile-cta{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    border-radius:15px;
    background:#07111f;
    color:#fff!important;
    text-decoration:none;
    font-weight:950;
  }

  /* Mobile workspace refinements */
  .a2cw{
    padding-top:12px!important;
    background:#f8fafc;
  }
  .a2cw-layout{
    width:100%;
  }
  .a2cw-breadcrumb{
    max-width:100%;
    margin-bottom:10px;
  }
  .a2cw-hero{
    margin-top:0;
  }
  .a2cw-stepper{
    margin-left:-2px;
    margin-right:-2px;
  }
  .a2cw-step{
    min-width:146px;
  }
  .a2cw-content-grid{
    gap:12px;
  }
  .a2cw-sidebar{
    order:2;
  }
  .a2cw-stage-stack{
    order:1;
  }
  .a2cw-side-card[data-side-panel]{
    box-shadow:0 6px 18px rgba(15,23,42,.035);
  }
  .a2cw-min-files a{
    min-height:64px;
  }
  .a2cw-action-details summary{
    min-height:48px;
  }
  .a2cw-star-rating{
    width:100%;
    justify-content:center;
  }
  .a2cw-review-form .a2cw-primary{
    min-height:50px;
  }
}

@media(max-width:380px){
  .a2t-nav-shell{
    padding:0 12px;
  }
  .a2t-brand{
    font-size:21px;
  }
  .a2t-theme-toggle,
  .a2t-mobile-menu-btn{
    width:40px;
    height:40px;
    border-radius:12px;
  }
  .a2cw-step{
    min-width:136px;
  }
  .a2cw-hero h1{
    font-size:24px;
  }
}

/* -------------------------------------------------------------------------
   Inline smooth mobile navigation refinement
   ------------------------------------------------------------------------- */
@media(max-width:760px){
  .a2t-site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    border-bottom:1px solid #e5eaf2;
  }
  html[data-theme="dark"] .a2t-site-header{
    background:#070b14;
    border-bottom-color:#1e293b;
  }
  .a2t-nav-shell{
    min-height:72px;
    padding-inline:18px;
  }
  .a2t-nav-links,
  .a2t-nav-cta{
    display:none!important;
  }
  .a2t-mobile-menu-btn{
    width:44px;
    height:44px;
    display:grid!important;
    place-items:center;
    gap:4px;
    border:1px solid #e5eaf2;
    border-radius:14px;
    background:#fff;
    color:#07111f;
    padding:11px;
  }
  .a2t-mobile-menu-btn span{
    display:block;
    width:18px;
    height:2px;
    border-radius:999px;
    background:currentColor;
    transition:transform .22s ease, opacity .18s ease;
  }
  .a2t-mobile-menu-btn.is-open span:nth-child(1){
    transform:translateY(6px) rotate(45deg);
  }
  .a2t-mobile-menu-btn.is-open span:nth-child(2){
    opacity:0;
  }
  .a2t-mobile-menu-btn.is-open span:nth-child(3){
    transform:translateY(-6px) rotate(-45deg);
  }
  html[data-theme="dark"] .a2t-mobile-menu-btn,
  html[data-theme="dark"] .a2t-theme-toggle{
    background:#0d1422;
    border-color:#1e293b;
    color:#f8fafc;
  }
  .a2t-mobile-menu{
    display:block!important;
    position:sticky;
    top:72px;
    z-index:999;
    max-height:0;
    overflow:hidden;
    background:#fff;
    border-bottom:0 solid #e5eaf2;
    box-shadow:0 20px 40px rgba(15,23,42,0);
    transition:max-height .28s ease, border-color .2s ease, box-shadow .2s ease;
  }
  html[data-theme="dark"] .a2t-mobile-menu{
    background:#070b14;
  }
  .a2t-mobile-menu.is-open{
    max-height:420px;
    border-bottom-width:1px;
    box-shadow:0 18px 36px rgba(15,23,42,.08);
  }
  .a2t-mobile-menu-inner{
    padding:10px 18px 18px;
  }
  .a2t-mobile-links{
    display:grid;
    gap:8px;
  }
  .a2t-mobile-links a{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border:1px solid #e5eaf2;
    border-radius:14px;
    background:#f8fafc;
    color:#07111f;
    padding:0 15px;
    text-decoration:none;
    font-weight:900;
  }
  .a2t-mobile-links a::after{
    content:"›";
    color:#667085;
    font-size:22px;
  }
  html[data-theme="dark"] .a2t-mobile-links a{
    background:#111a2b;
    border-color:#1e293b;
    color:#f8fafc;
  }
  .a2t-mobile-cta{
    min-height:52px;
    margin-top:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    background:#07111f;
    color:#fff!important;
    text-decoration:none;
    font-weight:950;
  }
}
@media(min-width:761px){
  .a2t-mobile-menu,
  .a2t-mobile-menu-btn{
    display:none!important;
  }
}

/* -------------------------------------------------------------------------
   Mobile nav drawer v2 — example-style hamburger animation, no modal overlay
   ------------------------------------------------------------------------- */
@media(max-width:760px){
  .a2t-site-header{
    position:sticky!important;
    top:0!important;
    z-index:1000!important;
    background:#fff!important;
    border-bottom:1px solid #e5eaf2!important;
  }
  html[data-theme="dark"] .a2t-site-header{
    background:#070b14!important;
    border-bottom-color:#1e293b!important;
  }
  .a2t-nav-shell{
    min-height:72px!important;
    padding:0 18px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
  }
  .a2t-nav-links,
  .a2t-nav-cta{
    display:none!important;
  }
  .a2t-mobile-menu-btn{
    width:44px!important;
    height:44px!important;
    display:grid!important;
    place-items:center!important;
    gap:0!important;
    border:1px solid #e5eaf2!important;
    border-radius:14px!important;
    background:#fff!important;
    color:#07111f!important;
    padding:8px!important;
    cursor:pointer!important;
  }
  .a2t-mobile-menu-btn span{
    width:24px!important;
    height:3px!important;
    background:currentColor!important;
    margin:3px 0!important;
    border-radius:5px!important;
    transition:0.3s!important;
  }
  .a2t-mobile-menu-btn.is-open span:nth-child(1){
    -webkit-transform:rotate(-315deg) translate(7px, 6px)!important;
    transform:rotate(-315deg) translate(7px, 6px)!important;
  }
  .a2t-mobile-menu-btn.is-open span:nth-child(2){
    opacity:0!important;
    -webkit-transform:translate(0, -15px)!important;
    transform:translate(0, -15px)!important;
  }
  .a2t-mobile-menu-btn.is-open span:nth-child(3){
    -webkit-transform:rotate(315deg) translate(7px, -7px)!important;
    transform:rotate(315deg) translate(7px, -7px)!important;
  }
  html[data-theme="dark"] .a2t-mobile-menu-btn,
  html[data-theme="dark"] .a2t-theme-toggle{
    background:#0d1422!important;
    border-color:#1e293b!important;
    color:#f8fafc!important;
  }
  .a2t-mobile-menu{
    display:block!important;
    position:fixed!important;
    z-index:999!important;
    top:72px!important;
    left:0!important;
    width:0!important;
    height:calc(100vh - 72px)!important;
    overflow:hidden!important;
    background:#fff!important;
    border-right:0 solid #e5eaf2!important;
    box-shadow:none!important;
    transition:width .25s ease, box-shadow .25s ease, border-color .25s ease!important;
  }
  html[data-theme="dark"] .a2t-mobile-menu{
    background:#070b14!important;
  }
  .a2t-mobile-menu.is-open{
    width:min(300px, calc(100vw - 26px))!important;
    border-right-width:1px!important;
    box-shadow:18px 0 50px rgba(15,23,42,.16)!important;
  }
  .a2t-mobile-menu-inner{
    width:min(300px, calc(100vw - 26px))!important;
    min-width:min(300px, calc(100vw - 26px))!important;
    padding:16px!important;
  }
  .a2t-mobile-links{
    display:grid!important;
    gap:8px!important;
    padding:0!important;
  }
  .a2t-mobile-links a{
    min-height:48px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    border:1px solid #e5eaf2!important;
    border-radius:14px!important;
    background:#f8fafc!important;
    color:#07111f!important;
    padding:0 15px!important;
    text-decoration:none!important;
    font-weight:900!important;
    white-space:nowrap!important;
  }
  .a2t-mobile-links a::after{
    content:"›"!important;
    color:#667085!important;
    font-size:22px!important;
  }
  html[data-theme="dark"] .a2t-mobile-links a{
    background:#111a2b!important;
    color:#f8fafc!important;
    border-color:#1e293b!important;
  }
  .a2t-mobile-cta{
    min-height:52px!important;
    margin-top:10px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    border-radius:15px!important;
    background:#07111f!important;
    color:#fff!important;
    text-decoration:none!important;
    font-weight:950!important;
  }
}
@media(min-width:761px){
  .a2t-mobile-menu,
  .a2t-mobile-menu-btn{
    display:none!important;
  }
}

/* -------------------------------------------------------------------------
   Mobile cart inside nav + remove sidebars on mobile
   ------------------------------------------------------------------------- */
@media(max-width:760px){
  .a2t-mobile-cart-link{
    display:grid!important;
    gap:8px!important;
    border:1px solid #e5eaf2!important;
    border-radius:16px!important;
    background:#f8fafc!important;
    color:#07111f!important;
    padding:14px 15px!important;
    margin-bottom:10px!important;
    text-decoration:none!important;
  }
  .a2t-mobile-cart-link span{
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
    font-weight:950!important;
  }
  .a2t-mobile-cart-link span i{
    width:34px!important;
    height:34px!important;
    border-radius:12px!important;
    display:grid!important;
    place-items:center!important;
    background:#07111f!important;
    color:#fff!important;
  }
  .a2t-mobile-cart-link strong{
    color:#667085!important;
    font-size:13px!important;
    font-weight:900!important;
  }
  html[data-theme="dark"] .a2t-mobile-cart-link{
    background:#111a2b!important;
    border-color:#1e293b!important;
    color:#f8fafc!important;
  }
}

/* -------------------------------------------------------------------------
   Final mobile sidebar removal + profile-in-nav polish
   ------------------------------------------------------------------------- */
@media(max-width:760px){
  .a2t-mobile-profile-link{
    min-height:58px!important;
    display:grid!important;
    grid-template-columns:42px minmax(0,1fr) 18px!important;
    align-items:center!important;
    gap:12px!important;
    border:1px solid #e5eaf2!important;
    border-radius:16px!important;
    background:#f8fafc!important;
    color:#07111f!important;
    padding:10px 13px!important;
    margin:0 0 10px!important;
    text-decoration:none!important;
  }
  .a2t-mobile-profile-avatar{
    width:42px!important;
    height:42px!important;
    border-radius:14px!important;
    display:grid!important;
    place-items:center!important;
    background:#edf4ff!important;
    color:#155dfc!important;
    font-weight:950!important;
  }
  .a2t-mobile-profile-link strong,
  .a2t-mobile-profile-link small{
    display:block!important;
    min-width:0!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }
  .a2t-mobile-profile-link strong{
    font-size:14px!important;
    font-weight:950!important;
  }
  .a2t-mobile-profile-link small{
    margin-top:2px!important;
    color:#667085!important;
    font-size:11px!important;
    font-weight:900!important;
    text-transform:uppercase!important;
    letter-spacing:.05em!important;
  }
  html[data-theme="dark"] .a2t-mobile-profile-link{
    background:#111a2b!important;
    border-color:#1e293b!important;
    color:#f8fafc!important;
  }

  /* Force service/request pages to remove the full left sidebar on every CSS load order */
  body.products-page-body .a2t-service-sidebar,
  body.products-page-body .a2t-client-nav,
  body .a2t-page-shell .a2t-service-sidebar,
  body .a2t-page-shell .a2t-client-nav,
  body .a2t-client-portal-shell .a2t-service-sidebar,
  body .a2t-client-portal-shell .a2t-client-nav,
  body .a2t-requests-page .a2t-service-sidebar,
  body .a2t-requests-page .a2t-client-nav,
  .a2t-service-sidebar,
  .a2t-requests-sidebar{
    display:none!important;
    width:0!important;
    height:0!important;
    overflow:hidden!important;
    opacity:0!important;
    pointer-events:none!important;
    visibility:hidden!important;
  }

  body .a2t-client-portal-layout,
  body .a2t-requests-layout{
    display:block!important;
    grid-template-columns:1fr!important;
    width:100%!important;
    max-width:100%!important;
    margin:0!important;
    padding:14px 12px 52px!important;
    overflow:visible!important;
  }

  body .a2t-client-dashboard-main,
  body .a2t-requests-main{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    display:block!important;
    overflow:visible!important;
  }

  html,
  body,
  body .x-content,
  body .a2t-page-shell,
  body .a2t-client-portal-shell,
  body .a2t-requests-page{
    overflow-y:auto!important;
    overflow-x:hidden!important;
    min-height:auto!important;
    height:auto!important;
  }

  /* Product pages: cart/profile live in mobile nav, so no left sidebar in page body */
  #a2t-products .pm-sidebar{
    display:none!important;
    width:0!important;
    height:0!important;
    overflow:hidden!important;
    visibility:hidden!important;
  }
  #a2t-products .pm-layout{
    display:block!important;
    grid-template-columns:1fr!important;
    width:100%!important;
    max-width:100%!important;
    margin:0!important;
    padding:14px 12px 52px!important;
  }
  #a2t-products .pm-main{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
  }
}

/* -------------------------------------------------------------------------
   Full-screen mobile nav v5 — top native panel, page locked while open
   ------------------------------------------------------------------------- */
@media(max-width:760px){
  body.a2t-mobile-menu-open{
    overflow:hidden!important;
    touch-action:none;
  }
  body.a2t-mobile-menu-open .x-content,
  body.a2t-mobile-menu-open .a2t-footer{
    pointer-events:none!important;
  }
  .a2t-site-header{
    position:sticky!important;
    top:0!important;
    z-index:3000!important;
    background:#fff!important;
    border-bottom:1px solid #e5eaf2!important;
  }
  html[data-theme="dark"] .a2t-site-header{
    background:#070b14!important;
    border-bottom-color:#1e293b!important;
  }
  .a2t-nav-shell{
    min-height:72px!important;
    padding:0 18px!important;
  }
  .a2t-mobile-menu{
    display:block!important;
    position:fixed!important;
    z-index:2500!important;
    top:72px!important;
    left:0!important;
    right:0!important;
    width:100%!important;
    height:0!important;
    max-height:none!important;
    overflow:hidden!important;
    background:#fff!important;
    border:0!important;
    border-top:1px solid #e5eaf2!important;
    box-shadow:0 22px 50px rgba(15,23,42,0)!important;
    transition:height .28s ease, box-shadow .28s ease!important;
  }
  html[data-theme="dark"] .a2t-mobile-menu{
    background:#070b14!important;
    border-top-color:#1e293b!important;
  }
  .a2t-mobile-menu.is-open{
    width:100%!important;
    height:calc(100dvh - 72px)!important;
    overflow-y:auto!important;
    -webkit-overflow-scrolling:touch!important;
    box-shadow:0 28px 70px rgba(15,23,42,.18)!important;
  }
  @supports not (height: 100dvh){
    .a2t-mobile-menu.is-open{height:calc(100vh - 72px)!important;}
  }
  .a2t-mobile-menu-inner{
    width:100%!important;
    min-width:0!important;
    max-width:520px!important;
    margin:0 auto!important;
    padding:16px 18px max(28px, env(safe-area-inset-bottom))!important;
  }
  .a2t-mobile-cart-link,
  .a2t-mobile-profile-link,
  .a2t-mobile-links a,
  .a2t-mobile-cta{
    transform:translateY(-8px);
    opacity:0;
    transition:transform .24s ease, opacity .24s ease, background .18s ease, border-color .18s ease!important;
  }
  .a2t-mobile-menu.is-open .a2t-mobile-cart-link,
  .a2t-mobile-menu.is-open .a2t-mobile-profile-link,
  .a2t-mobile-menu.is-open .a2t-mobile-links a,
  .a2t-mobile-menu.is-open .a2t-mobile-cta{
    transform:translateY(0);
    opacity:1;
  }
  .a2t-mobile-menu.is-open .a2t-mobile-profile-link{transition-delay:.02s!important;}
  .a2t-mobile-menu.is-open .a2t-mobile-links a:nth-child(1){transition-delay:.04s!important;}
  .a2t-mobile-menu.is-open .a2t-mobile-links a:nth-child(2){transition-delay:.06s!important;}
  .a2t-mobile-menu.is-open .a2t-mobile-links a:nth-child(3){transition-delay:.08s!important;}
  .a2t-mobile-menu.is-open .a2t-mobile-links a:nth-child(4){transition-delay:.10s!important;}
  .a2t-mobile-menu.is-open .a2t-mobile-cta{transition-delay:.12s!important;}
  .a2t-mobile-links{
    display:grid!important;
    gap:9px!important;
    padding:0!important;
  }
  .a2t-mobile-links a,
  .a2t-mobile-cart-link,
  .a2t-mobile-profile-link{
    border-radius:16px!important;
  }
  .a2t-mobile-links a{
    min-height:52px!important;
  }
}
@media(max-width:380px){
  .a2t-mobile-menu-inner{padding-left:12px!important;padding-right:12px!important;}
}

/* -------------------------------------------------------------------------
   Mobile nav v5 — locked page, attached top bar, hide-on-scroll header
   ------------------------------------------------------------------------- */
@media(max-width:760px){
  html.a2t-nav-open,
  body.a2t-nav-open{
    overflow:hidden!important;
    height:100%!important;
    overscroll-behavior:none!important;
  }
  body.a2t-nav-open{
    position:fixed!important;
    left:0!important;
    right:0!important;
    width:100%!important;
  }

  .a2t-site-header{
    position:fixed!important;
    top:0!important;
    left:0!important;
    right:0!important;
    z-index:3000!important;
    width:100%!important;
    background:#fff!important;
    border-bottom:1px solid #e5eaf2!important;
    transform:translateY(0)!important;
    transition:transform .24s ease, box-shadow .2s ease!important;
  }
  .a2t-site-header.is-hidden:not(.is-menu-open){
    transform:translateY(-100%)!important;
  }
  .a2t-site-header.is-menu-open{
    transform:translateY(0)!important;
    box-shadow:0 10px 28px rgba(15,23,42,.08)!important;
  }
  html[data-theme="dark"] .a2t-site-header{
    background:#070b14!important;
    border-bottom-color:#1e293b!important;
  }

  body{
    padding-top:72px!important;
  }

  .a2t-nav-shell{
    min-height:72px!important;
    padding:0 18px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
  }

  .a2t-mobile-menu{
    display:block!important;
    position:fixed!important;
    z-index:2999!important;
    top:72px!important;
    left:0!important;
    right:0!important;
    width:100%!important;
    height:0!important;
    max-height:none!important;
    overflow:hidden!important;
    background:#fff!important;
    border-top:0!important;
    border-bottom:0 solid #e5eaf2!important;
    box-shadow:0 18px 36px rgba(15,23,42,0)!important;
    transition:height .28s ease, box-shadow .22s ease, border-color .22s ease!important;
  }
  html[data-theme="dark"] .a2t-mobile-menu{
    background:#070b14!important;
    border-bottom-color:#1e293b!important;
  }
  .a2t-mobile-menu.is-open{
    height:calc(100dvh - 72px)!important;
    border-bottom-width:1px!important;
    box-shadow:0 24px 50px rgba(15,23,42,.14)!important;
  }
  .a2t-mobile-menu-inner{
    width:100%!important;
    max-width:420px!important;
    height:100%!important;
    min-height:0!important;
    margin:0 auto!important;
    padding:16px 16px 28px!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    -webkit-overflow-scrolling:touch!important;
    overscroll-behavior:contain!important;
  }

  .a2t-mobile-menu.is-open .a2t-mobile-cart-link,
  .a2t-mobile-menu.is-open .a2t-mobile-profile-link,
  .a2t-mobile-menu.is-open .a2t-mobile-links a,
  .a2t-mobile-menu.is-open .a2t-mobile-cta{
    animation:a2tMobileNavIn .24s ease both;
  }
  .a2t-mobile-menu.is-open .a2t-mobile-profile-link{ animation-delay:.03s; }
  .a2t-mobile-menu.is-open .a2t-mobile-links a:nth-child(1){ animation-delay:.05s; }
  .a2t-mobile-menu.is-open .a2t-mobile-links a:nth-child(2){ animation-delay:.07s; }
  .a2t-mobile-menu.is-open .a2t-mobile-links a:nth-child(3){ animation-delay:.09s; }
  .a2t-mobile-menu.is-open .a2t-mobile-links a:nth-child(4){ animation-delay:.11s; }
  .a2t-mobile-menu.is-open .a2t-mobile-cta{ animation-delay:.13s; }

  @keyframes a2tMobileNavIn{
    from{ opacity:0; transform:translateY(-8px); }
    to{ opacity:1; transform:translateY(0); }
  }

  .a2t-mobile-menu-btn{
    position:relative!important;
    z-index:3001!important;
    width:44px!important;
    height:44px!important;
    display:grid!important;
    place-items:center!important;
    border:1px solid #e5eaf2!important;
    border-radius:14px!important;
    background:#fff!important;
    color:#07111f!important;
    padding:8px!important;
  }
  .a2t-mobile-menu-btn span{
    width:24px!important;
    height:3px!important;
    background:currentColor!important;
    margin:3px 0!important;
    border-radius:5px!important;
    transition:0.3s!important;
  }
  .a2t-mobile-menu-btn.is-open span:nth-child(1){
    -webkit-transform:rotate(-315deg) translate(7px, 6px)!important;
    transform:rotate(-315deg) translate(7px, 6px)!important;
  }
  .a2t-mobile-menu-btn.is-open span:nth-child(2){
    opacity:0!important;
    -webkit-transform:translate(0, -15px)!important;
    transform:translate(0, -15px)!important;
  }
  .a2t-mobile-menu-btn.is-open span:nth-child(3){
    -webkit-transform:rotate(315deg) translate(7px, -7px)!important;
    transform:rotate(315deg) translate(7px, -7px)!important;
  }
}

/* -------------------------------------------------------------------------
   Notification toggle in mobile top nav v6
   ------------------------------------------------------------------------- */
@media(max-width:760px){
  .a2t-nav-actions{
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
  }
  .a2t-mobile-nav-notification{
    position:relative!important;
    top:auto!important;
    right:auto!important;
    z-index:3001!important;
    width:44px!important;
    height:44px!important;
    display:grid!important;
    place-items:center!important;
    border:1px solid #e5eaf2!important;
    border-radius:14px!important;
    background:#fff!important;
    color:#07111f!important;
    box-shadow:none!important;
    padding:0!important;
    cursor:pointer!important;
  }
  .a2t-mobile-nav-notification i{
    color:#155dfc!important;
    font-size:17px!important;
  }
  .a2t-mobile-nav-notification strong{
    position:absolute!important;
    top:-7px!important;
    right:-7px!important;
    min-width:21px!important;
    height:21px!important;
    padding:0 6px!important;
    border-radius:999px!important;
    display:grid!important;
    place-items:center!important;
    background:#155dfc!important;
    color:#fff!important;
    font-size:11px!important;
    line-height:1!important;
    font-weight:950!important;
    border:2px solid #fff!important;
  }
  .a2t-mobile-nav-notification.is-open{
    background:#edf4ff!important;
    border-color:rgba(21,93,252,.26)!important;
  }
  html[data-theme="dark"] .a2t-mobile-nav-notification{
    background:#0d1422!important;
    border-color:#1e293b!important;
    color:#f8fafc!important;
  }
  html[data-theme="dark"] .a2t-mobile-nav-notification strong{
    border-color:#070b14!important;
  }
  .a2t-requests-top-actions{
    display:none!important;
  }

  .a2t-notification-modal{
    inset:72px 0 0 0!important;
    height:calc(100dvh - 72px)!important;
    background:#fff!important;
  }
  .a2t-notification-dialog{
    max-width:420px!important;
    padding:14px 12px 30px!important;
  }
  .a2t-notification-head{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto!important;
    gap:12px!important;
    align-items:start!important;
  }
  .a2t-notification-head .a2t-page-kicker{
    display:inline-flex!important;
    margin-bottom:8px!important;
    font-size:11px!important;
  }
  .a2t-notification-head h2{
    font-size:24px!important;
    margin:0 0 6px!important;
  }
  .a2t-notification-head p{
    max-width:240px!important;
    font-size:13px!important;
    line-height:1.45!important;
  }
  .a2t-notification-actions{
    align-self:start!important;
  }

  .a2t-notification-list{
    display:grid!important;
    gap:10px!important;
  }
  .a2t-notification-item{
    grid-template-columns:38px minmax(0,1fr) 14px!important;
    gap:10px!important;
    align-items:start!important;
    padding:12px!important;
    border-radius:16px!important;
  }
  .a2t-notification-icon{
    width:38px!important;
    height:38px!important;
    border-radius:14px!important;
  }
  .a2t-notification-copy{
    min-width:0!important;
    display:grid!important;
    gap:4px!important;
  }
  .a2t-notification-copy small{
    order:1!important;
    color:#667085!important;
    font-size:11.5px!important;
    font-weight:850!important;
    line-height:1.25!important;
  }
  .a2t-notification-copy strong{
    order:2!important;
    color:#07111f!important;
    font-size:14px!important;
    font-weight:950!important;
    line-height:1.25!important;
    overflow-wrap:anywhere!important;
  }
  .a2t-notification-copy span{
    order:3!important;
    color:#475467!important;
    font-size:13px!important;
    line-height:1.45!important;
    font-weight:650!important;
    overflow-wrap:anywhere!important;
  }
  .a2t-notification-copy em{
    order:4!important;
    display:inline-flex!important;
    width:max-content!important;
    max-width:100%!important;
    border-radius:999px!important;
    background:#edf4ff!important;
    color:#155dfc!important;
    padding:4px 8px!important;
    font-size:11.5px!important;
    line-height:1.2!important;
    font-style:normal!important;
    font-weight:900!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
  }
  .a2t-notification-item > b{
    align-self:center!important;
    color:#98a2b3!important;
    font-size:20px!important;
  }
  html[data-theme="dark"] .a2t-notification-copy strong{
    color:#f8fafc!important;
  }
  html[data-theme="dark"] .a2t-notification-copy span{
    color:#cbd5e1!important;
  }
}
@media(min-width:761px){
  .a2t-mobile-nav-notification{
    display:none!important;
  }
}

/* -------------------------------------------------------------------------
   Global mobile notification panel v7
   ------------------------------------------------------------------------- */
@media(max-width:760px){
  .a2t-nav-actions{
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
  }
  .a2t-mobile-nav-notification{
    position:relative!important;
    top:auto!important;
    right:auto!important;
    z-index:3001!important;
    width:44px!important;
    height:44px!important;
    display:grid!important;
    place-items:center!important;
    border:1px solid #e5eaf2!important;
    border-radius:14px!important;
    background:#fff!important;
    color:#07111f!important;
    box-shadow:none!important;
    padding:0!important;
    cursor:pointer!important;
  }
  .a2t-mobile-nav-notification i{
    color:#155dfc!important;
    font-size:17px!important;
  }
  .a2t-mobile-nav-notification strong{
    position:absolute!important;
    top:-7px!important;
    right:-7px!important;
    min-width:21px!important;
    height:21px!important;
    padding:0 6px!important;
    border-radius:999px!important;
    display:grid!important;
    place-items:center!important;
    background:#155dfc!important;
    color:#fff!important;
    font-size:11px!important;
    line-height:1!important;
    font-weight:950!important;
    border:2px solid #fff!important;
  }
  .a2t-mobile-nav-notification.is-open{
    background:#edf4ff!important;
    border-color:rgba(21,93,252,.26)!important;
  }
  html[data-theme="dark"] .a2t-mobile-nav-notification{
    background:#0d1422!important;
    border-color:#1e293b!important;
    color:#f8fafc!important;
  }
  html[data-theme="dark"] .a2t-mobile-nav-notification strong{
    border-color:#070b14!important;
  }

  html.a2t-notification-open,
  body.a2t-notification-open{
    overflow:hidden!important;
    height:100%!important;
    overscroll-behavior:none!important;
  }
  body.a2t-notification-open{
    position:fixed!important;
    left:0!important;
    right:0!important;
    width:100%!important;
  }

  .a2t-notification-modal[hidden]{
    display:none!important;
  }
  .a2t-notification-modal{
    position:fixed!important;
    z-index:2998!important;
    inset:72px 0 0 0!important;
    width:100%!important;
    height:calc(100dvh - 72px)!important;
    background:#fff!important;
    overflow:hidden!important;
  }
  html[data-theme="dark"] .a2t-notification-modal{
    background:#070b14!important;
  }
  .a2t-notification-backdrop{
    display:none!important;
  }
  .a2t-notification-dialog{
    width:100%!important;
    max-width:420px!important;
    height:100%!important;
    margin:0 auto!important;
    border:0!important;
    border-radius:0!important;
    box-shadow:none!important;
    background:#fff!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    -webkit-overflow-scrolling:touch!important;
    overscroll-behavior:contain!important;
    padding:14px 12px 30px!important;
  }
  html[data-theme="dark"] .a2t-notification-dialog{
    background:#070b14!important;
  }

  /* Important: header scrolls with the notification content, not sticky/fixed. */
  .a2t-notification-head{
    position:relative!important;
    top:auto!important;
    z-index:auto!important;
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto!important;
    gap:12px!important;
    align-items:start!important;
    padding:12px 0 16px!important;
    background:transparent!important;
    border-bottom:1px solid #e5eaf2!important;
    margin-bottom:12px!important;
  }
  html[data-theme="dark"] .a2t-notification-head{
    border-bottom-color:#1e293b!important;
  }
  .a2t-notification-head .a2t-page-kicker{
    display:inline-flex!important;
    margin-bottom:8px!important;
    font-size:11px!important;
  }
  .a2t-notification-head h2{
    font-size:24px!important;
    line-height:1.05!important;
    margin:0 0 6px!important;
  }
  .a2t-notification-head p{
    max-width:250px!important;
    margin:0!important;
    color:#667085!important;
    font-size:13px!important;
    line-height:1.45!important;
  }
  .a2t-notification-actions{
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
    align-self:start!important;
  }
  .a2t-notification-actions strong{
    min-width:30px!important;
    height:28px!important;
    border-radius:999px!important;
    display:grid!important;
    place-items:center!important;
    background:#edf4ff!important;
    color:#155dfc!important;
    font-size:12px!important;
    font-weight:950!important;
  }
  .a2t-notification-actions .a2t-icon-btn{
    width:40px!important;
    height:40px!important;
    border-radius:14px!important;
  }
  .a2t-notification-list{
    display:grid!important;
    gap:10px!important;
  }
  .a2t-notification-item{
    display:grid!important;
    grid-template-columns:38px minmax(0,1fr) 14px!important;
    gap:10px!important;
    align-items:start!important;
    border:1px solid #e5eaf2!important;
    border-radius:16px!important;
    background:#f8fafc!important;
    color:#07111f!important;
    padding:12px!important;
    text-decoration:none!important;
  }
  .a2t-notification-icon{
    width:38px!important;
    height:38px!important;
    border-radius:14px!important;
    display:grid!important;
    place-items:center!important;
    background:#edf4ff!important;
    color:#155dfc!important;
  }
  .a2t-notification-copy{
    min-width:0!important;
    display:grid!important;
    gap:4px!important;
  }
  .a2t-notification-copy small{
    order:1!important;
    color:#667085!important;
    font-size:11.5px!important;
    font-weight:850!important;
    line-height:1.25!important;
  }
  .a2t-notification-copy strong{
    order:2!important;
    color:#07111f!important;
    font-size:14px!important;
    font-weight:950!important;
    line-height:1.25!important;
    overflow-wrap:anywhere!important;
  }
  .a2t-notification-copy span{
    order:3!important;
    color:#475467!important;
    font-size:13px!important;
    line-height:1.45!important;
    font-weight:650!important;
    overflow-wrap:anywhere!important;
  }
  .a2t-notification-copy em{
    order:4!important;
    display:inline-flex!important;
    width:max-content!important;
    max-width:100%!important;
    border-radius:999px!important;
    background:#edf4ff!important;
    color:#155dfc!important;
    padding:4px 8px!important;
    font-size:11.5px!important;
    line-height:1.2!important;
    font-style:normal!important;
    font-weight:900!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
  }
  .a2t-notification-item > b{
    align-self:center!important;
    color:#98a2b3!important;
    font-size:20px!important;
  }
  .a2t-notification-empty{
    border:1px dashed #e5eaf2!important;
    border-radius:16px!important;
    background:#f8fafc!important;
    padding:18px!important;
    display:grid!important;
    gap:6px!important;
  }
  .a2t-notification-empty strong{
    font-size:16px!important;
    font-weight:950!important;
  }
  .a2t-notification-empty span{
    color:#667085!important;
    font-size:13px!important;
    line-height:1.45!important;
  }
  html[data-theme="dark"] .a2t-notification-item,
  html[data-theme="dark"] .a2t-notification-empty{
    background:#111a2b!important;
    border-color:#1e293b!important;
    color:#f8fafc!important;
  }
  html[data-theme="dark"] .a2t-notification-copy strong{
    color:#f8fafc!important;
  }
  html[data-theme="dark"] .a2t-notification-copy span{
    color:#cbd5e1!important;
  }
}
@media(min-width:761px){
  .a2t-mobile-nav-notification{
    display:none!important;
  }
}

/* -------------------------------------------------------------------------
   Notifications inside mobile nav v9
   ------------------------------------------------------------------------- */
@media(max-width:760px){
  .a2t-nav-actions > .a2t-mobile-nav-notification:not(.a2t-mobile-nav-notification-card){
    display:none!important;
  }
  .a2t-mobile-nav-notification-card{
    width:100%!important;
    min-height:58px!important;
    height:auto!important;
    position:relative!important;
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto!important;
    align-items:center!important;
    gap:12px!important;
    border:1px solid #e5eaf2!important;
    border-radius:16px!important;
    background:#f8fafc!important;
    color:#07111f!important;
    padding:12px 14px!important;
    margin:0 0 10px!important;
    text-align:left!important;
    box-shadow:none!important;
  }
  .a2t-mobile-nav-notification-card span{
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
    font-size:15px!important;
    font-weight:950!important;
  }
  .a2t-mobile-nav-notification-card span i{
    width:34px!important;
    height:34px!important;
    border-radius:12px!important;
    display:grid!important;
    place-items:center!important;
    background:#edf4ff!important;
    color:#155dfc!important;
    font-size:16px!important;
  }
  .a2t-mobile-nav-notification-card > strong{
    position:static!important;
    min-width:28px!important;
    height:26px!important;
    padding:0 9px!important;
    border-radius:999px!important;
    display:grid!important;
    place-items:center!important;
    background:#155dfc!important;
    color:#fff!important;
    font-size:12px!important;
    font-weight:950!important;
    border:0!important;
  }
  .a2t-mobile-nav-notification-card > strong[hidden]{
    display:none!important;
  }
  .a2t-mobile-nav-notification-card.is-open{
    background:#edf4ff!important;
    border-color:rgba(21,93,252,.26)!important;
  }
  html[data-theme="dark"] .a2t-mobile-nav-notification-card{
    background:#111a2b!important;
    border-color:#1e293b!important;
    color:#f8fafc!important;
  }
  .a2t-notification-item.is-viewed{
    opacity:.72!important;
  }
  .a2t-notification-item.is-viewed .a2t-notification-icon{
    background:#f1f4f9!important;
    color:#667085!important;
  }
}

/* -------------------------------------------------------------------------
   Mobile nav quick row v10: cart + notification icon
   ------------------------------------------------------------------------- */
@media(max-width:760px){
  .a2t-mobile-nav-quick{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) 76px!important;
    gap:10px!important;
    align-items:stretch!important;
    margin:0 0 10px!important;
  }
  .a2t-mobile-nav-quick .a2t-mobile-cart-link{
    margin:0!important;
    min-height:82px!important;
    align-content:center!important;
  }
  .a2t-mobile-nav-notification-icon{
    position:relative!important;
    width:100%!important;
    min-width:0!important;
    height:82px!important;
    display:grid!important;
    place-items:center!important;
    border:1px solid #e5eaf2!important;
    border-radius:16px!important;
    background:#f8fafc!important;
    color:#155dfc!important;
    padding:0!important;
    margin:0!important;
    box-shadow:none!important;
    cursor:pointer!important;
  }
  .a2t-mobile-nav-notification-icon i{
    width:42px!important;
    height:42px!important;
    border-radius:14px!important;
    display:grid!important;
    place-items:center!important;
    background:#edf4ff!important;
    color:#155dfc!important;
    font-size:18px!important;
  }
  .a2t-mobile-nav-notification-icon > strong{
    position:absolute!important;
    top:12px!important;
    right:12px!important;
    min-width:24px!important;
    height:24px!important;
    padding:0 7px!important;
    border-radius:999px!important;
    display:grid!important;
    place-items:center!important;
    background:#155dfc!important;
    color:#fff!important;
    font-size:11px!important;
    line-height:1!important;
    font-weight:950!important;
    border:2px solid #f8fafc!important;
  }
  .a2t-mobile-nav-notification-icon > strong[hidden]{
    display:none!important;
  }
  .a2t-mobile-nav-notification-icon.is-open{
    background:#edf4ff!important;
    border-color:rgba(21,93,252,.28)!important;
    box-shadow:inset 0 0 0 1px rgba(21,93,252,.08)!important;
  }
  .a2t-mobile-nav-notification-icon.is-open i{
    background:#155dfc!important;
    color:#fff!important;
  }
  html[data-theme="dark"] .a2t-mobile-nav-notification-icon{
    background:#111a2b!important;
    border-color:#1e293b!important;
  }
  html[data-theme="dark"] .a2t-mobile-nav-notification-icon > strong{
    border-color:#111a2b!important;
  }
  html[data-theme="dark"] .a2t-mobile-nav-notification-icon i{
    background:#172033!important;
  }

  /* Neutralize older full-row notification-card styles if cached CSS still exists. */
  .a2t-mobile-nav-notification-card:not(.a2t-mobile-nav-notification-icon){
    display:none!important;
  }
}
@media(max-width:380px){
  .a2t-mobile-nav-quick{
    grid-template-columns:minmax(0,1fr) 68px!important;
  }
  .a2t-mobile-nav-notification-icon,
  .a2t-mobile-nav-quick .a2t-mobile-cart-link{
    min-height:76px!important;
    height:76px!important;
  }
}

/* -------------------------------------------------------------------------
   Mobile notification/nav coordination v11
   ------------------------------------------------------------------------- */
@media(max-width:760px){
  body.a2t-notification-open .a2t-mobile-menu{
    height:0!important;
    border-bottom-width:0!important;
    box-shadow:none!important;
    pointer-events:none!important;
  }
  body.a2t-notification-open .a2t-mobile-menu-btn{
    pointer-events:auto!important;
  }
  .a2t-notification-dialog{
    scroll-padding-top:116px!important;
  }
  .a2t-notification-head{
    position:sticky!important;
    top:0!important;
    z-index:12!important;
    margin:-14px -12px 12px!important;
    padding:14px 12px 14px!important;
    background:#fff!important;
    border-bottom:1px solid #e5eaf2!important;
    box-shadow:0 12px 18px rgba(15,23,42,.06)!important;
  }
  .a2t-notification-actions .a2t-icon-btn{
    width:42px!important;
    height:42px!important;
    flex:0 0 42px!important;
    border-radius:14px!important;
  }
  html[data-theme="dark"] .a2t-notification-head{
    background:#070b14!important;
    border-bottom-color:#1e293b!important;
    box-shadow:0 12px 18px rgba(0,0,0,.24)!important;
  }
}

/* -------------------------------------------------------------------------
   Mobile notification icon + sticky notification header v12
   Keeps the same icon shape on every page, including service/request pages.
   ------------------------------------------------------------------------- */
@media(max-width:760px){
  .a2t-mobile-nav-quick{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) 76px!important;
    gap:10px!important;
    align-items:stretch!important;
    margin:0 0 10px!important;
  }

  .a2t-mobile-nav-quick > .a2t-mobile-cart-link{
    margin:0!important;
    min-height:82px!important;
    height:82px!important;
    align-content:center!important;
  }

  .a2t-mobile-nav-quick > .a2t-mobile-nav-notification.a2t-mobile-nav-notification-icon{
    appearance:none!important;
    -webkit-appearance:none!important;
    position:relative!important;
    inset:auto!important;
    width:100%!important;
    max-width:none!important;
    min-width:0!important;
    min-height:82px!important;
    height:82px!important;
    display:grid!important;
    grid-template-columns:1fr!important;
    place-items:center!important;
    justify-items:center!important;
    align-items:center!important;
    border:1px solid #e5eaf2!important;
    border-radius:16px!important;
    background:#f8fafc!important;
    color:#155dfc!important;
    padding:0!important;
    margin:0!important;
    box-shadow:none!important;
    text-align:center!important;
    cursor:pointer!important;
  }

  .a2t-mobile-nav-quick > .a2t-mobile-nav-notification.a2t-mobile-nav-notification-icon i{
    position:static!important;
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    min-height:42px!important;
    border:0!important;
    border-radius:14px!important;
    display:grid!important;
    place-items:center!important;
    background:#edf4ff!important;
    color:#155dfc!important;
    font-size:18px!important;
    line-height:1!important;
    box-shadow:none!important;
  }

  .a2t-mobile-nav-quick > .a2t-mobile-nav-notification.a2t-mobile-nav-notification-icon > strong{
    position:absolute!important;
    top:-7px!important;
    right:10px!important;
    min-width:28px!important;
    height:24px!important;
    padding:0 8px!important;
    border-radius:999px!important;
    display:grid!important;
    place-items:center!important;
    background:#155dfc!important;
    color:#fff!important;
    font-size:11px!important;
    line-height:1!important;
    font-weight:950!important;
    border:2px solid #f8fafc!important;
    box-shadow:0 8px 18px rgba(21,93,252,.24)!important;
  }

  .a2t-mobile-nav-quick > .a2t-mobile-nav-notification.a2t-mobile-nav-notification-icon > strong[hidden]{
    display:none!important;
  }

  .a2t-mobile-nav-quick > .a2t-mobile-nav-notification.a2t-mobile-nav-notification-icon.is-open{
    background:#edf4ff!important;
    border-color:rgba(21,93,252,.30)!important;
    box-shadow:inset 0 0 0 1px rgba(21,93,252,.08)!important;
  }

  .a2t-mobile-nav-quick > .a2t-mobile-nav-notification.a2t-mobile-nav-notification-icon.is-open i{
    background:#155dfc!important;
    color:#fff!important;
  }

  html[data-theme="dark"] .a2t-mobile-nav-quick > .a2t-mobile-nav-notification.a2t-mobile-nav-notification-icon{
    background:#111a2b!important;
    border-color:#1e293b!important;
    color:#60a5fa!important;
  }

  html[data-theme="dark"] .a2t-mobile-nav-quick > .a2t-mobile-nav-notification.a2t-mobile-nav-notification-icon i{
    background:#172033!important;
    color:#60a5fa!important;
  }

  html[data-theme="dark"] .a2t-mobile-nav-quick > .a2t-mobile-nav-notification.a2t-mobile-nav-notification-icon > strong{
    border-color:#111a2b!important;
  }

  .a2t-notification-modal{
    z-index:2998!important;
    inset:72px 0 0 0!important;
    height:calc(100dvh - 72px)!important;
    overflow:hidden!important;
  }

  .a2t-notification-dialog{
    height:100%!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    padding:14px 12px 30px!important;
    scroll-padding-top:116px!important;
  }

  .a2t-notification-head{
    position:sticky!important;
    top:0!important;
    z-index:20!important;
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto!important;
    align-items:start!important;
    gap:12px!important;
    margin:-14px -12px 12px!important;
    padding:14px 12px 14px!important;
    background:#fff!important;
    border-bottom:1px solid #e5eaf2!important;
    box-shadow:0 12px 18px rgba(15,23,42,.06)!important;
  }

  .a2t-notification-actions{
    align-self:start!important;
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
  }

  .a2t-notification-actions .a2t-icon-btn{
    width:42px!important;
    height:42px!important;
    flex:0 0 42px!important;
    border-radius:14px!important;
    border:1px solid #e5eaf2!important;
    background:#fff!important;
    color:#07111f!important;
    box-shadow:0 8px 18px rgba(15,23,42,.05)!important;
  }

  body.a2t-notification-open .a2t-mobile-menu{
    height:0!important;
    border-bottom-width:0!important;
    box-shadow:none!important;
    pointer-events:none!important;
  }

  body.a2t-notification-open .a2t-mobile-menu.is-open{
    transform:translateY(-100%)!important;
    opacity:0!important;
    visibility:hidden!important;
  }

  html[data-theme="dark"] .a2t-notification-head{
    background:#070b14!important;
    border-bottom-color:#1e293b!important;
    box-shadow:0 12px 18px rgba(0,0,0,.24)!important;
  }

  html[data-theme="dark"] .a2t-notification-actions .a2t-icon-btn{
    background:#0d1422!important;
    border-color:#1e293b!important;
    color:#f8fafc!important;
  }
}

@media(max-width:380px){
  .a2t-mobile-nav-quick{
    grid-template-columns:minmax(0,1fr) 68px!important;
  }
  .a2t-mobile-nav-quick > .a2t-mobile-cart-link,
  .a2t-mobile-nav-quick > .a2t-mobile-nav-notification.a2t-mobile-nav-notification-icon{
    min-height:76px!important;
    height:76px!important;
  }
}
