.mybux-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 1400;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 20px 60px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease,
    border-bottom 0.3s ease;
}

.mybux-site-header.scrolled {
  background: rgba(5, 8, 22, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.28);
}

.mybux-logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.mybux-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.mybux-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px #00eaff);
  transition: filter 0.3s ease;
}

.mybux-logo img:hover {
  filter: drop-shadow(0 0 15px #00eaff);
}

.mybux-desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-self: center;
}

.mybux-nav-link,
.mybux-nav-dropdown-toggle {
  color: #ccc;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: 0.3s ease;
}

.mybux-nav-link:hover,
.mybux-nav-dropdown:hover .mybux-nav-dropdown-toggle,
.mybux-nav-dropdown:focus-within .mybux-nav-dropdown-toggle {
  color: #00eaff;
}

.mybux-desktop-cart-link {
  display: inline-flex;
  align-items: center;
}

.mybux-desktop-cart-link[hidden] {
  display: none;
}

.mybux-nav-dropdown {
  position: relative;
}

.mybux-nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.mybux-nav-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}

.mybux-nav-dropdown:hover .mybux-nav-dropdown-toggle::after,
.mybux-nav-dropdown:focus-within .mybux-nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
}

.mybux-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 220px;
  padding: 12px;
  display: grid;
  gap: 8px;
  border-radius: 20px;
  background: rgba(6, 10, 24, 0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 50px rgba(0,0,0,0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.mybux-nav-dropdown:hover .mybux-nav-dropdown-menu,
.mybux-nav-dropdown:focus-within .mybux-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mybux-nav-dropdown-menu a {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s ease;
}

.mybux-nav-dropdown-menu a:hover {
  background: rgba(0,234,255,0.10);
  color: #00eaff;
}

.mybux-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.mybux-auth-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mybux-btn-glow,
.mybux-btn-outline {
  border-radius: 999px;
  padding: 13px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.mybux-btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  border: none;
  background: linear-gradient(90deg, #8b5cff 0%, #00eaff 52%, #2cff9a 100%);
  color: #5b2bbd;
  box-shadow:
    0 0 16px rgba(0, 234, 255, 0.24),
    0 0 32px rgba(139, 92, 255, 0.18);
}

.mybux-btn-glow:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 18px rgba(0, 234, 255, 0.32),
    0 0 38px rgba(139, 92, 255, 0.24),
    0 0 64px rgba(44, 255, 154, 0.14);
}

.mybux-btn-outline {
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(9, 14, 28, 0.96), rgba(9, 14, 28, 0.96)) padding-box,
    linear-gradient(135deg, #7a3cff 0%, #00eaff 52%, #2cff9a 100%) border-box;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0,234,255,0.12);
}

.mybux-btn-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(0,234,255,0.18);
}

.mybux-user-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mybux-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #00eaff;
  object-fit: cover;
  flex-shrink: 0;
}

.mybux-user-name {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mybux-menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
}

.mybux-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: rgba(5, 8, 22, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1450;
  transition: right 0.3s ease;
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -10px 0 30px rgba(0,0,0,0.35);
}

.mybux-mobile-menu.open {
  right: 0;
}

.mybux-mobile-menu-content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mybux-mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.mybux-close-menu {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.mybux-mobile-user-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.mybux-mobile-user-area .mybux-user-avatar {
  width: 42px;
  height: 42px;
}

.mybux-mobile-user-area .mybux-user-name {
  max-width: 180px;
  font-size: 14px;
}

.mybux-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mybux-mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.mybux-mobile-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(0,234,255,0.82);
}

.mybux-mobile-nav a {
  text-decoration: none;
  color: white;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s ease;
}

.mybux-mobile-nav a:hover {
  background: rgba(255,255,255,0.08);
  color: #00eaff;
}

.mybux-mobile-actions {
  margin-top: auto;
  padding-top: 20px;
  display: grid;
  gap: 12px;
}

.mybux-mobile-cart-btn,
.mybux-mobile-logout-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.mybux-mobile-cart-btn {
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(10, 14, 30, 0.96), rgba(10, 14, 30, 0.96)) padding-box,
    linear-gradient(135deg, #7a3cff 0%, #00eaff 52%, #2cff9a 100%) border-box;
  box-shadow: 0 0 18px rgba(0, 234, 255, 0.18);
}

.mybux-mobile-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(0, 234, 255, 0.28);
}

.mybux-mobile-logout-btn {
  background: #ff4d4d;
}

.mybux-mobile-logout-btn:hover {
  background: #ff2f2f;
  transform: translateY(-1px);
}

body.mybux-shared-header-active {
  padding-top: 112px !important;
}

body.mybux-shared-header-active .topbar {
  display: none !important;
}

.mybux-site-footer {
  position: relative;
  margin-top: 72px;
  padding: 0 22px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at 18% 18%, rgba(122, 60, 255, 0.16), transparent 34%),
    radial-gradient(circle at 84% 14%, rgba(0, 255, 200, 0.08), transparent 26%),
    #03050f;
}

body.mybux-shared-footer-flex-layout {
  flex-wrap: wrap;
  align-content: flex-start;
}

body.mybux-shared-footer-flex-layout > .mybux-site-footer {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  align-self: stretch;
}

.mybux-footer-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 42px;
}

.mybux-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.mybux-footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.mybux-footer-logo img {
  width: clamp(118px, 12vw, 170px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 234, 255, 0.32));
}

.mybux-footer-copy {
  max-width: 360px;
  margin: 0 auto;
  color: #b8c2d4;
  font-size: 14px;
  line-height: 1.8;
}

.mybux-footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mybux-footer-social {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  background:
    linear-gradient(rgba(9, 14, 28, 0.96), rgba(9, 14, 28, 0.96)) padding-box,
    linear-gradient(135deg, #7a3cff 0%, #00eaff 52%, #2cff9a 100%) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mybux-footer-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0, 234, 255, 0.18);
}

.mybux-footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mybux-footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mybux-footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mybux-footer-title {
  color: #f8fbff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.mybux-footer-link {
  color: #aab6c7;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.25s ease, transform 0.25s ease;
}

.mybux-footer-link:hover {
  color: #00eaff;
  transform: translateX(2px);
}

.mybux-footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #7e8aa0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .mybux-desktop-nav {
    display: none;
  }

  .mybux-menu-toggle {
    display: block;
  }

  .mybux-site-header {
    grid-template-columns: auto 1fr auto;
    padding: 14px 16px;
  }

  .mybux-site-footer {
    margin-top: 52px;
    padding: 0 16px 22px;
  }

  .mybux-footer-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0 22px;
  }

  .mybux-footer-links-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
  }

  .mybux-footer-brand {
    align-items: center;
    text-align: center;
  }

  .mybux-footer-column {
    align-items: center;
    text-align: center;
  }

  .mybux-footer-copy,
  .mybux-footer-title,
  .mybux-footer-link,
  .mybux-footer-bottom {
    text-align: center;
  }

  .mybux-footer-socials {
    justify-content: center;
  }

  .mybux-logo img {
    height: 34px;
  }

  .mybux-header-right {
    margin-left: 0;
    justify-self: end;
  }

  .mybux-auth-area {
    display: none !important;
  }

  .mybux-menu-toggle {
    font-size: 24px;
  }

  body.mybux-shared-header-active {
    padding-top: 94px !important;
  }
}

@media (max-width: 480px) {
  .mybux-site-header {
    padding: 14px 14px;
  }

  .mybux-footer-link,
  .mybux-footer-copy {
    font-size: 13px;
  }

  .mybux-logo img {
    height: 32px;
  }
}
