/* ============================================================
   Luximport — Design System
   Tokens extracted directly from the Figma source file.
   ============================================================ */

/* --- Geologica (Google Fonts & Local Variable Font) --- */
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap');

@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Variable.ttf") format("truetype-variations"),
       url("../fonts/Geologica-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Alias "Nexa" to "Geologica" so any direct references resolve to Geologica */
@font-face {
  font-family: "Nexa";
  src: local("Geologica"),
       url("../fonts/Geologica-Variable.ttf") format("truetype-variations"),
       url("../fonts/Geologica-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* --- Color --- */
  --white: #ffffff;
  --black: #000000;
  --gray-bg: #fafafa;        /* app background */
  --gray-ui: #eaeaea;        /* hairline borders */
  --gray-txt: #999999;       /* secondary text / "Gray for txt" */
  --hint: #838383;           /* field hints */
  --hint-2: #7d7d7d;         /* muted links */

  /* --- Typography --- */
  --font-display: "Geologica", "Nexa", "Poppins", "Inter", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-jakarta: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;

  /* --- Spacing / layout --- */
  --header-h: 64px;
  --footer-h: 228px;
  --container: 1440px;       /* page box; with --gutter padding → 1344 content column, matching Figma */
  --gutter: 48px;            /* side padding */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 32px;
  --radius-circle: 50%;

  /* --- Elevation --- */
  --shadow-card: 0 2px 5px rgba(10, 10, 10, 0.05), 0 4px 10px rgba(10, 10, 10, 0.10);
  --shadow-menu: 0 0 10px rgba(10, 10, 10, 0.05), 0 10px 15px rgba(10, 10, 10, 0.10);
  --shadow-pop: 0 4px 14.4px rgba(0, 0, 0, 0.02), 0 2px 3px rgba(0, 0, 0, 0.03);
  --shadow-3xl: 0 30px 60px rgba(10, 10, 10, 0.20);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--black);
  background: var(--gray-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01";
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--black); color: var(--white); }

/* ----------------------------- Layout ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.page { min-height: 100vh; display: flex; flex-direction: column; padding-top: var(--header-h); }
.page__main { flex: 1 0 auto; padding-bottom: 96px; min-height: calc(100vh - 80px - 280px); }
.section { padding-block: 56px; }
.stack > * + * { margin-top: var(--gap, 16px); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ----------------------------- Typography ----------------------------- */
.t-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 60px);
  line-height: 0.92;            /* 55/60 */
  letter-spacing: -0.02em;
}
.t-h1 {                          /* login title */
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.22;            /* 44/36 */
  letter-spacing: -0.02em;
}
.t-h2 {                          /* collection section title */
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.27;            /* 38/30 */
}
.t-h3 {                          /* editorial / card hero */
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.33;            /* 32/24 */
}
.t-h4 {                          /* section title */
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;             /* 30/20 */
}
.t-card-title {                  /* product card brand */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55;            /* 28/18 */
}
.t-price-xl {                    /* product hero sale price */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;            /* 32/24 */
}
.t-price-bold {                  /* collection bold price */
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.55;            /* 28/18 */
}
.t-price {                       /* regular price */
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;            /* 28/18 */
}
.t-body { font-size: 14px; line-height: 1.43; }     /* 20/14 */
.t-md  { font-size: 16px; line-height: 1.5;  }      /* 24/16 */
.t-sm  { font-size: 12px; line-height: 1.5;  }      /* 18/12 */
.t-xs  { font-size: 10px; line-height: 1.8;  }      /* 18/10 */

.muted   { color: var(--gray-txt); }
.hint    { color: var(--hint); }
.hint-2  { color: var(--hint-2); }
.uppercase { text-transform: uppercase; }

/* display heading (header nav, tabs) — Nexa Medium 11 / .55 tracking */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.64;            /* 18/11 */
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

/* ----------------------------- Icons ----------------------------- */
.icon { width: 20px; height: 20px; flex: none; }
.icon-sm { width: 16px; height: 16px; flex: none; }
.header .icon-sm { width: 18px; height: 18px; }
.icon use, .icon-sm use { pointer-events: none; }

/* ============================================================
   Components
   ============================================================ */

/* ----------------------------- Header ----------------------------- */
.header {
  position: fixed; top: 0; left: 0; z-index: 100;
  width: 100%;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--black);
}
.header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.header__left { display: flex; align-items: center; gap: 38px; }
.header__right { display: flex; align-items: center; justify-content: flex-end; }
.header__center { display: flex; justify-content: center; }

.brand-mark-link,
.brand-word-link { display: inline-flex; align-items: center; color: inherit; flex-shrink: 0; }
.brand-mark {
  width: auto;
  height: 20px;
  max-width: 52px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-word {
  width: auto;
  height: 16px;
  max-width: 175px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

/* nav tabs (ghost buttons) */
.nav-tabs { display: flex; align-items: center; gap: 8px; flex-wrap: nowrap; flex-shrink: 0; }
.nav-tab {
  display: inline-flex; align-items: center; gap: 8px;
  height: 32px; padding: 0 12px;
  border-radius: var(--radius-sm);
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .18s var(--ease);
}
.nav-tab:hover { background: var(--gray-bg); }
.nav-tab.is-active { background: transparent !important; color: #999999 !important; }

.site-search { position: fixed; z-index: 100; top: var(--header-h); left: 0; width: 100%; padding: 14px 0 36px; background: var(--white); border-bottom: 1px solid var(--black); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1); }
.site-search__inner form { display: flex; align-items: center; gap: 16px; }
.site-search .icon { color: var(--black); width: 20px; height: 20px; flex: none; }
.site-search input { flex: 1; min-width: 0; height: 44px; border: 0; outline: 0; font-family: inherit; font-size: 15px; font-weight: 500; color: var(--black); background: transparent; }
.site-search input::placeholder { color: var(--gray-txt); }

.site-search .btn--primary {
  height: 42px;
  padding: 0 24px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  transition: all .15s ease;
}
.site-search .btn--primary:hover:not(:disabled) { background: #333333; }
.site-search .btn--primary:disabled { background: #000000; opacity: 0.25; color: #ffffff; cursor: not-allowed; border-color: transparent; }

.site-search__close {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  border: none;
  background: transparent;
  color: var(--black);
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex: none;
  transition: background .15s ease;
}
.site-search__close:hover { background: var(--gray-bg); }

/* Predictive Live Search Dropdown */
.site-search__dropdown {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid #000000;
  max-height: calc(80vh - 110px);
  overflow-y: auto;
  animation: searchDropdownFade .18s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes searchDropdownFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.search-suggest-section { margin-bottom: 20px; }
.search-suggest-section:last-child { margin-bottom: 0; }
.search-suggest-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-txt);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-suggest-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.search-suggest-chip {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .15s ease;
}
.search-suggest-chip:hover {
  background: var(--black);
  color: var(--white);
}
.search-suggest-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 12px;
}
.search-product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: all .15s ease;
}
.search-product-item:hover {
  border-color: var(--black);
  background: #fafafa;
}
.search-product-item__thumb {
  width: 64px;
  height: 42px;
  object-fit: contain;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid #f0f0f0;
  padding: 2px;
  flex: none;
}
.search-product-item__body { flex: 1; min-width: 0; }
.search-product-item__brand {
  font-family: var(--font-display, inherit);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-product-item__meta {
  font-size: 11.5px;
  color: var(--gray-txt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}
.search-product-item__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  flex: none;
  text-align: right;
}
.search-suggest-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-suggest-footer a {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity .15s;
}
.search-suggest-footer a:hover { opacity: 0.65; }
.search-suggest-empty {
  padding: 28px 0;
  text-align: center;
  color: var(--gray-txt);
  font-size: 14px;
}

.watchbar {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  z-index: 40;
}
.watchbar.is-visible {
  max-height: 90px;
  opacity: 1;
}
.watchbar[hidden] {
  display: none !important;
}
.watchbar__inner {
  min-height: 52px;
  padding: 8px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.watchbar__left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
}
.watchbar__label {
  flex: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
}
.watchbar__label b {
  margin-left: 6px;
  background: #282828;
  border: 1px solid #444;
  padding: 2px 7px;
  border-radius: 12px;
  font-size: 11px;
}
.watchbar__chips {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.watchbar__chips::-webkit-scrollbar { display: none; }
.watchbar__chip {
  padding: 4px 8px 4px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
}
.watchbar__chip a {
  color: #fff;
  text-decoration: none;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.watchbar__chip a:hover {
  text-decoration: underline;
}
.watchbar__remove {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}
.watchbar__remove:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.watchbar__all-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.watchbar__all-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* icon buttons */
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  color: var(--black); transition: background .18s var(--ease);
}
.icon-btn:hover { background: var(--gray-bg); }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 500;
  border-radius: var(--radius-sm);
  white-space: nowrap; transition: opacity .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  line-height: 1;
  text-align: center;
}
.btn:hover, .btn:focus, .btn:active { text-decoration: none; }
.btn--primary { background: var(--black); color: var(--white); height: 44px; padding-inline: 24px; font-size: 15px; border: 1px solid var(--black); }
.btn--primary:hover { background: #27272a; border-color: #27272a; }
.btn--light  { background: var(--white); color: var(--black); height: 52px; padding-inline: 32px; font-size: 14px; border-radius: var(--radius-pill); border: 1px solid #e4e4e7; }
.btn--light:hover { background: #18181b; color: #ffffff; border-color: #18181b; }
.btn--cart   { background: var(--black); color: var(--white); height: 44px; padding-inline: 24px; font-size: 14px; border-radius: 48px; border: 1px solid var(--black); }
.btn--cart:hover { background: #27272a; border-color: #27272a; }
.btn--ghost  { font-family: var(--font-display); font-weight: 500; font-size: 11px; letter-spacing: .55px; text-transform: uppercase; height: 32px; padding-inline: 12px; border-radius: var(--radius-sm); }
.btn--ghost:hover { background: var(--gray-bg); }
.btn--outline { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; padding-inline: 16px; border: 1px solid var(--black); border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: 500; font-size: 14px; background: var(--white); color: var(--black); transition: all .18s var(--ease); }
.btn--outline:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--block { width: 100%; }

/* ----------------------------- Chips / Badges ----------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding-inline: 14px;
  background: var(--black); color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 12px; line-height: 18px;
}
.chip--toggle { cursor: pointer; }
.chip--ghost { background: transparent; border: 1px solid var(--white); color: var(--white); }
.chip-add { width: 36px; height: 36px; padding: 0; justify-content: center; }

.badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 30px; padding-inline: 12px;
  border: 1px solid var(--black); border-radius: var(--radius-pill);
  font-size: 12px; line-height: 12px; background: var(--white); color: var(--black);
  white-space: nowrap;
}
.badge--light { border-color: var(--white); color: var(--white); background: transparent; }
.badge--solid { background: var(--black); color: var(--white); border-color: var(--black); }

/* status pill (e.g. "В пути") */
.status {
  display: inline-flex; align-items: center; justify-content: center;
  height: 30px; padding-inline: 16px;
  border: 1px solid var(--black); border-radius: var(--radius-pill);
  font-size: 12px; line-height: 12px;
}
.status--outline { border-color: var(--gray-ui); }

/* ----------------------------- Forms ----------------------------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-size: 12px; line-height: 18px; color: var(--gray-txt); }
.field__control {
  display: flex; align-items: center; gap: 10px;
  height: 48px; padding-inline: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--gray-ui); border-radius: var(--radius-sm);
  color: var(--white);
}
.field__control input { width: 100%; background: none; border: none; outline: none; font-size: 14px; line-height: 20px; }
.field__control input::placeholder { color: var(--gray-txt); }
.field__hint { font-family: var(--font-jakarta); font-size: 14px; line-height: 20px; color: var(--hint); }
.field__hint--light { color: var(--hint); }
.field__link { font-size: 12px; line-height: 18px; font-weight: 500; }

/* ----------------------------- Cards ----------------------------- */
.card { background: var(--white); border: 1px solid var(--gray-ui); border-radius: var(--radius-sm); }
.panel { background: var(--white); border: 1px solid var(--gray-ui); border-radius: var(--radius-sm); }

/* ----------------------------- Carousel arrows ----------------------------- */
.car-arrows { display: flex; align-items: center; gap: 8px; }
.car-arrows[hidden], [data-collections-arrows][hidden], [hidden] { display: none !important; }
.car-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius-pill);
  border: 1px solid var(--gray-ui); background: var(--white); color: var(--black);
  transition: background .18s var(--ease), border-color .18s var(--ease);
}
.car-arrow:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.car-arrow--next { transform: none; }
.car-arrow--next .icon { transform: rotate(180deg); }
body[data-page="home"] .car-arrow { border-color: var(--black); }

/* dots */
.dots { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 18px; height: 18px; border-radius: var(--radius-circle); display: inline-flex; align-items: center; justify-content: center; }
.dot::after { content: ""; width: 6px; height: 6px; border-radius: var(--radius-circle); background: var(--black); }
.dot--active { background: var(--black); }
.dot--active::after { background: var(--white); }

/* editorial card dots — filled 6px dot + outlined ring (per Figma) */
.ed-card__dots .dot { width: 18px; height: 18px; border: 1px solid var(--black); background: transparent; }
.ed-card__dots .dot--active { width: 6px; height: 6px; border: none; background: var(--black); }
.ed-card__dots .dot--active::after { display: none; }

/* ----------------------------- Misc ----------------------------- */
.divider { height: 1px; background: var(--gray-ui); border: 0; }
.pcard hr.divider, .pcard .divider, .pcard hr { margin: 22px 0 !important; height: 1px !important; border: 0 !important; background: var(--gray-ui) !important; width: 100% !important; display: block !important; }
.swatch { width: 18px; height: 18px; border-radius: var(--radius-circle); display: inline-block; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; font-size: 12px; }
.link-arrow:hover { opacity: .6; }

/* staggered fade-in for polish */
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.reveal { animation: fadeUp .5s var(--ease) both; }

/* ----------------------------- Skeletons & Loading States ----------------------------- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton-box {
  background: linear-gradient(90deg, #ececec 25%, #f7f7f7 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite ease-in-out;
  border-radius: 4px;
}
.skeleton-card {
  background: var(--white);
  border: 1px solid var(--gray-ui);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
}
.skeleton-card .sk-head { display: flex; flex-direction: column; gap: 6px; }
.skeleton-card .sk-title { height: 18px; width: 65%; }
.skeleton-card .sk-sub { height: 12px; width: 35%; }
.skeleton-card .sk-img { height: 150px; width: 100%; border-radius: 6px; }
.skeleton-card .sk-divider { height: 1px; width: 100%; background: var(--gray-ui); }
.skeleton-card .sk-row { height: 14px; width: 80%; }
.skeleton-card .sk-btn { height: 38px; width: 100%; margin-top: auto; }

/* ===================== LUX TOAST NOTIFICATIONS ===================== */
.lux-toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: 420px;
  width: calc(100% - 40px);
}

.lux-toast {
  position: relative;
  background: #0d0d0f;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 16px 18px 16px 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  pointer-events: auto;
  overflow: hidden;
  transform: translateY(16px) scale(0.95);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lux-toast.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lux-toast.is-leaving {
  transform: translateY(12px) scale(0.95);
  opacity: 0;
  pointer-events: none;
}

.lux-toast__icon-wrap {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.lux-toast--success .lux-toast__icon-wrap {
  background: rgba(34, 197, 94, 0.16);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.lux-toast--error .lux-toast__icon-wrap {
  background: rgba(239, 68, 68, 0.16);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.lux-toast--info .lux-toast__icon-wrap {
  background: rgba(59, 130, 246, 0.16);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.lux-toast--order .lux-toast__icon-wrap {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.lux-toast__body {
  flex: 1;
  min-width: 0;
}

.lux-toast__title {
  font-family: var(--font-display, Inter, sans-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin: 0;
}

.lux-toast__msg {
  font-family: var(--font-sans, Inter, sans-serif);
  font-size: 13px;
  line-height: 1.45;
  color: #a1a1aa;
  margin-top: 3px;
  word-break: break-word;
}

.lux-toast__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.lux-toast__btn {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  background: #ffffff;
  color: #000000;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.15s ease;
}

.lux-toast__btn:hover {
  opacity: 0.9;
}

.lux-toast__btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.lux-toast__btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lux-toast__close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: #71717a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  margin: -4px -4px 0 0;
  transition: color 0.15s ease;
}

.lux-toast__close:hover {
  color: #ffffff;
}

.lux-toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  width: 100%;
  transform-origin: left;
  animation: toastProgress linear forwards;
}

.lux-toast--success .lux-toast__progress { background: #4ade80; }
.lux-toast--error .lux-toast__progress { background: #f87171; }
.lux-toast--info .lux-toast__progress { background: #60a5fa; }

@keyframes toastProgress {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

/* Modal confirm dialog */
.lux-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-confirm-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lux-confirm-modal {
  background: #ffffff;
  border: 1px solid var(--gray-ui);
  border-radius: 12px;
  max-width: 440px;
  width: 100%;
  padding: 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  transform: translateY(14px) scale(0.97);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-confirm-overlay.is-open .lux-confirm-modal {
  transform: translateY(0) scale(1);
}

.lux-confirm-title {
  font-family: var(--font-display, Inter, sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}

.lux-confirm-msg {
  font-family: var(--font-sans, Inter, sans-serif);
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
  margin: 0 0 24px 0;
}

.lux-confirm-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 640px) {
  .lux-toast-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: 100%;
  }
}


