/* Aurra — aligned to Elementor kit (askproject.net/aurra) */
:root {
  /* Elementor kit-3 */
  --color-primary: #141414;
  --color-secondary: #ebe5dc;
  --color-page: #f6f5f1;
  --color-text: #7a7a7a;
  --color-accent: #a7231a;
  --color-hero-overlay: #363636;
  /* Semantic aliases */
  --bg-dark: #141414;
  --bg-elevated: #1c1c1c;
  --bg-cream: #ebe5dc;
  --bg-white: #f6f5f1;
  --gold: #a7231a;
  --gold-light: #ffffff;
  --gold-dim: #a7231a;
  --text: #7a7a7a;
  --text-muted: #7a7a7a;
  --text-on-dark: #f6f5f1;
  --text-muted-dark: rgba(246, 245, 241, 0.53);
  --border: rgba(20, 20, 20, 0.08);
  --radius: 5px;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max-w: 1140px;
  --header-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--text);
  background: var(--color-page);
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

#main,
main#main {
  max-width: 100%;
  overflow-x: clip;
}

/* Topbar */
.topbar {
  width: 100%;
  max-width: 100%;
  background: var(--color-primary);
  color: rgba(246, 245, 241, 0.75);
  font-size: 0.85rem;
  overflow-x: clip;
  box-sizing: border-box;
}

.topbar__inner {
  width: 100%;
  max-width: min(var(--max-w), 100%);
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.topbar__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  margin-left: auto;
}

.topbar__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.topbar__sep {
  opacity: 0.45;
  user-select: none;
}

.topbar__link {
  color: rgba(246, 245, 241, 0.85);
  margin-left: 1rem;
}

.topbar__link:hover {
  color: #fff;
}

.topbar__right .topbar__link:first-child {
  margin-left: 0;
}

/* Home uses the same topbar/header as inner pages */

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--color-primary);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  background: var(--color-page);
  border-bottom: 1px solid var(--border);
  overflow-x: clip;
  box-sizing: border-box;
}

.site-header__inner {
  max-width: min(var(--max-w), 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 0;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  flex-shrink: 1;
  min-width: 0;
}

.logo__img {
  display: block;
  height: auto;
  max-height: 150px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
}

.logo:hover {
  opacity: 0.9;
}

.site-footer .logo__img {
  filter: invert(1);
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}

/* Root menu lives inside .nav-primary__sheet (not direct child of nav — selectors must use sheet) */
.nav-primary__sheet > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 0.35rem;
  min-width: 0;
  max-width: 100%;
}

.nav-primary__sheet > ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-primary a {
  display: block;
  padding: 0.5rem 1rem 0.5rem 0;
  color: rgba(20, 20, 20, 0.67);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
  color: var(--color-primary);
}

/* Home uses default nav colors */

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

.nav-item--dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item--dropdown > a::after {
  content: "";
  border: 4px solid transparent;
  border-top-color: rgba(20, 20, 20, 0.45);
  margin-top: 4px;
}

.nav-item--dropdown:hover > a::after {
  border-top-color: var(--color-primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-page);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  display: block;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s var(--ease);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  z-index: 1200;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  display: block;
  width: 100%;
  white-space: nowrap;
  opacity: 1;
}

.dropdown-menu a {
  color: rgba(20, 20, 20, 0.8);
}

.dropdown-menu a:hover {
  color: var(--color-primary);
}

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

.dropdown-menu li a {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 1;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.header-actions__toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-width: 0;
}

.trango-header-search {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  min-width: 0;
  box-sizing: border-box;
}

.trango-header-search input[type="search"] {
  width: min(160px, 22vw);
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.8rem;
  background: var(--bg-white);
  color: var(--color-primary);
}

.trango-header-search__submit {
  padding: 0.45rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(20, 20, 20, 0.2);
  border-radius: var(--radius);
  background: var(--bg-white);
  color: var(--color-primary);
  cursor: pointer;
  font-family: inherit;
}

.trango-header-search__submit:hover {
  border-color: var(--color-primary);
}

/* Header toolbar icons (hidden on desktop; mobile shows in @media max-width 900px) */
.header-actions__icon {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.header-actions__icon svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.btn--text {
  background: transparent;
  border: none;
  padding: 0.5rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: none;
  letter-spacing: 0.02em;
}

.btn--text:hover {
  color: var(--color-accent);
}

/* Slightly smaller header CTAs on inner pages / shop (cart uses .trango-header-cart rules below) */
body:not(.home) .site-header .header-actions .btn:not(.btn--text):not(.trango-header-cart) {
  padding: 0.5rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  transition:
    transform 0.28s var(--ease),
    opacity 0.2s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(20, 20, 20, 0.2);
  color: var(--color-primary);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

@media (min-width: 901px) {
  body.home .header-actions .btn--primary {
    padding: 14px 25px;
  }

  .nav-primary__scrim {
    display: none !important;
  }

  .nav-primary__sheet {
    display: contents;
  }

  .nav-primary__drawer-head {
    display: none !important;
  }

  .nav-primary__sheet > ul {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
  }

  .nav-primary__sheet > ul > li > a {
    white-space: nowrap;
  }
}

/* Cart in header — chip style, dark label + accent count (Woo fragments) */
.site-header .header-actions .trango-header-cart.btn--outline {
  padding: 0.5rem 0.95rem;
  min-height: 2.5rem;
  border: 1px solid rgba(20, 20, 20, 0.2);
  border-radius: var(--radius);
  background: var(--bg-white);
  color: var(--color-primary);
  box-shadow: 0 1px 2px rgba(20, 20, 20, 0.06);
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.site-header .header-actions .trango-header-cart.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-primary);
  background: #fff;
  box-shadow: 0 2px 8px rgba(20, 20, 20, 0.08);
}

.trango-header-cart__label {
  display: inline-block;
  line-height: 1.2;
}

.trango-header-cart__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  background: var(--color-accent);
  border-radius: 999px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}

.btn--dark {
  background: var(--color-primary);
  color: #fff;
}

.btn--dark:hover {
  background: var(--bg-elevated);
}

.btn--hero-fill {
  background: var(--color-page);
  color: var(--color-primary);
  padding: 15px 30px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
}

.btn--hero-fill:hover {
  background: var(--color-accent);
  color: var(--color-page);
}

.btn--hero-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(246, 245, 241, 0.75);
  padding: 14px 29px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
}

.btn--hero-outline:hover {
  background: var(--color-accent);
  color: var(--color-page);
  border-color: var(--color-accent);
}

/* Typography helpers */
.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.44rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--color-primary);
}

.section--dark .section-title {
  color: var(--text-on-dark);
}

.section-title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__title em {
  font-style: italic;
  color: var(--color-page);
}

.text-muted {
  color: var(--text-muted);
}

.text-on-dark .text-muted {
  color: var(--text-muted-dark);
}

/* Hero — Elementor home: min-height 803px, bottom-aligned, multiply overlay */
.hero {
  position: relative;
  min-height: 825px;
  display: flex;
  align-items: flex-end;
  background: var(--color-primary);
  color: var(--text-on-dark);
  overflow: hidden;
  padding-bottom: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__bg img,
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-hero-overlay);
  opacity: 0.4;
  mix-blend-mode: multiply;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.hero__eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-page);
  margin: 0 0 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 14vw, 9.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 auto 1.25rem;
  max-width: 86%;
  color: var(--color-page);
}

.hero__desc {
  font-size: 1rem;
  max-width: 42ch;
  margin: 0 auto 2rem;
  color: rgba(246, 245, 241, 0.85);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero {
    min-height: min(92dvh, 640px);
    padding-bottom: 1.25rem;
    align-items: flex-end;
  }

  .hero__content {
    padding: 2rem 1.25rem 1.25rem;
  }

  .hero__title {
    font-size: clamp(2rem, 10vw, 3.5rem);
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .hero__desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .section {
    padding: 3.25rem 1.25rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: min(88dvh, 520px);
  }

  .hero__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.section--cream {
  background: var(--bg-cream);
}

.section--secondary {
  background: var(--color-secondary);
}

.section--products {
  background: var(--color-page);
  color: var(--color-primary);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}

.stat__suffix {
  font-size: 1.5rem;
  vertical-align: super;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.section--dark .stat__label {
  color: var(--text-muted-dark);
}

/* Two column */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split__media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.split__media {
  border-radius: 12px;
  overflow: hidden;
}

.split__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  aspect-ratio: 5 / 5;
}

/* Products grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.section--dark .product-card {
  background: var(--bg-elevated);
  box-shadow: none;
  border: 1px solid var(--border);
}

.product-card__tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin: 1.25rem 1.25rem 0.35rem;
}

.product-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 0 1.25rem 1.5rem;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--color-primary);
}

.section--dark .product-card__title {
  color: var(--text-on-dark);
}

.section--dark .product-card__tag {
  color: var(--text-on-dark);
}

/* Features row */
.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-box {
  padding: 1.75rem;
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  text-align: center;
}

.feature-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.feature-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-box__icon {
  width: 80px;
  height: auto;
  margin: 0 auto 1rem;
}

.section-narrow {
  max-width: 920px;
  margin: 0 auto;
}

.testimonial-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.gallery-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-row-4 img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
}

/* Banner CTA */
.banner-cta {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-on-dark);
  overflow: hidden;
}

.banner-cta__bg {
  position: absolute;
  inset: 0;
}

.banner-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 10, 0.75);
}

.banner-cta__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  max-width: 640px;
}

.banner-cta__content .section-title {
  font-style: italic;
}

/* Promo strip */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.promo-split__visual {
  position: relative;
}

.promo-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-split__content {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-split__content .section-label {
  color: rgba(246, 245, 241, 0.9);
}

/* Quote / perfumes showcase */
.showcase-quote {
  text-align: center;
  padding: 4rem 1.5rem;
}

.showcase-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--color-accent);
}

.showcase-quote .section-title {
  margin-top: 2rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--bg-cream);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.section--dark .testimonial-card {
  background: var(--bg-elevated);
  border-color: var(--border);
}

.testimonial-card p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.section--dark .testimonial-card p {
  color: var(--text-muted-dark);
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--text);
}

.section--dark .testimonial-card cite {
  color: var(--text-on-dark);
}

.testimonial-card span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-top: 0.25rem;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-card__meta a {
  font-weight: 600;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.blog-card__title a {
  color: var(--text);
}

.blog-card__title a:hover {
  color: var(--gold-dim);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.section--dark .faq-item {
  border-color: var(--border);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  color: inherit;
}

.faq-item button::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.faq-item.is-open button::after {
  content: "−";
}

.faq-panel {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section--dark .faq-panel {
  color: var(--text-muted-dark);
}

.faq-item.is-open .faq-panel {
  display: block;
}

/* Newsletter / offer */
.offer-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.newsletter {
  background: var(--bg-elevated);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--text-on-dark);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-dark);
  color: var(--text-on-dark);
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: var(--text-muted-dark);
}

/* Special offer + newsletter (image background, Elementor-style) */
.offer-strip {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem;
  color: var(--text-on-dark);
}

.offer-strip__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.offer-strip__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-strip__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(20, 20, 20, 0.92) 0%,
    rgba(20, 20, 20, 0.78) 45%,
    rgba(20, 20, 20, 0.55) 100%
  );
}

.offer-strip__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}

.offer-strip .section-label {
  color: rgba(246, 245, 241, 0.75);
}

.offer-strip .section-title {
  color: var(--text-on-dark);
}

/* Single product */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-detail__media {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.product-detail__media img {
  width: 100%;
  height: auto;
  display: block;
}

.product-detail__price {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 1rem 0 1.25rem;
  color: var(--color-primary);
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.product-detail__meta {
  margin-top: 1.5rem;
}

.product-detail__meta strong {
  color: var(--color-primary);
}

/* Cart & checkout */
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.cart-main {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.cart-table thead th {
  text-align: left;
  font-weight: 600;
  color: rgba(20, 20, 20, 0.7);
  background: rgba(20, 20, 20, 0.03);
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
}

.cart-table tbody td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.cart-table tbody tr:last-child td {
  border-bottom: none;
}

.cart-summary {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.cart-summary h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--color-primary);
}

.cart-summary dl {
  margin: 0 0 1.25rem;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.cart-summary__row dt {
  color: var(--text-muted);
}

.cart-summary__row dd {
  margin: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.cart-summary__row--total {
  border-top: 1px solid var(--border);
  margin-top: 0.35rem;
  padding-top: 0.85rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.checkout-summary {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.checkout-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}

.checkout-form h2,
.checkout-summary h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  color: var(--color-primary);
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 500;
  color: rgba(20, 20, 20, 0.8);
}

.field input,
.field textarea {
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 20, 20, 0.14);
  font: inherit;
  background: #fff;
}

.checkout-summary__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.95rem;
}

.checkout-summary__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  color: var(--color-primary);
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: rgba(246, 245, 241, 0.65);
  padding: 4rem 1.5rem 2rem;
  border-top: none;
}

.site-footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2.5rem;
}

.site-footer h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-on-dark);
  margin: 0 0 1.25rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.65rem;
}

.site-footer__tagline {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.55;
  color: rgba(246, 245, 241, 0.72);
}

.site-footer__contact li {
  line-height: 1.55;
  font-size: 0.88rem;
}

.site-footer__contact strong {
  color: rgba(246, 245, 241, 0.92);
  font-weight: 600;
}

.site-footer__social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__bottom a {
  color: rgba(246, 245, 241, 0.85);
}

.site-footer__bottom a:hover {
  color: #fff;
}

.site-footer a {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__bottom {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  text-align: center;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
  color: var(--color-primary);
}

.page-hero p {
  margin: 0;
  color: var(--color-text);
  max-width: 560px;
  margin-inline: auto;
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  font-family: inherit;
}

.contact-card {
  background: var(--bg-cream);
  padding: 2rem;
  border-radius: 8px;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-family: var(--font-display);
  margin: 0 0 0.25rem;
}

.team-member p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.price-card--featured {
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(167, 35, 26, 0.22);
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--gold-dim);
  margin: 1rem 0;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.price-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
}

/* Blog article */
.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.article-content .meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.article-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.article-content .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.article-content p {
  margin: 0 0 1.25rem;
}

.article-content img.featured {
  width: 100%;
  border-radius: 8px;
  margin: 2rem 0;
}

/* 404 */
.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-page h1 {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  margin: 0;
  color: var(--gold);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: 2rem;
}

/* Mobile */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .gallery-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .promo-split,
  .offer-block,
  .product-detail,
  .cart-layout,
  .checkout-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary,
  .checkout-summary {
    position: static;
  }

  .promo-split__visual {
    min-height: 280px;
  }

  .product-grid,
  .blog-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-header__inner {
    height: auto;
    min-height: var(--header-h);
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: 0.65rem;
    row-gap: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .site-header__inner > .logo {
    flex: 0 0 auto;
    align-self: center;
    max-width: min(46%, calc(100% - 11.5rem));
  }

  /* Toolbar row first, full-width search second (DOM keeps search before toolbar for desktop) */
  .header-actions {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .header-actions__toolbar {
    order: 1;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem 0.45rem;
    min-height: 2.75rem;
  }

  .trango-header-search {
    order: 2;
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }

  .topbar .topbar__cart,
  .topbar a.trango-topbar-cart {
    display: none !important;
  }

  /* Mobile nav: dim scrim + sliding sheet (desktop uses display:contents on sheet) */
  .site-header__inner > .nav-primary {
    flex: 0 0 0;
    min-width: 0;
    max-width: 0;
    margin: 0;
    border: none;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100% !important;
    max-width: none !important;
    height: 100dvh;
    max-height: 100dvh;
    z-index: 1001;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    transform: none;
    transition: visibility 0.3s;
    visibility: hidden;
    pointer-events: none;
  }

  .site-header__inner > .nav-primary.is-open {
    visibility: visible;
    pointer-events: auto;
  }

  .nav-primary__scrim {
    position: fixed;
    inset: 0;
    z-index: 0;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    background: rgba(20, 20, 20, 0.5);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s var(--ease),
      visibility 0.3s;
  }

  .nav-primary.is-open .nav-primary__scrim {
    opacity: 1;
    visibility: visible;
  }

  .nav-primary__sheet {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: min(21.5rem, 91vw);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-page);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    overflow-x: clip;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: max(0.75rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px))
      max(1.25rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  }

  .nav-primary.is-open .nav-primary__sheet {
    transform: translateX(0);
  }

  .nav-primary__drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }

  .nav-primary__brand {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 4.8vw, 1.42rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-primary);
    line-height: 1.2;
    text-decoration: none;
  }

  .nav-primary__brand:hover {
    color: var(--color-accent);
  }

  .nav-primary__close {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(20, 20, 20, 0.12);
    border-radius: var(--radius);
    background: var(--bg-white);
    cursor: pointer;
    transition:
      border-color 0.2s,
      background 0.2s;
  }

  .nav-primary__close:hover {
    border-color: rgba(20, 20, 20, 0.28);
    background: #fff;
  }

  .nav-primary__close-line {
    position: absolute;
    width: 17px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
  }

  .nav-primary__close-line:first-child {
    transform: rotate(45deg);
  }

  .nav-primary__close-line:last-child {
    transform: rotate(-45deg);
  }

  body.nav-drawer-open {
    overflow: hidden;
  }

  body.nav-drawer-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-drawer-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  body.nav-drawer-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .logo__img {
    max-width: min(118px, 42vw);
  }

  .site-header .header-actions .btn--primary {
    padding: 0.5rem 0.72rem;
    font-size: 0.7rem;
    min-height: 2.75rem;
  }

  .site-header .header-actions .btn--text {
    padding: 0.5rem 0.4rem;
    font-size: 0.72rem;
    white-space: nowrap;
    min-height: 2.75rem;
    align-items: center;
  }

  .trango-header-search input[type="search"] {
    flex: 1 1 0%;
    min-width: 0;
    width: auto;
    max-width: none;
  }

  .trango-header-search__submit {
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Log in / Store / Cart / Search: icon-only (labels clipped; aria-label on controls) */
  .site-header .header-actions__toolbar .header-actions__icon,
  .site-header .trango-header-search__submit .header-actions__icon {
    display: inline-flex;
  }

  .site-header .header-actions__toolbar .header-actions__label,
  .site-header .trango-header-search__submit .header-actions__label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .site-header .header-actions__toolbar .btn:not(.nav-toggle),
  .site-header .trango-header-search__submit {
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.45rem;
    justify-content: center;
    gap: 0.3rem;
  }

  .site-header .header-actions .btn--primary.trango-header-store {
    font-size: 0;
    line-height: 0;
  }

  .site-header .header-actions .btn--primary.trango-header-store .header-actions__icon {
    font-size: initial;
    line-height: 0;
  }

  .site-header .trango-header-search__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .price-card--featured {
    transform: none;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.35rem;
  }

  body.home .nav-primary__sheet > ul > li > a {
    color: var(--color-primary);
  }

  body.home .nav-item--dropdown > a::after {
    border-top-color: rgba(20, 20, 20, 0.4);
  }

  body.home .nav-toggle span {
    background: var(--color-primary);
  }

  .nav-primary__sheet > ul {
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    gap: 0;
    margin: 0;
    padding: 0.35rem 0 0;
  }

  .nav-primary__sheet > ul > li {
    border-bottom: 1px solid var(--border);
  }

  .nav-primary__sheet > ul > li:last-child {
    border-bottom: none;
  }

  .nav-primary__sheet > ul > li > a {
    padding: 1rem 0.65rem 1rem 0.85rem;
    font-size: 1.0625rem;
    font-weight: 600;
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    line-height: 1.3;
    color: var(--color-primary);
    border-radius: 0;
  }

  .nav-primary__sheet > ul > li > a:hover {
    color: var(--color-accent);
    background: rgba(20, 20, 20, 0.04);
  }

  .nav-primary__sheet > ul > li.current-menu-item > a,
  .nav-primary__sheet > ul > li.current-menu-ancestor > a,
  .nav-primary__sheet > ul > li > a[aria-current="page"] {
    border-left: 3px solid var(--color-accent);
    padding-left: calc(0.85rem - 3px);
    background: rgba(167, 35, 26, 0.08);
    color: var(--color-primary);
  }

  .nav-item--dropdown > a {
    width: 100%;
  }

  .nav-item--dropdown > a::after {
    margin-left: auto;
    margin-top: 0;
    flex-shrink: 0;
    transition: transform 0.22s var(--ease);
  }

  .nav-item--dropdown.is-open > a::after {
    transform: rotate(180deg);
  }

  .nav-item--dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    padding: 0.25rem 0 0.5rem;
    margin: 0;
    display: none;
    background: rgba(20, 20, 20, 0.02);
  }

  .nav-item--dropdown.is-open .dropdown-menu {
    display: block;
  }

  .nav-item--dropdown .dropdown-menu li a {
    padding: 0.8rem 0.85rem 0.8rem 1.35rem;
    font-size: 0.9375rem;
    font-weight: 500;
    min-height: 2.85rem;
    border-left: none;
    background: transparent;
  }

  .nav-item--dropdown .dropdown-menu li a:hover {
    background: rgba(20, 20, 20, 0.04);
  }

  /* Cart chip: icon + badge (label is screen-reader only via .header-actions__label rules above) */
  .header-actions .trango-header-cart.btn--outline {
    display: inline-flex;
    padding: 0.45rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
  }

  .header-actions .trango-header-cart__badge {
    min-width: 1.25rem;
    height: 1.25rem;
    font-size: 0.62rem;
    padding: 0 0.3rem;
  }
}

@media (max-width: 520px) {
  /* Show welcome + promo on mobile (was hidden); stack so text stays readable */
  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .topbar__left {
    display: flex;
    width: 100%;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .topbar__right {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .gallery-row-4 {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .features-row {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Mobile: inner pages, Sales, blog, safe-area (stacked with other 900px rules)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .page-hero {
    padding: 2.5rem max(1rem, env(safe-area-inset-left, 0px)) 2rem
      max(1rem, env(safe-area-inset-right, 0px));
  }

  .page-hero h1 {
    font-size: clamp(1.65rem, 6.5vw, 2.35rem);
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
  }

  .page-hero .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
  }

  .trango-sales-page__intro,
  .trango-bundle-offer-page__intro {
    padding-left: 0;
    padding-right: 0;
  }

  .trango-sales-page__intro img,
  .trango-bundle-offer-page__intro img,
  .article-content img {
    max-width: 100%;
    height: auto;
  }

  .trango-sales-page__products {
    padding-top: 1.25rem;
  }

  .article-content {
    padding: 0 max(0.25rem, env(safe-area-inset-left, 0px)) 2rem
      max(0.25rem, env(safe-area-inset-right, 0px));
  }

  .article-content h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .error-page {
    padding: 2rem 1.25rem;
  }

  .error-page h1 {
    font-size: clamp(4rem, 22vw, 7rem);
  }

  .site-footer {
    padding-left: max(0, env(safe-area-inset-left, 0px));
    padding-right: max(0, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 520px) {
  .page-hero {
    padding: 2rem 1rem 1.5rem;
  }

  .page-hero h1 {
    font-size: clamp(1.45rem, 7vw, 1.95rem);
  }
}
