/* Noor Atelier — main theme styles */

:root {
  --na-bg: #0b0a09;
  --na-bg-2: #12100e;
  --na-bg-3: #1a1714;
  --na-cream: #f3ead8;
  --na-cream-dim: #cfc3ad;
  --na-gold: #c9a227;
  --na-gold-2: #e8d5a3;
  --na-gold-dim: #8a7328;
  --na-emerald: #1e3d36;
  --na-maroon: #6e2430;
  --na-line: rgba(201, 162, 39, 0.28);
  --na-text: #f3ead8;
  --na-muted: #b7ad9a;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --na-radius: 14px;
  --na-header: 78px;
  --na-announce: 38px;
  --na-max: 1180px;
  --na-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--na-header) + var(--na-announce));
}

body.noor-atelier {
  margin: 0;
  background: var(--na-bg);
  color: var(--na-text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--na-gold-2);
  text-decoration: none;
  transition: color 0.25s var(--na-ease);
}

a:hover {
  color: var(--na-gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }

button, input, textarea, select {
  font-family: inherit;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  clip: auto;
  z-index: 10000;
  background: var(--na-gold);
  color: #111;
  padding: 8px 14px;
}

.na-container {
  width: min(100% - 32px, var(--na-max));
  margin-inline: auto;
}

.na-kicker {
  color: var(--na-gold);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.na-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.na-section--alt {
  background: var(--na-bg-2);
}

.na-section__head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.na-section__head h2 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  color: var(--na-cream);
}

.na-section__head p {
  color: var(--na-muted);
  font-size: 1.05rem;
}

/* Buttons */
.na-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.25s var(--na-ease), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.na-btn--gold {
  background: linear-gradient(180deg, #e0c36a, var(--na-gold));
  color: #1a1408;
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.22);
}

.na-btn--gold:hover {
  transform: translateY(-2px);
  color: #1a1408;
  box-shadow: 0 14px 36px rgba(201, 162, 39, 0.32);
}

.na-btn--ghost {
  background: transparent;
  border-color: var(--na-line);
  color: var(--na-cream);
}

.na-btn--ghost:hover {
  border-color: var(--na-gold);
  color: var(--na-gold-2);
}

.na-btn .na-icon {
  width: 18px;
  height: 18px;
}

.na-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
}

.na-icon svg {
  width: 100%;
  height: 100%;
}

/* Announce + header */
.na-announce {
  background: linear-gradient(90deg, var(--na-emerald), #16302b 40%, var(--na-maroon));
  color: var(--na-cream);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.55rem 1rem;
  position: sticky;
  top: 0;
  z-index: 40;
}

.na-announce p { margin: 0; }

.na-header {
  position: sticky;
  top: var(--na-announce);
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(11, 10, 9, 0.72);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.na-header.is-scrolled {
  background: rgba(11, 10, 9, 0.94);
  border-bottom-color: var(--na-line);
}

.na-header__inner {
  width: min(100% - 24px, 1280px);
  margin-inline: auto;
  min-height: var(--na-header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.na-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--na-cream);
}

.na-logo:hover { color: var(--na-gold-2); }

.na-logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--na-line);
}

.na-logo__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.na-logo__tag {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--na-muted);
  margin-top: 0.25rem;
}

.na-logo .custom-logo {
  max-height: 48px;
  width: auto;
}

.na-nav__list {
  display: flex;
  justify-content: center;
  gap: 0.15rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.na-nav a {
  color: var(--na-cream-dim);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
}

.na-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--na-gold);
  transition: width 0.3s var(--na-ease);
}

.na-nav a:hover,
.na-nav .current-menu-item a {
  color: var(--na-gold-2);
}

.na-nav a:hover::after,
.na-nav .current-menu-item a::after {
  width: 100%;
}

.na-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: flex-end;
}

.na-header__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--na-cream);
  border: 1px solid var(--na-line);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.na-header__wa:hover {
  border-color: var(--na-gold);
  color: var(--na-gold-2);
}

.na-header__cart {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--na-cream);
  border: 1px solid var(--na-line);
  border-radius: 50%;
}

.na-header__cart:hover {
  color: var(--na-gold);
  border-color: var(--na-gold);
}

.na-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--na-gold);
  color: #1a1408;
  font-size: 0.65rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

.na-cart-count.is-empty { display: none; }

.na-nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--na-cream);
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}

.na-nav-backdrop {
  display: none;
}

/* Hero */
.na-hero {
  position: relative;
  min-height: calc(100svh - var(--na-announce) - 12px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.na-hero__media,
.na-hero__veil {
  position: absolute;
  inset: 0;
}

.na-hero__media {
  background: var(--na-hero-image) center/cover no-repeat;
  transform: scale(1.06);
  animation: na-kenburns 18s var(--na-ease) both;
}

.na-hero__veil {
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.25) 0%, rgba(11, 10, 9, 0.55) 48%, rgba(11, 10, 9, 0.96) 100%),
    linear-gradient(90deg, rgba(11, 10, 9, 0.55), transparent 55%);
}

.na-hero__content {
  position: relative;
  padding: clamp(3rem, 10vw, 7rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  max-width: 860px;
  margin-left: max(16px, calc((100% - var(--na-max)) / 2));
  margin-right: auto;
}

.na-hero__kicker {
  animation: na-rise 0.9s 0.1s both;
}

.na-hero__title {
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  margin: 0 0 0.4em;
  animation: na-rise 1s 0.2s both;
}

.na-hero__title span,
.na-hero__title em {
  display: block;
}

.na-hero__title em {
  font-style: italic;
  color: var(--na-gold-2);
}

.na-hero__text {
  max-width: 520px;
  color: var(--na-cream-dim);
  font-size: 1.05rem;
  animation: na-rise 1s 0.35s both;
}

.na-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 2.2rem;
  animation: na-rise 1s 0.5s both;
}

.na-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  max-width: 640px;
  animation: na-rise 1s 0.65s both;
}

.na-hero__meta div {
  border-top: 1px solid var(--na-line);
  padding-top: 0.85rem;
}

.na-hero__meta dt {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--na-gold);
}

.na-hero__meta dd {
  margin: 0.2rem 0 0;
  color: var(--na-cream);
}

@keyframes na-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes na-kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* Product grid + cards */
.na-grid {
  display: grid;
  gap: 1.25rem;
}

.na-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.na-card {
  background: var(--na-bg-3);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: var(--na-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--na-ease), border-color 0.35s, box-shadow 0.35s;
}

.na-card:hover {
  transform: translateY(-6px);
  border-color: var(--na-gold);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.na-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #100e0c;
}

.na-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--na-ease);
}

.na-card:hover .na-card__media img {
  transform: scale(1.06);
}

.na-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--na-maroon);
  color: var(--na-cream);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  z-index: 1;
}

.na-card__body {
  padding: 1.1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.na-card__cat {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--na-gold);
  margin: 0;
}

.na-card__cat a { color: inherit; }

.na-card__title {
  font-size: 1.35rem;
  margin: 0;
}

.na-card__title a { color: var(--na-cream); }

.na-card__title a:hover { color: var(--na-gold-2); }

.na-card__desc {
  color: var(--na-muted);
  font-size: 0.9rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.na-search-list {
  list-style: none;
  padding: 0;
}

.na-search-list li {
  border-bottom: 1px solid var(--na-line);
  padding: 1rem 0;
}

.na-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--na-gold-2);
  margin-top: 0.2rem;
}

.na-price del {
  color: var(--na-muted);
  font-size: 0.9em;
  margin-right: 0.4rem;
}

.na-price ins {
  text-decoration: none;
}

.na-card__cart {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.85rem;
}

.na-qty,
.qty {
  width: 100%;
  min-height: 46px;
  background: #0d0c0b;
  border: 1px solid var(--na-line);
  color: var(--na-cream);
  border-radius: 999px;
  text-align: center;
  font-size: 0.95rem;
}

.na-card__cart .na-btn {
  width: 100%;
  min-height: 46px;
  padding-inline: 0.6rem;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

/* About */
.na-about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.na-about__media {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--na-line);
}

.na-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.na-about__copy p {
  color: var(--na-muted);
}

.na-about__copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.na-about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 1.2rem 0 0;
  margin: 1.2rem 0 0;
  border-top: 1px solid var(--na-line);
}

.na-about__facts strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--na-gold);
}

/* Why */
.na-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.na-why__item {
  background: var(--na-bg-3);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: var(--na-radius);
  padding: 1.5rem 1.3rem 1.6rem;
}

.na-why__item .na-icon {
  width: 32px;
  height: 32px;
  color: var(--na-gold);
  margin-bottom: 1rem;
}

.na-why__item h3 {
  font-size: 1.35rem;
}

.na-why__item p {
  color: var(--na-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Categories */
.na-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.na-cat {
  position: relative;
  min-height: 280px;
  border-radius: var(--na-radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--na-cream);
  border: 1px solid transparent;
}

.na-cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--na-ease);
}

.na-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8, 7, 6, 0.88));
}

.na-cat span {
  position: relative;
  z-index: 1;
  padding: 1.3rem;
}

.na-cat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
}

.na-cat em {
  font-style: normal;
  color: var(--na-cream-dim);
  font-size: 0.88rem;
}

.na-cat:hover {
  color: var(--na-cream);
  border-color: var(--na-gold);
}

.na-cat:hover img {
  transform: scale(1.08);
}

/* Offer */
.na-offer {
  position: relative;
  isolation: isolate;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--na-offer-image) center/cover no-repeat;
}

.na-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 10, 9, 0.88) 0%, rgba(11, 10, 9, 0.55) 55%, rgba(30, 61, 54, 0.35) 100%);
  z-index: -1;
}

.na-offer__inner {
  max-width: 620px;
}

.na-offer h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.na-offer p {
  color: var(--na-cream-dim);
}

.na-offer__code {
  display: inline-block;
  border: 1px dashed var(--na-gold);
  color: var(--na-gold-2) !important;
  letter-spacing: 0.28em;
  padding: 0.55rem 1rem;
  margin-bottom: 1.2rem;
}

/* Reviews */
.na-reviews,
.na-quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.na-review,
.na-quote {
  background: var(--na-bg-3);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: var(--na-radius);
  padding: 1.5rem;
  margin: 0;
}

.na-stars {
  color: #4a4030;
  letter-spacing: 0.15em;
}

.na-stars .is-on { color: var(--na-gold); }

.na-review p,
.na-quote p {
  color: var(--na-cream-dim);
}

.na-review footer,
.na-quote cite {
  display: flex;
  flex-direction: column;
  font-style: normal;
  font-size: 0.9rem;
}

.na-review footer span,
.na-quote cite span {
  color: var(--na-muted);
  font-size: 0.8rem;
}

.na-quotes {
  grid-template-columns: repeat(3, 1fr);
}

/* FAQ */
.na-faq-wrap .na-section__head {
  margin-inline: auto;
  text-align: center;
}

.na-faq {
  max-width: 760px;
  margin: 0 auto;
}

.na-faq__item {
  border-bottom: 1px solid var(--na-line);
}

.na-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.na-faq__item summary::-webkit-details-marker { display: none; }

.na-faq__item .na-icon {
  transition: transform 0.25s;
  color: var(--na-gold);
}

.na-faq__item[open] .na-icon {
  transform: rotate(180deg);
}

.na-faq__item p {
  color: var(--na-muted);
  padding-bottom: 1.1rem;
}

/* Contact */
.na-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.na-contact__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.na-contact__list li {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.na-contact__list .na-icon {
  color: var(--na-gold);
  margin-top: 0.15rem;
}

.na-contact__list strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--na-gold);
}

.na-contact__list a,
.na-contact__list span {
  color: var(--na-cream);
}

.na-contact__form {
  background: var(--na-bg-3);
  border: 1px solid rgba(201, 162, 39, 0.14);
  border-radius: 18px;
  padding: 1.6rem;
}

.na-form__row {
  margin-bottom: 0.95rem;
}

.na-form__row label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--na-gold);
  margin-bottom: 0.4rem;
}

.na-form__row input,
.na-form__row textarea,
.na-form__row select,
.select2-container .select2-selection--single {
  width: 100%;
  background: #0d0c0b;
  border: 1px solid var(--na-line);
  color: var(--na-cream);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  min-height: 48px;
}

.na-form__row textarea {
  min-height: 120px;
  resize: vertical;
}

.na-form__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.na-form-status {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.na-form-status.is-ok {
  background: rgba(30, 61, 54, 0.5);
  border: 1px solid var(--na-emerald);
}

.na-form-status.is-err {
  background: rgba(110, 36, 48, 0.35);
  border: 1px solid var(--na-maroon);
}

/* Footer */
.na-footer {
  background: #080706;
  border-top: 1px solid var(--na-line);
  padding-top: 3.5rem;
}

.na-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.na-footer h3 {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--na-gold);
}

.na-footer p,
.na-footer a,
.na-footer li {
  color: var(--na-muted);
}

.na-footer a:hover { color: var(--na-gold-2); }

.na-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.na-footer__links li { margin-bottom: 0.4rem; }

.na-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.na-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--na-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--na-cream);
}

.na-social a:hover {
  border-color: var(--na-gold);
  color: var(--na-gold);
}

.na-footer__base {
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  padding: 1.1rem 0;
  font-size: 0.82rem;
}

.na-footer__base-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.na-footer__base p { margin: 0; }

.na-float-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #128c4a;
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1.05rem;
  box-shadow: 0 12px 30px rgba(18, 140, 74, 0.35);
}

.na-float-wa:hover { color: #fff; transform: translateY(-2px); }

.na-float-wa .na-icon { width: 20px; height: 20px; }

/* Inner pages */
.na-page-main {
  padding: clamp(3rem, 7vw, 5.5rem) 0 4rem;
}

.na-prose-wrap {
  max-width: 980px;
}

.na-page-head,
.na-empty {
  text-align: center;
  padding: 2rem 0 1rem;
}

.na-empty h1,
.na-page-head h1,
.na-prose h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.na-prose {
  color: var(--na-cream-dim);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: na-rise 0.9s var(--na-ease) forwards;
  animation-play-state: paused;
}

.reveal.is-in {
  animation-play-state: running;
}

/* Toast */
.na-toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%) translateY(12px);
  background: var(--na-cream);
  color: #1a1408;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  transition: 0.3s var(--na-ease);
}

.na-toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Mobile nav */
@media (max-width: 980px) {
  .na-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .na-nav-toggle { display: grid; place-items: center; order: -1; }

  .na-nav {
    position: fixed;
    inset: calc(var(--na-announce) + var(--na-header)) auto 0 0;
    width: min(86vw, 360px);
    background: #100e0c;
    border-right: 1px solid var(--na-line);
    padding: 1.4rem;
    transform: translateX(-110%);
    transition: transform 0.35s var(--na-ease);
    z-index: 60;
  }

  .na-nav.is-open { transform: none; }

  .na-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .na-nav a { font-size: 1rem; }

  .na-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    z-index: 55;
    transition: opacity 0.3s;
  }

  body.na-menu-open .na-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .na-header__wa span { display: none; }

  .na-grid--4,
  .na-why,
  .na-cats,
  .na-about__grid,
  .na-contact,
  .na-footer__grid,
  .na-quotes,
  .na-hero__meta {
    grid-template-columns: 1fr 1fr;
  }

  .na-about__facts { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .na-announce { font-size: 0.68rem; letter-spacing: 0.02em; }
  .na-logo__tag { display: none; }
  .na-grid--4,
  .na-why,
  .na-cats,
  .na-reviews,
  .na-quotes,
  .na-contact,
  .na-footer__grid,
  .na-form__split,
  .na-hero__meta,
  .na-about__grid {
    grid-template-columns: 1fr;
  }

  .na-hero__cta .na-btn { width: 100%; }
  .na-float-wa span { display: none; }
  .na-float-wa { width: 56px; height: 56px; justify-content: center; padding: 0; }
  .na-card__cart { grid-template-columns: 64px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
