.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(7, 11, 20, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: visible;
}

html[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(148, 163, 184, 0.16);
}

.site-header__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-header__top {
  min-height: 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.site-header__bottom {
  display: none;
  width: 100%;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

html[data-theme="light"] .site-logo {
  color: #0f172a;
}

.site-logo__badge {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #fde047, #facc15);
  color: #121212;
  font-size: 14px;
}

.site-logo__mark {
  color: #facc15;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-main__link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #a7b6d1;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.mobile-menu__link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #a7b6d1;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

html[data-theme="light"] .nav-main__link,
html[data-theme="light"] .mobile-menu__link {
  color: #475569;
}

html[data-theme="light"] .nav-main__link:hover,
html[data-theme="light"] .nav-main__link.is-active,
html[data-theme="light"] .mobile-menu__link:hover,
html[data-theme="light"] .mobile-menu__link.is-active {
  color: #111827;
  background: rgba(248, 250, 252, 0.96);
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.nav-main__link:hover,
.nav-main__link.is-active,
.mobile-menu__link:hover,
.mobile-menu__link.is-active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.header-search {
  width: 100%;
  max-width: 430px;
  position: relative;
}

.header-search .input-base {
  min-height: 42px;
  padding-right: 44px;
  border-radius: 14px;
}

.header-search__submit {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: #d8e0ef;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

html[data-theme="light"] .header-search__submit {
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
}

.header-search__submit:hover {
  background: rgba(250, 204, 21, 0.18);
  color: #fff;
}

html[data-theme="light"] .header-search__submit:hover {
  background: rgba(250, 204, 21, 0.22);
  color: #0f172a;
}

.site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.header-locale {
  position: relative;
}

.header-locale::after {
  content: "▾";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 11px;
  color: #b7c2d8;
  pointer-events: none;
}

html[data-theme="light"] .header-locale::after {
  color: #64748b;
}

html[data-theme="light"] .header-locale .select-base {
  color: #111827;
  border-color: rgba(148, 163, 184, 0.24);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.header-locale .select-base {
  min-width: 78px;
  min-height: 40px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #eef2ff;
  border: 1px solid rgba(90, 106, 140, 0.28);
  background:
    linear-gradient(180deg, rgba(20, 28, 46, 0.96), rgba(14, 20, 36, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 8px 18px rgba(0,0,0,0.20);
}

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: 40px;
  min-width: 40px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(90, 106, 140, 0.28);
  background:
    linear-gradient(180deg, rgba(20, 28, 46, 0.96), rgba(14, 20, 36, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 8px 18px rgba(0,0,0,0.20);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

html[data-theme="light"] .header-icon {
  border-color: rgba(148, 163, 184, 0.2);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

html[data-theme="light"] .header-icon__glyph {
  color: #475569;
}

html[data-theme="light"] .header-icon:hover {
  border-color: rgba(250, 204, 21, 0.28);
  background: linear-gradient(180deg, #ffffff, #fefce8);
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.06),
    0 0 0 3px rgba(250, 204, 21, 0.08);
}

.header-icon__glyph {
  color: #d7dfef;
  font-size: 16px;
  line-height: 1;
  display: block;
}

.header-icon:hover {
  transform: translateY(-1px);
  border-color: rgba(250, 204, 21, 0.34);
  background:
    linear-gradient(180deg, rgba(28, 37, 58, 0.98), rgba(18, 24, 40, 0.96));
  box-shadow:
    0 10px 22px rgba(0,0,0,0.22),
    0 0 0 3px rgba(250, 204, 21, 0.05);
}

.header-icon:hover .header-icon__glyph {
  color: #fff7db;
}

html[data-theme="light"] .header-icon:hover .header-icon__glyph {
  color: #3b2f1f;
}

.header-menu-toggle {
  display: none;
}

.account-menu {
  position: relative;
}

.account-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 290px;
  padding: 16px;
  border-radius: 20px;
}

.account-menu__header {
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

html[data-theme="light"] .account-menu__header {
  border-bottom-color: rgba(148, 163, 184, 0.18);
}

.account-menu__title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text);
}

.account-menu__subtitle {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 14px;
}

.account-menu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.account-menu__link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--text);
  transition: background .18s ease, color .18s ease;
}

.account-menu__link:hover {
  background: rgba(255,255,255,0.05);
}

html[data-theme="light"] .account-menu__link:hover {
  background: rgba(15, 23, 42, 0.05);
}

.account-menu__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7c8da8;
  flex-shrink: 0;
}

.account-menu__link--danger {
  color: #f87171;
}

.account-menu__actions {
  display: grid;
  gap: 10px;
}

.account-menu__button {
  width: 100%;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  z-index: 120;
  padding: 10px 16px 0;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu__panel {
	
  padding: 12px;
  display: grid;
  gap: 6px;
}

.slider-nav {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

html[data-theme="light"] .slider-nav {
  background: rgba(148, 163, 184, 0.10);
  color: #475569;
}

.slider-nav:hover {
  background: rgba(250, 204, 21, 0.16);
  color: #fff;
  transform: translateY(-1px);
}

html[data-theme="light"] .slider-nav:hover {
  background: rgba(250, 204, 21, 0.18);
  color: #2c2418;
}

.site-footer {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 34px;
}

html[data-theme="light"] .site-footer {
  border-top-color: rgba(148, 163, 184, 0.16);
}

.footer-newsletter {
  margin-bottom: 24px;
  padding: 22px;
}

.footer-newsletter--highlight {
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-color: rgba(250, 204, 21, 0.16);
}

html[data-theme="light"] .footer-newsletter--highlight {
  background: linear-gradient(180deg, #fde047 0%, #facc15 100%);
  border: 1px solid rgba(250, 204, 21, 0.6);
}

html[data-theme="light"] .banner-yellow {
  background: linear-gradient(180deg, #fde047 0%, #facc15 100%);
  border: 1px solid rgba(250, 204, 21, 0.6);
}

.footer-newsletter__content {
  max-width: 620px;
}

.footer-newsletter__eyebrow {
  font-size: 13px;
  font-weight: 800;
  color: #facc15;
}

html[data-theme="light"] .footer-newsletter__eyebrow {
  color: #171717;
  opacity: 0.8;
}

.footer-newsletter__title {
  margin-top: 6px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
}

html[data-theme="light"] .footer-newsletter__title {
  color: #0f172a;
}

.footer-newsletter__text {
  margin-top: 8px;
  color: #9aa9c4;
  line-height: 1.65;
}

html[data-theme="light"] .footer-newsletter__text,
html[data-theme="light"] .footer-brand__text,
html[data-theme="light"] .footer-bottom {
  color: #64748b;
}

html[data-theme="light"] .footer-links__link {
  color: #475569;
}

.footer-newsletter__form {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  padding: 18px 0 8px;
}

.footer-brand__logo {
  display: inline-flex;
}

.footer-brand__text {
  margin-top: 14px;
  max-width: 420px;
  color: #9aa9c4;
  line-height: 1.7;
}

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

.footer-links__title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-links__link {
  display: block;
  margin-bottom: 10px;
  color: #cbd5e1;
  transition: color .18s ease, transform .18s ease;
}

.footer-links__link:hover {
  color: #facc15;
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8ea0be;
  font-size: 13px;
}

.footer-bottom__sep {
  opacity: .5;
}

@media (max-width: 1080px) {
  .nav-main {
    display: none;
  }

  .header-menu-toggle {
    display: inline-flex;
  }

  .site-header__bottom {
    display: block;
    width: 100%;
  }

  .mobile-menu:not([hidden]) {
	  background: radial-gradient(circle at 50% 0%, rgba(250, 204, 21, 0.07), transparent 18%),
    radial-gradient(circle at 15% 8%, rgba(59, 130, 246, 0.08), transparent 18%),
    linear-gradient(180deg, #070b14 0%, #0b1020 58%, #0c1222 100%);
    display: block;
	padding-bottom: 25px;
  }
  
  html[data-theme="light"] .mobile-menu:not([hidden]) { background: #fff; }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1081px) {
  .site-header__bottom {
    /*display: none; */
  }

  .header-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-header__top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .site-header__left {
    gap: 10px;
  }

  .site-logo {
    font-size: 17px;
    min-width: 0;
  }

  .site-logo__text {
    white-space: nowrap;
  }

  .site-header__right {
    gap: 8px;
    justify-content: flex-end;
  }

  .header-search,
  .site-header__bottom .header-search {
    width: 100%;
    max-width: 100%;
  }

  .header-locale .select-base {
    min-width: 60px;
    min-height: 38px;
    padding-left: 10px;
    padding-right: 28px;
    font-size: 12px;
  }

  .header-icon {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 12px;
  }

  .account-menu__dropdown {
    width: min(290px, calc(100vw - 32px));
    right: 0;
  }

  .footer-newsletter__form {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }
}

.header-icon {
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.header-icon:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: rgba(255, 200, 0, 0.08);
}

/* DARK */
html[data-theme="dark"] .header-icon {
  color: #9fb3c8;
}

/* LIGHT */
html[data-theme="light"] .header-icon {
  color: #475569;
}

.header-locale select,
.header-locale select option {
  background-color: #0f172a;
  color: #e5edf8;
}

.site-header__top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header__left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 1 auto;
    min-width: 0;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.site-header__search {
    flex: 1 1 420px;
    min-width: 220px;
    max-width: 640px;
}

.header-search {
    display: flex;
    width: 100%;
}

.header-search .input-base {
    width: 100%;
}

.site-header__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    margin-left: auto;
}

@media (max-width: 900px) {
    .site-header__top {
        flex-wrap: wrap;
    }

    .site-header__left {
        flex: 1 1 auto;
    }

    .site-header__search {
        order: 3;
        flex: 1 1 100%;
        max-width: none;
        width: 100%;
    }

    .header-search {
        width: 100%;
    }

    .site-header__right {
        flex: 0 0 auto;
    }
}

/* desktop */
.header-menu-toggle {
    display: none;
}

.nav-main {
    display: flex;
}

/* mobile */
@media (max-width: 900px) {
    .header-menu-toggle {
        display: inline-flex;
    }

    .nav-main {
        display: none;
    }
	
	.site-header__search {
    margin-left: auto;
    margin-right: 12px;
    flex: 1 1 420px;
    min-width: 220px;
    max-width: 640px;
}

.header-search {
    width: 100%;
}
}

.site-header__top {
    display: flex;
    align-items: center;
}

.site-header__left {
    display: flex;
    align-items: center;
}

.site-header__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================================
   MOBILE HEADER / MENU IMPROVEMENTS
   ========================================= */

@media (max-width: 900px) {
  .site-header__inner {
    gap: 12px;
  }

  .site-header__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .site-header__left {
    display: contents;
  }

  .header-menu-toggle {
    grid-column: 1;
    justify-self: start;
  }

  .site-logo {
    grid-column: 2;
    justify-self: start;
    min-width: 0;
  }

  .site-header__right {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
    gap: 8px;
  }

  /* desktop search becomes its own full-width row */
  .site-header__search {
    grid-column: 1 / -1;
    order: 10;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .header-search {
    width: 100%;
  }

  .header-search .input-base {
    width: 100%;
    min-height: 46px;
    border-radius: 16px;
    padding-left: 16px;
    padding-right: 46px;
  }

  .header-search__submit {
    width: 34px;
    height: 34px;
    right: 6px;
    border-radius: 12px;
  }

  /* prettier slide-down menu */
  .mobile-menu {
    padding: 10px 0 0;
  }

  .mobile-menu:not([hidden]) {
    display: block;
    padding-bottom: 18px;
    background: transparent;
  }

  .mobile-menu__panel {
    padding: 14px;
    border-radius: 24px;
    display: grid;
    gap: 14px;
    background:
      radial-gradient(circle at top right, rgba(250, 204, 21, 0.10), transparent 28%),
      linear-gradient(180deg, rgba(14, 20, 36, 0.98), rgba(9, 14, 26, 0.98));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
      0 18px 40px rgba(0,0,0,0.34),
      inset 0 1px 0 rgba(255,255,255,0.04);
  }

  html[data-theme="light"] .mobile-menu__panel {
    background:
      radial-gradient(circle at top right, rgba(250, 204, 21, 0.12), transparent 28%),
      linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow:
      0 16px 34px rgba(15, 23, 42, 0.08),
      inset 0 1px 0 rgba(255,255,255,0.96);
  }

  .mobile-menu__search {
    width: 100%;
    max-width: 100%;
  }

  .mobile-menu__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mobile-menu__link {
    min-height: 54px;
    padding: 0 14px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e8eefc;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-menu__link:hover,
  .mobile-menu__link:active {
    transform: translateY(-1px);
    background: linear-gradient(180deg, rgba(250, 204, 21, 0.16), rgba(255,255,255,0.04));
    border-color: rgba(250, 204, 21, 0.26);
    color: #fff;
  }

  html[data-theme="light"] .mobile-menu__link {
    color: #0f172a;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow:
      0 8px 18px rgba(15, 23, 42, 0.04),
      inset 0 1px 0 rgba(255,255,255,0.96);
  }

  html[data-theme="light"] .mobile-menu__link:hover,
  html[data-theme="light"] .mobile-menu__link:active {
    background: linear-gradient(180deg, #fffbea, #fef3c7);
    border-color: rgba(250, 204, 21, 0.34);
    color: #111827;
  }

  .mobile-menu__icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
    line-height: 1;
  }

  html[data-theme="light"] .mobile-menu__icon {
    background: rgba(250, 204, 21, 0.12);
    border-color: rgba(250, 204, 21, 0.18);
  }
}

@media (max-width: 760px) {
  .site-header__top {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-logo__text {
    font-size: 16px;
  }

  .site-header__right .header-icon:nth-child(3) {
    display: inline-flex;
  }

  .site-header__search {
    margin-top: 2px;
  }

  .mobile-menu__panel {
    border-radius: 22px;
    padding: 12px;
  }

  .mobile-menu__link {
    min-height: 52px;
    border-radius: 15px;
  }
}

.mobile-menu__icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* 🔥 clean style */
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: #9fb3c8;
}

/* hover = match your yellow accent */
.mobile-menu__link:hover .mobile-menu__icon {
  color: #facc15;
  border-color: rgba(250, 204, 21, 0.35);
  background: rgba(250, 204, 21, 0.08);
}

/* light theme */
html[data-theme="light"] .mobile-menu__icon {
  color: #64748b;
  border-color: rgba(148,163,184,0.2);
  background: transparent;
}

html[data-theme="light"] .mobile-menu__link:hover .mobile-menu__icon {
  color: #facc15;
  border-color: rgba(250, 204, 21, 0.4);
  background: rgba(250, 204, 21, 0.12);
}
.product-card__corner-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0;
}

.product-card__corner-badge--lowest-ever {
  color: #4ade80;
  background: rgba(12, 38, 24, 0.92);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.product-card__corner-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  box-shadow: 0;
}

.product-card__corner-badge--lowest-ever {
  color: #22c55e;
 background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.24);
  box-shadow: 0;
}

html[data-theme="light"] .product-card__corner-badge--lowest-ever {
  color: #22c55e;
 background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.24);
	box-shadow: 0;
}
/* =========================================
   USER PAGE SIDEBAR
========================================= */
.user-page-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.user-page-main {
  min-width: 0;
}

.user-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.user-sidebar__profile {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 4px 10px;
}

.user-sidebar__avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #171717;
  font-weight: 900;
  background: linear-gradient(180deg, #fde047, #facc15);
  box-shadow: 0 12px 24px rgba(250, 204, 21, 0.16);
}

.user-sidebar__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-sidebar__profile-copy {
  min-width: 0;
}

.user-sidebar__name {
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-sidebar__meta {
  margin-top: 2px;
  font-size: 12px;
  color: var(--text-soft);
}

.user-sidebar__nav {
  display: grid;
  gap: 6px;
}

.user-sidebar__link {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border-radius: 14px;
  color: #a8b5cc;
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.user-sidebar__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.06);
}

.user-sidebar__link.is-active {
  color: #facc15;
  background: linear-gradient(180deg, rgba(250,204,21,0.12), rgba(250,204,21,0.035));
  border-color: rgba(250,204,21,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.user-sidebar__icon {
  width: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
}

.user-sidebar__label {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-sidebar__badge {
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #171717;
  background: linear-gradient(180deg, #fde047, #facc15);
  font-size: 12px;
  font-weight: 900;
}

.user-sidebar__status {
  padding: 18px;
  border-radius: 18px;
}

.user-sidebar__status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.user-sidebar__status-head strong {
  font-size: 14px;
}

.user-sidebar__status-head span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #4ade80;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.22);
  font-size: 12px;
  font-weight: 900;
}

.user-sidebar__status p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.user-sidebar__status-button {
  width: 100%;
  margin-top: 16px;
  min-height: 42px;
}

html[data-theme="light"] .user-sidebar__link {
  color: #64748b;
}

html[data-theme="light"] .user-sidebar__link:hover {
  color: #0f172a;
  background: rgba(15,23,42,0.04);
  border-color: rgba(148,163,184,0.16);
}

html[data-theme="light"] .user-sidebar__link.is-active {
  color: #a16207;
  background: linear-gradient(180deg, rgba(250,204,21,0.18), rgba(250,204,21,0.07));
  border-color: rgba(250,204,21,0.34);
}

@media (max-width: 1080px) {
  .user-page-shell {
    grid-template-columns: 1fr;
  }

  .user-sidebar {
    position: relative;
    top: auto;
    gap: 12px;
    padding-bottom: 4px;
  }

  .user-sidebar__profile,
  .user-sidebar__status {
    display: none;
  }

  .user-sidebar__nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .user-sidebar__nav::-webkit-scrollbar {
    display: none;
  }

  .user-sidebar__link {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 13px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border-color: rgba(255,255,255,0.07);
  }

  html[data-theme="light"] .user-sidebar__link {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border-color: rgba(148,163,184,0.18);
  }
}

@media (max-width: 640px) {
  .user-sidebar__label {
    font-size: 13px;
  }

  .user-sidebar__icon {
    width: 20px;
    min-width: 20px;
  }
}

/* =========================================
   HEADER SHIPPING LOCATION BUTTON
========================================= */
.header-locale__button {
  min-height: 40px;
  padding: 0 34px 0 12px;
  gap: 8px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
}

.header-locale__flag {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}

.header-locale__country {
  letter-spacing: 0.01em;
}

@media (max-width: 760px) {
  .header-locale__button {
    min-width: 62px;
    min-height: 38px;
    padding-left: 10px;
    padding-right: 28px;
  }

  .header-locale__flag {
    width: 18px;
    height: 18px;
  }
}

/* =========================================
   USER HEADER MOBILE FIX
========================================= */

@media (max-width: 640px) {

  .user-page-main {
    padding-top: 4px;
  }
  
  .user-sidebar {
	  display: block !Important;
  }

  /* header card (welcome block) */
  .user-header,
  .user-overview-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* avatar + text stack better */
  .user-header__top {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .user-header__avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 14px;
  }

  .user-header__title {
    font-size: 18px;
    line-height: 1.2;
  }

  .user-header__subtitle {
    font-size: 13px;
  }

  .user-header__meta {
    font-size: 12px;
  }

  /* prevent text overflow like "Aron de Haas 👋" */
  .user-header__title,
  .user-header__subtitle {
    word-break: break-word;
  }
}

/* =========================================
   MOBILE BOTTOM NAV + COMPACT HEADER PATCH
========================================= */
.header-alert-button {
  position: relative;
  overflow: visible;
}

.header-alert-button__badge {
  position: absolute;
  top: -6px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #fde047, #facc15);
  color: #171717;
  border: 2px solid #0b1020;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(0,0,0,0.22);
}

html[data-theme="light"] .header-alert-button__badge {
  border-color: #ffffff;
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .site-header__inner {
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-header__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
  }

  .site-header__left {
    display: flex;
    min-width: 0;
    grid-column: 1;
  }

  .site-logo {
    justify-self: start;
    min-width: 0;
  }

  .site-logo__badge {
    width: 28px;
    height: 28px;
  }

  .site-logo__text {
    font-size: 16px;
  }

  .site-header__right {
    grid-column: 2;
    justify-self: end;
    gap: 7px;
    margin-left: 0;
  }

  .header-menu-toggle {
    display: none !important;
  }

  .site-header__search {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .header-locale__button {
    min-width: 38px;
    width: 38px;
    min-height: 38px;
    padding: 0;
    justify-content: center;
    border-radius: 12px;
  }

  .header-locale__country,
  .header-locale::after {
    display: none;
  }

  .header-locale__flag {
    width: 20px;
    height: 20px;
  }

  .header-icon {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 12px;
  }

  .header-alert-button__badge {
    top: -5px;
    right: -5px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    font-size: 9px;
  }

  .mobile-menu.mobile-bottom-nav,
  .mobile-menu.mobile-bottom-nav:not([hidden]) {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 220;
    display: block !important;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(7, 11, 20, 0.88);
    border-top: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
  }

  html[data-theme="light"] .mobile-menu.mobile-bottom-nav,
  html[data-theme="light"] .mobile-menu.mobile-bottom-nav:not([hidden]) {
    background: rgba(255,255,255,0.92);
    border-top-color: rgba(148,163,184,0.18);
  }

  .mobile-menu.mobile-bottom-nav .container-main {
    padding-inline: 0;
  }

  .mobile-menu.mobile-bottom-nav .mobile-menu__panel {
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .mobile-menu.mobile-bottom-nav .mobile-menu__nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
  }

  .mobile-menu.mobile-bottom-nav .mobile-menu__link {
    min-height: 58px;
    padding: 6px 4px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    line-height: 1.1;
    text-align: center;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .mobile-menu.mobile-bottom-nav .mobile-menu__link:hover,
  .mobile-menu.mobile-bottom-nav .mobile-menu__link:active,
  .mobile-menu.mobile-bottom-nav .mobile-menu__link.is-active {
    transform: none;
    color: #facc15;
    background: rgba(250,204,21,0.10);
    border-color: rgba(250,204,21,0.18);
  }

  html[data-theme="light"] .mobile-menu.mobile-bottom-nav .mobile-menu__link {
    background: transparent;
    border-color: transparent;
    color: #64748b;
    box-shadow: none;
  }

  html[data-theme="light"] .mobile-menu.mobile-bottom-nav .mobile-menu__link:hover,
  html[data-theme="light"] .mobile-menu.mobile-bottom-nav .mobile-menu__link:active,
  html[data-theme="light"] .mobile-menu.mobile-bottom-nav .mobile-menu__link.is-active {
    color: #a16207;
    background: rgba(250,204,21,0.14);
    border-color: rgba(250,204,21,0.24);
  }

  .mobile-menu.mobile-bottom-nav .mobile-menu__icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 0;
    background: transparent;
    color: inherit;
  }
}

@media (min-width: 901px) {
  .mobile-menu.mobile-bottom-nav {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .site-logo__text {
    max-width: 126px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header__right {
    gap: 5px;
  }
}

/* iPhone/Safari bottom bar fix: keep mobile bottom nav inside the visible safe area. */
@media (max-width: 900px) {
  :root {
    --bt-mobile-nav-height: calc(74px + env(safe-area-inset-bottom, 0px));
  }

  body {
    padding-bottom: var(--bt-mobile-nav-height);
  }

  .mobile-menu.mobile-bottom-nav,
  .mobile-menu.mobile-bottom-nav:not([hidden]) {
    position: fixed;
    top: auto !important;
    bottom: env(safe-area-inset-bottom, 0px) !important;
    left: 0;
    right: 0;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    padding-bottom: 8px;
  }

  @supports (height: 100dvh) {
    .mobile-menu.mobile-bottom-nav,
    .mobile-menu.mobile-bottom-nav:not([hidden]) {
      max-height: 100dvh;
    }
  }
}

/* =========================================
   USER MENU MOBILE DROPDOWN
========================================= */
.user-sidebar__mobile-toggle {
  display: none;
}

@media (max-width: 1080px) {
  .user-sidebar {
    width: 100%;
    position: relative;
    z-index: 20;
  }

  .user-sidebar__mobile-toggle {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 18px;
    cursor: pointer;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.08);
    background:
      radial-gradient(circle at top right, rgba(250,204,21,0.12), transparent 34%),
      linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    box-shadow:
      0 14px 30px rgba(0,0,0,0.18),
      inset 0 1px 0 rgba(255,255,255,0.045);
  }

  html[data-theme="light"] .user-sidebar__mobile-toggle {
    border-color: rgba(148,163,184,0.20);
    background:
      radial-gradient(circle at top right, rgba(250,204,21,0.16), transparent 34%),
      linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow:
      0 12px 26px rgba(15,23,42,0.06),
      inset 0 1px 0 rgba(255,255,255,0.96);
  }

  .user-sidebar__mobile-current {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .user-sidebar__mobile-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #facc15;
    background: rgba(250,204,21,0.10);
    border: 1px solid rgba(250,204,21,0.20);
  }

  .user-sidebar__mobile-icon svg,
  .user-sidebar__icon svg {
    width: 19px;
    height: 19px;
    display: block;
  }

  .user-sidebar__mobile-kicker {
    display: block;
    margin-bottom: 2px;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: .04em;
  }

  .user-sidebar__mobile-current strong {
    display: block;
    max-width: 62vw;
    font-size: 15px;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .user-sidebar__mobile-chevron {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #94a3b8;
    background: rgba(255,255,255,0.05);
    transition: transform .18s ease, background .18s ease, color .18s ease;
  }

  html[data-theme="light"] .user-sidebar__mobile-chevron {
    color: #64748b;
    background: rgba(15,23,42,0.04);
  }

  .user-sidebar.is-open .user-sidebar__mobile-chevron {
    transform: rotate(180deg);
    color: #facc15;
  }

  .user-sidebar__main {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 30;
    padding: 12px;
    border-radius: 22px;
    opacity: 0;
    transform: translateY(-6px) scale(.985);
    pointer-events: none;
    visibility: hidden;
    background:
      radial-gradient(circle at top right, rgba(250,204,21,0.12), transparent 30%),
      linear-gradient(180deg, rgba(14,20,36,0.99), rgba(9,14,26,0.99));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
      0 22px 50px rgba(0,0,0,0.34),
      inset 0 1px 0 rgba(255,255,255,0.04);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  html[data-theme="light"] .user-sidebar__main {
    background:
      radial-gradient(circle at top right, rgba(250,204,21,0.15), transparent 30%),
      linear-gradient(180deg, #ffffff, #f8fafc);
    border-color: rgba(148,163,184,0.18);
    box-shadow:
      0 18px 42px rgba(15,23,42,0.10),
      inset 0 1px 0 rgba(255,255,255,0.96);
  }

  .user-sidebar.is-open .user-sidebar__main {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
  }

  .user-sidebar__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .user-sidebar__link {
    min-width: 0;
    min-height: 54px;
    flex: initial;
    padding: 0 12px;
    border-radius: 16px;
  }

  .user-sidebar__link--danger {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .user-sidebar__nav {
    grid-template-columns: 1fr;
  }

  .user-sidebar__link {
    min-height: 50px;
  }
}


/* =========================================
   RESTORE IPHONE BOTTOM NAV POSITION
   Keep the bottom nav outside the sticky header and pinned to the visual bottom.
========================================= */
@media (max-width: 900px) {
  :root {
    --bt-mobile-bottom-gap: env(safe-area-inset-bottom, 0px);
    --bt-mobile-nav-height: calc(76px + var(--bt-mobile-bottom-gap));
  }

  body {
    padding-bottom: var(--bt-mobile-nav-height) !important;
  }

  .mobile-menu.mobile-bottom-nav,
  .mobile-menu.mobile-bottom-nav:not([hidden]) {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999 !important;
    display: block !important;
    padding: 8px 10px calc(8px + var(--bt-mobile-bottom-gap)) !important;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
   
    pointer-events: none;
  }

  .mobile-menu.mobile-bottom-nav .container-main,
  .mobile-menu.mobile-bottom-nav .mobile-menu__panel,
  .mobile-menu.mobile-bottom-nav .mobile-menu__link {
    pointer-events: auto;
  }
}

@media (min-width: 901px) {
  .mobile-menu.mobile-bottom-nav {
    display: none !important;
  }
}

/* =========================================
   HEADER LIVE SEARCH
========================================= */
.header-search {
  position: relative;
}

.header-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 350;
  max-height: min(440px, calc(100vh - 150px));
  overflow-y: auto;
  padding: 8px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(14, 20, 36, 0.99), rgba(9, 14, 26, 0.99));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 22px 50px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

html[data-theme="light"] .header-search-results {
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  border-color: rgba(148,163,184,0.18);
  box-shadow:
    0 18px 42px rgba(15,23,42,0.10),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.header-search-result {
  min-height: 66px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  color: var(--text);
  border: 1px solid transparent;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

.header-search-result:hover,
.header-search-result.is-active {
  transform: translateY(-1px);
  background: rgba(250,204,21,0.10);
  border-color: rgba(250,204,21,0.22);
}

.header-search-result__image {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
}

html[data-theme="light"] .header-search-result__image {
  background: rgba(15,23,42,0.04);
  border-color: rgba(148,163,184,0.16);
}

.header-search-result__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.header-search-result__body {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.header-search-result__title {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-search-result__meta,
.header-search-loading,
.header-search-empty {
  font-size: 12px;
  color: var(--text-soft);
}

.header-search-loading,
.header-search-empty {
  padding: 14px;
}

@media (max-width: 900px) {
  .header-search-results {
    max-height: min(420px, calc(100dvh - 190px));
  }
}

/* Header live search deal badges */
.header-search-result {
  grid-template-columns: 48px minmax(0, 1fr) auto;
}

.header-search-result__meta {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  flex-wrap: wrap;
}

.header-search-result__msrp {
  color: #94a3b8;
  text-decoration: line-through;
  opacity: .82;
}

.header-search-result__badges {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 150px;
}

.header-search-result__badge {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.header-search-result__badge--lowest,
.header-search-result__badge--discount {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.24);
}

html[data-theme="light"] .header-search-result__badge--lowest,
html[data-theme="light"] .header-search-result__badge--discount {
  color: #16a34a;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.26);
}

@media (max-width: 520px) {
  .header-search-result {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .header-search-result__image {
    width: 44px;
    height: 44px;
  }

  .header-search-result__badges {
    grid-column: 2;
    justify-content: flex-start;
    max-width: none;
    margin-top: -2px;
  }
}

/* =========================================
   FOOTER POLISH
========================================= */
.footer-main {
  align-items: start;
}

.footer-brand {
  min-width: 0;
}

.footer-brand__logo {
  width: fit-content;
  margin-bottom: 14px;
}

.footer-brand__logo-img {
  height: 34px;
  width: auto;
}

html[data-theme="light"] .footer-brand__logo-img {
  content: url("/images/logo-light.svg");
}

.footer-brand__legal {
  max-width: 620px;
  font-size: 13px;
  line-height: 1.75;
  color: #94a3b8;
}

html[data-theme="light"] .footer-brand__legal {
  color: #64748b;
}

.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials__link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #9fb3c8;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition:
    color .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.footer-socials__link:hover {
  color: #facc15;
  border-color: rgba(250,204,21,0.36);
  background: linear-gradient(180deg, rgba(250,204,21,0.12), rgba(255,255,255,0.03));
  box-shadow:
    0 10px 22px rgba(0,0,0,0.18),
    0 0 0 3px rgba(250,204,21,0.05),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

html[data-theme="light"] .footer-socials__link {
  color: #64748b;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-color: rgba(148, 163, 184, 0.20);
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

html[data-theme="light"] .footer-socials__link:hover {
  color: #a16207;
  border-color: rgba(250,204,21,0.38);
  background: linear-gradient(180deg, #ffffff, #fef3c7);
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.07),
    0 0 0 3px rgba(250,204,21,0.10),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.footer-bottom {
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom span:last-child {
  margin-left: auto;
  text-align: right;
}

@media (max-width: 760px) {
  .footer-main {
    gap: 28px;
  }

  .footer-brand__logo-img {
    height: 30px;
  }

  .footer-socials__link {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom__sep {
    display: none;
  }

  .footer-bottom span:last-child {
    margin-left: 0;
    text-align: left;
  }
}

/* Footer social SVG icons: no Font Awesome dependency needed */
.footer-socials__link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials__link--youtube svg,
.footer-socials__link--tiktok svg,
.footer-socials__link--x svg,
.footer-socials__link--facebook svg {
  fill: currentColor;
  stroke: none;
}

.footer-socials__link--youtube svg path:last-child {
  fill: #0b1020;
}

html[data-theme="light"] .footer-socials__link--youtube svg path:last-child {
  fill: #ffffff;
}
