/* ============================================================
   Lev Designs — Design System & Component Styles
   ============================================================ */

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "Discovery FS";
  src: url("../assets/fonts/Discovery_Fs-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Discovery FS";
  src: url("../assets/fonts/Discovery_Fs-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Design Tokens ── */
:root {
  --lev-radius: 0.625rem;
  --lev-paper:         oklch(0.965 0.013 80);
  --lev-background:    oklch(0.965 0.013 80);
  --lev-foreground:    oklch(0.32  0.04  60);
  --lev-ink:           oklch(0.32  0.04  60);
  --lev-ink-soft:      oklch(0.5   0.04  60);
  --lev-brand:         oklch(0.62  0.19  35);
  --lev-brand-soft:    oklch(0.78  0.12  35);
  --lev-card:          oklch(0.99  0.005 80);
  --lev-secondary:     oklch(0.93  0.02  80);
  --lev-border:        oklch(0.85  0.02  70);
  --lev-primary-fg:    oklch(0.99  0     0);
  --lev-gold:          #d9b54a;

  --font-sans:    "Discovery FS", ui-sans-serif, system-ui, Arial, sans-serif;
  --font-script:  "Caveat", "Brush Script MT", cursive;
}

/* ── Base Reset ── */
.lev-wrap,
.lev-wrap * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.lev-wrap {
  direction: rtl;
  font-family: var(--font-sans);
  color: var(--lev-ink);
  background-color: var(--lev-background);
  font-size: 15px;
  line-height: 1.6;
  background-image:
    radial-gradient(rgba(120,80,40,0.04) 1px, transparent 1px),
    radial-gradient(rgba(120,80,40,0.03) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}
.lev-wrap a {
  color: inherit;
  text-decoration: none;
}
.lev-wrap button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.lev-wrap img {
  display: block;
  max-width: 100%;
}
.lev-wrap ul,
.lev-wrap ol {
  list-style: none;
}

/* ── Typography helpers ── */
.lev-font-display {
  font-family: var(--font-sans);
  font-weight: 700;
}
.lev-font-script {
  font-family: var(--font-script);
  font-weight: 600;
}
.lev-text-brand  { color: var(--lev-brand); }
.lev-text-ink    { color: var(--lev-ink); }
.lev-text-soft   { color: var(--lev-ink-soft); }
.lev-bg-paper    { background-color: var(--lev-paper); }
.lev-bg-card     { background-color: var(--lev-card); }
.lev-bg-secondary{ background-color: var(--lev-secondary); }

/* ============================================================
   HEADER
   ============================================================ */
.lev-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(0,0,0,.07);
  background-color: var(--lev-paper);
}
.lev-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.lev-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 24px;
  border-left: 1px solid rgba(0,0,0,.07); /* RTL: border-s = border-left */
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--lev-brand);
}
.lev-header__logo span {
  color: var(--lev-ink-soft);
}
.lev-header__nav {
  display: none;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .lev-header__nav { display: flex; }
}
.lev-header__nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}
.lev-header__nav a:hover {
  color: var(--lev-brand);
}
.lev-header__actions {
  display: flex;
  align-items: center;
}
.lev-header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 64px;
  color: var(--lev-ink);
  transition: color .2s;
  position: relative;
}
.lev-header__icon-btn:hover { color: var(--lev-brand); }
.lev-header__cart-btn {
  width: 64px;
  border-right: 1px solid rgba(0,0,0,.07); /* RTL: border-e = border-right */
  transition: background .2s;
}
.lev-header__cart-btn:hover { background: var(--lev-secondary); }
.lev-header__badge {
  position: absolute;
  right: 4px;
  top: 12px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--lev-brand);
  color: var(--lev-primary-fg);
  font-size: 10px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lev-header__icon-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  fill: none;
  stroke: currentColor;
}

/* ============================================================
   HERO
   ============================================================ */
.lev-hero {
  background-color: var(--lev-paper);
  overflow: hidden;
}
.lev-hero__inner {
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .lev-hero__inner {
    padding: 96px 48px;
    display: grid;
    grid-template-columns: minmax(0,1.08fr) minmax(0,0.92fr);
    align-items: end;
    gap: 48px;
  }
}
/* image side */
.lev-hero__image-col {
  order: 1;
  position: relative;
}
@media (min-width: 1024px) {
  .lev-hero__image-col { order: 1; padding-right: 2vw; }
}
.lev-hero__image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--lev-secondary);
}
.lev-hero__since {
  display: none;
  position: absolute;
  left: -20px;
  top: 48px;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--lev-ink-soft);
  writing-mode: vertical-rl;
}
@media (min-width: 1024px) { .lev-hero__since { display: block; } }
.lev-hero__image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 20px 60px -20px rgba(80,40,10,0.25);
}
@media (min-width: 640px) { .lev-hero__image-wrap img { height: 520px; } }
@media (min-width: 1024px) { .lev-hero__image-wrap img { height: 700px; } }
.lev-hero__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.lev-hero__dot {
  height: 2px;
  width: 24px;
  background: rgba(80,40,10,.4);
}
.lev-hero__dot--active { background: var(--lev-ink); }

.lev-hero__nav-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  font-size: 14px;
}
.lev-hero__nav-btn {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--lev-border);
  color: var(--lev-ink-soft);
  transition: border-color .2s, color .2s;
}
.lev-hero__nav-btn:hover {
  border-color: var(--lev-brand);
  color: var(--lev-brand);
}
.lev-hero__nav-btn svg {
  width: 16px; height: 16px; stroke-width: 1.25; fill: none; stroke: currentColor;
}
.lev-hero__nav-info {
  text-align: right;
}
.lev-hero__nav-price { color: var(--lev-brand); margin-top: 4px; }

/* text side */
.lev-hero__text-col {
  order: 2;
  direction: ltr;
}
@media (min-width: 1024px) {
  .lev-hero__text-col { order: 2; padding-bottom: 40px; padding-left: 2vw; text-align: left; }
}
.lev-hero__title {
  font-family: var(--font-script);
  color: var(--lev-brand);
  font-weight: 600;
  font-size: clamp(96px, 14vw, 220px);
  line-height: .88;
  text-shadow: 2px 3px 0 rgba(180,70,30,.18);
}
.lev-hero__subtitle {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.1);
  font-size: 15px;
  line-height: 1.75;
  color: var(--lev-ink);
  text-align: right;
  direction: rtl;
  max-width: 18rem;
}
@media (min-width: 1024px) { .lev-hero__subtitle { margin-top: 48px; } }

/* ============================================================
   ABOUT
   ============================================================ */
.lev-about {
  background-color: var(--lev-paper);
  padding: 96px 24px;
  text-align: center;
}
.lev-about p {
  margin: 0 auto;
  max-width: 56rem;
  font-size: 20px;
  line-height: 2;
  color: var(--lev-ink-soft);
}
.lev-about p strong {
  color: var(--lev-ink);
  font-weight: inherit;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.lev-categories {
  background-color: var(--lev-paper);
  padding-bottom: 96px;
}
.lev-categories__title {
  text-align: center;
  font-family: var(--font-script);
  color: var(--lev-brand-soft);
  opacity: .6;
  font-size: clamp(40px,5vw,80px);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 40px;
  pointer-events: none;
  user-select: none;
}
.lev-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 24px;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 640px)  { .lev-categories__grid { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 768px)  { .lev-categories__grid { grid-template-columns: repeat(5,1fr); } }
.lev-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--lev-ink);
  transition: color .2s;
}
.lev-category-item:hover { color: var(--lev-brand); }
.lev-category-item__icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(0,0,0,.12);
  transition: border-color .2s;
}
.lev-category-item:hover .lev-category-item__icon { border-color: var(--lev-brand); }
.lev-category-item__icon svg {
  width: 28px; height: 28px; stroke: var(--lev-brand); stroke-width: 1.5; fill: none;
  transition: transform .2s;
}
.lev-category-item:hover .lev-category-item__icon svg { transform: scale(1.1); }
.lev-category-item span {
  font-size: 12px;
  line-height: 1.3;
  white-space: pre-line;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.lev-products {
  background-color: var(--lev-paper);
  padding-bottom: 80px;
  padding-left: 24px;
  padding-right: 24px;
}
.lev-products__header {
  display: grid;
  gap: 16px;
  padding-bottom: 40px;
}
@media (min-width: 640px) {
  .lev-products__header {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}
.lev-products__title {
  font-family: var(--font-script);
  color: var(--lev-brand-soft);
  opacity: .5;
  font-size: clamp(56px,7vw,120px);
  line-height: 1;
  font-weight: 500;
  order: 2;
  user-select: none;
  pointer-events: none;
}
@media (min-width: 640px) { .lev-products__title { order: 1; } }
.lev-products__label {
  text-align: right;
  font-size: 15px;
  line-height: 1.75;
  order: 1;
}
@media (min-width: 640px) { .lev-products__label { order: 2; } }
.lev-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 32px;
}
@media (min-width: 640px) { .lev-products__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .lev-products__grid { grid-template-columns: repeat(3,1fr); } }

/* Product card */
.lev-product-card { }
.lev-product-card__image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--lev-secondary);
}
.lev-product-card__image-wrap a { display: block; }
.lev-product-card__image-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .7s;
}
.lev-product-card:hover .lev-product-card__image-wrap img {
  transform: scale(1.03);
}
.lev-product-card__wish {
  position: absolute;
  right: 12px; /* RTL start */
  top: 12px;
  width: 36px; height: 36px;
  border-radius: 9999px;
  background: rgba(250,248,245,.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lev-ink-soft);
  transition: color .2s;
  border: none;
  cursor: pointer;
}
.lev-product-card__wish:hover,
.lev-product-card__wish.is-liked { color: var(--lev-brand); }
.lev-product-card__wish svg {
  width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.5; fill: none;
}
.lev-product-card__wish.is-liked svg { fill: currentColor; }

.lev-product-card__footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lev-product-card__info { text-align: right; flex: 1; }
.lev-product-card__name {
  font-size: 14px;
  color: var(--lev-ink);
  transition: color .2s;
  display: block;
}
.lev-product-card__name:hover { color: var(--lev-brand); }
.lev-product-card__price {
  margin-top: 4px;
  font-size: 13px;
  color: var(--lev-brand);
  display: block;
}
.lev-product-card__add {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 9999px;
  border: 1px solid var(--lev-border);
  color: var(--lev-ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}
.lev-product-card__add:hover {
  border-color: var(--lev-brand);
  color: var(--lev-brand);
}
.lev-product-card__add svg {
  width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.25; fill: none;
}

/* Load more */
.lev-products__more {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lev-products__more-label { font-size: 13px; color: var(--lev-brand); }
.lev-products__more-btn {
  width: 40px; height: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(160,70,30,.5);
  color: var(--lev-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.lev-products__more-btn:hover {
  background: var(--lev-brand);
  color: var(--lev-primary-fg);
}
.lev-products__more-btn span {
  display: block;
  width: 1px;
  height: 12px;
  background: currentColor;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.lev-testimonials {
  background-color: var(--lev-paper);
  padding: 96px 24px;
}
.lev-testimonials__inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.lev-testimonials__script-title {
  font-family: var(--font-script);
  color: var(--lev-brand-soft);
  opacity: .6;
  font-size: clamp(48px,6vw,96px);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 24px;
  pointer-events: none;
  user-select: none;
}
.lev-testimonials__quote {
  font-size: 18px;
  line-height: 2;
  color: var(--lev-ink);
  max-width: 40rem;
  margin: 0 auto;
}
.lev-testimonials__author {
  margin-top: 24px;
  font-size: 14px;
  color: var(--lev-ink-soft);
}
.lev-testimonials__stars {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--lev-gold);
}
.lev-testimonials__stars svg {
  width: 16px; height: 16px; fill: currentColor; stroke: none;
}
.lev-testimonials__controls {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lev-testimonials__arrow {
  width: 48px; height: 48px;
  border-radius: 9999px;
  border: 1px solid var(--lev-border);
  color: var(--lev-ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}
.lev-testimonials__arrow:hover {
  border-color: var(--lev-brand);
  color: var(--lev-brand);
}
.lev-testimonials__arrow svg {
  width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.25; fill: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lev-footer {
  background-color: var(--lev-card);
}
.lev-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 64px 24px;
}
@media (min-width: 1024px) {
  .lev-footer__inner { grid-template-columns: 1fr 1.4fr 1fr; }
}

/* Right col */
.lev-footer__brand {
  text-align: right;
}
.lev-footer__logo {
  font-family: var(--font-script);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--lev-brand);
}
.lev-footer__logo span { color: var(--lev-ink-soft); }
.lev-footer__policy-links {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--lev-ink-soft);
}
.lev-footer__policy-links a:hover { color: var(--lev-brand); }
.lev-footer__contact-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}
.lev-footer__contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.lev-footer__contact-item svg {
  width: 14px; height: 14px; stroke: var(--lev-brand); stroke-width: 1.5; fill: none; flex-shrink: 0;
}

/* Center col — contact form */
.lev-footer__form {
  text-align: right;
}
.lev-footer__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.lev-footer__field { display: block; }
.lev-footer__field-label {
  display: block;
  font-size: 13px;
  color: var(--lev-ink-soft);
  margin-bottom: 8px;
}
.lev-footer__field input,
.lev-footer__field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--lev-border);
  background: transparent;
  padding: 8px 0;
  font-size: 14px;
  color: var(--lev-ink);
  font-family: inherit;
  text-align: right;
  outline: none;
  transition: border-color .2s;
  resize: none;
}
.lev-footer__field input:focus,
.lev-footer__field textarea:focus { border-color: var(--lev-brand); }
.lev-footer__form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  margin-top: 24px;
}
.lev-footer__checkbox-label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--lev-ink-soft);
  cursor: pointer;
}
.lev-footer__checkbox-label input[type="checkbox"] {
  width: 14px; height: 14px;
  margin-top: 2px;
  accent-color: var(--lev-brand);
  flex-shrink: 0;
}
.lev-footer__submit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--lev-brand);
  transition: color .2s;
  white-space: nowrap;
}
.lev-footer__submit:hover .lev-footer__submit-circle {
  background: var(--lev-brand);
  color: var(--lev-primary-fg);
}
.lev-footer__submit-circle {
  width: 40px; height: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(160,70,30,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.lev-footer__submit-circle svg {
  width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.25; fill: none;
}

/* Left col — nav */
.lev-footer__nav-col { text-align: right; }
.lev-footer__nav-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}
.lev-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--lev-ink-soft);
}
.lev-footer__nav-list a:hover { color: var(--lev-brand); }

/* Bottom bar */
.lev-footer__bar {
  border-top: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.03);
}
.lev-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 12px;
  color: var(--lev-ink-soft);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.lev-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lev-cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.lev-cart-drawer {
  position: fixed;
  top: 0; left: 0; /* RTL: slides in from left */
  height: 100%;
  width: min(400px, 95vw);
  background: var(--lev-paper);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.lev-cart-drawer.is-open { transform: translateX(0); }

.lev-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--lev-border);
}
.lev-cart-drawer__title { font-size: 16px; font-weight: 500; }
.lev-cart-drawer__close {
  width: 36px; height: 36px;
  border-radius: 9999px;
  border: 1px solid var(--lev-border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s;
}
.lev-cart-drawer__close:hover { border-color: var(--lev-brand); color: var(--lev-brand); }
.lev-cart-drawer__close svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.5; fill: none; }

.lev-cart-drawer__items { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.lev-cart-drawer__empty { color: var(--lev-ink-soft); font-size: 14px; text-align: center; padding-top: 40px; }

.lev-cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 12px;
}
.lev-cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 4px; }
.lev-cart-item__name { font-size: 13px; }
.lev-cart-item__price { font-size: 12px; color: var(--lev-brand); margin-top: 4px; }
.lev-cart-item__qty {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
}
.lev-cart-item__qty button { width: 24px; height: 24px; border-radius: 9999px; border: 1px solid var(--lev-border); display:flex;align-items:center;justify-content:center; font-size: 16px; line-height: 1; }
.lev-cart-item__qty button:hover { border-color: var(--lev-brand); color: var(--lev-brand); }

.lev-cart-drawer__footer { padding: 24px; border-top: 1px solid var(--lev-border); }
.lev-cart-drawer__total { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 16px; }
.lev-cart-drawer__total span:last-child { color: var(--lev-brand); }
.lev-cart-drawer__checkout {
  display: block; width: 100%;
  padding: 12px;
  background: var(--lev-brand);
  color: var(--lev-primary-fg);
  text-align: center;
  font-size: 14px;
  border-radius: var(--lev-radius);
  transition: opacity .2s;
}
.lev-cart-drawer__checkout:hover { opacity: .9; }

/* ============================================================
   NOTICE / SUCCESS
   ============================================================ */
.lev-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--lev-brand);
  color: var(--lev-primary-fg);
  padding: 12px 20px;
  border-radius: var(--lev-radius);
  font-size: 14px;
  z-index: 2000;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.lev-notice.is-visible { opacity: 1; transform: translateY(0); }
