:root {
  --bg: #fff;
  --surface: #ffffff;
  --text: #191919;
  --muted: #747474;
  --line: rgba(25, 25, 25, 0.08);
  --hero-overlay: linear-gradient(90deg, rgba(18, 5, 3, 0.94) 0%, rgba(44, 16, 7, 0.8) 42%, rgba(90, 42, 20, 0.2) 100%);
  --hero-overlay-light: linear-gradient(90deg, rgba(240, 229, 211, 0.05) 0%, rgba(27, 16, 6, 0.26) 40%, rgba(30, 16, 8, 0.08) 100%);
  --brown-900: #1c0a06;
  --brown-700: #5f2f15;
  --gold-500: #b5884b;
  --green-700: #314d11;
  --shadow-soft: 0 28px 60px rgba(41, 26, 10, 0.08);
  --shadow-card: 0 18px 32px rgba(18, 18, 18, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --shell: min(1240px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  .scroll-reveal {
    opacity: 0;
    transform: translateY(1.35rem);
    transition:
      opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
      transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .scroll-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .scroll-reveal.scroll-reveal--stagger {
    transition-delay: calc(var(--reveal-i, 0) * 0.14s), calc(var(--reveal-i, 0) * 0.14s);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background: #FAFAFA;
  color: var(--text);
}

body.home-page {
  background:
    radial-gradient(circle at top, rgba(180, 147, 104, 0.08), transparent 28%),
    var(--bg);
}

body.account-page-body {
  background: #fafafa;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  background: #0d0503;
  overflow: clip;
}

.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  padding-top: 26px;
}

.hero>.nav {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--shell);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
  letter-spacing: 0.04em;
  margin-right: auto;
}

.brand-main {
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  font-weight: 500;
}

.brand-sub {
  align-self: center;
  margin-top: 0.2rem;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex: 1;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem;
  background: rgba(31, 10, 5, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  overflow: visible;
}

.nav-link {
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
  background: #FFFFFF1A;
}

.nav-link.is-active,
.nav-link:hover {
  color: #171717;
  background: #f4f2ee;
}

.nav-item {
  position: absolute;
  position: relative;
}

.nav-item.has-dropdown {
  position: relative;
}

.nav-link-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-caret {
  display: inline-flex;
  align-items: center;
}

.nav-caret svg {
  width: 0.85rem;
  height: 0.85rem;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 160px;
  background: rgba(31, 10, 5, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  padding: 0.8rem 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #f4f2ee;
}

.nav-icons {
  display: flex;
  gap: 0.85rem;
  margin-left: auto;
  position: absolute;
  right: 0;
}

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.badge {
  position: absolute;
  top: -2px;
  right: 0;
  display: none;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  color: #171717;
  font-size: 0.7rem;
  font-weight: 600;
}

.badge::after {
  content: attr(data-count);
}

.badge:not([data-count="0"]) {
  display: grid;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero-slider {
  position: relative;
  min-height: 100svh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-slide::before {
  background:
    radial-gradient(circle at 72% 25%, rgba(210, 122, 61, 0.38), transparent 28%),
    linear-gradient(90deg, #180704 0%, #341107 45%, #5a2a14 100%);
}

.hero-slide[data-accent="light"]::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 236, 196, 0.45), transparent 24%),
    linear-gradient(120deg, #f2ebde 0%, #d9c39e 46%, #cbaa6a 100%);
}

.hero-slide.hero-slide-sofia::before {
  background:
    linear-gradient(90deg, rgba(27, 15, 7, 0.9) 0%, rgba(39, 22, 10, 0.72) 20%, rgba(58, 33, 14, 0.38) 34%, rgba(78, 48, 20, 0.12) 48%, rgba(98, 74, 37, 0) 62%),
    url('../images/hero-slider-2.png') center center / cover no-repeat;
}

.hero-slide::after {
  background: linear-gradient(180deg, rgba(6, 2, 1, 0.08) 0%, rgba(6, 2, 1, 0.16) 100%);
}

.hero-slide.is-active {
  opacity: 1 !important;
  pointer-events: auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(320px, 1fr);
  gap: 2rem;
  min-height: 100svh;
  align-items: center;
  padding-top: 60px;
}

.hero-grid-right {
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 480px);
}

.hero-grid-single {
  grid-template-columns: minmax(320px, 560px);
}

.hero-slide-product::before {
  background:
    linear-gradient(90deg, rgba(45, 4, 4, 0.98) 0%, rgba(45, 4, 4, 0.96) 36%, rgba(55, 11, 5, 0.82) 54%, rgba(46, 15, 7, 0.24) 72%, rgba(35, 12, 8, 0.06) 100%),
    url('../images/hero-main-clean.jpg') right center / cover no-repeat;
}

.hero-slide-sofia .hero-copy {
  max-width: 33rem;
}

.hero-slide-sofia .hero-copy-light {
  justify-self: start;
  text-align: left;
  color: #fff4e6;
}

.hero-slide-sofia .eyebrow {
  color: rgba(255, 243, 226, 0.82);
}

.hero-slide-sofia .hero-text {
  max-width: 27rem;
  color: rgba(255, 244, 231, 0.9);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.hero-slide-sofia .scent-tags span,
.hero-slide-sofia .arrow-chip {
  border-color: rgba(255, 244, 231, 0.24);
  background: rgba(24, 12, 6, 0.34);
  color: #fff4e6;
  backdrop-filter: blur(8px);
}

.hero-slide-sofia .hero-copy h1 {
  color: #fff7ef;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
}

.hero-copy {
  display: grid;
  gap: 1.4rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: end;
}

.hero-visual-left {
  justify-content: flex-start;
}

.hero-visual img {
  width: min(100%, 620px);
  max-height: 76svh;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.22));
}

.eyebrow {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  position: relative;
  z-index: 1;
}

.eyebrow.dark {
  color: rgba(25, 25, 25, 0.56);
}

.hero-copy h1,
.stats-copy h2 {
  margin: 0;
  font-size: clamp(4rem, 7.5vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 300;
}

.hero-copy-light {
  justify-self: end;
  max-width: 430px;
  text-align: right;
  color: #241409;
}

.hero-text {
  max-width: 30rem;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
  position: relative;
  z-index: 1;
}

.hero-copy-light .hero-text {
  margin-left: auto;
  color: white;
}

.scent-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.scent-tags span,
.arrow-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.arrow-chip {
  width: 46px;
  padding: 0;
}

.hero-copy-light .scent-tags span,
.hero-copy-light .arrow-chip {
  border-color: rgba(36, 20, 9, 0.18);
  background: white;
  color: #241409;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 52px;
  display: flex;
  justify-content: flex-end;
  gap: 0.9rem;
}

.slider-control {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow-card);
}

.slider-control.muted,
.slider-control.slider-prev {
  background: #f0efed;
  color: #6b6b6b;
}

.feature-section,
.products,
.showcase,
.stats,
.collections {
  padding-block: 72px;
}

#products,
#top-sellers {
  background-color: #fafafa;
}

#products .product-card,
#top-sellers .product-card {
  box-shadow: none;
  border-radius: 12px;
}

#products .section-heading h2,
#top-sellers .section-heading h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.feature-section {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.feature-intro {
  display: grid;
  gap: 1.5rem;
}

.mini-gallery {
  display: flex;
  gap: 0.8rem;
}

.mini-card {
  width: 112px;
  padding: 0.22rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #d8d8d8, #efefef);
  box-shadow: var(--shadow-card);
}

.mini-card.warm {
  background: linear-gradient(180deg, #d3a072, #412117);
}

.mini-card img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 14px;
}

.feature-intro h2,
.feature-intro p,
.summary-index,
.summary-copy p,
.product-meta p,
.collection-body p,
.footer-grid p {
  margin: 0;
}

.feature-intro h2 {
  font-size: 2.4rem;
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.05em;
}

.feature-intro p {
  max-width: 220px;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.6;
}

.summary-copy .summary-text {
  font-family: 'Urbanist';
  font-weight: 200;
  font-size: 22px;
}

.display-title,
.section-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 300;
}

.display-title span,
.section-heading span {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
}

.display-title {
  text-align: right;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.feature-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-top: 0;
  width: 100%;
  grid-column: 2;
}

.feature-nav .slider-control {
  width: 42px;
  height: 42px;
  box-shadow: none;
  background: #050505;
  color: #fff;
}

.feature-nav .slider-control:disabled {
  background: #f0efed;
  color: #8d8d8d;
  cursor: not-allowed;
}

.feature-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 24px;
  box-shadow:
    0 2px 8px rgba(18, 18, 18, 0.06),
    0 12px 28px rgba(18, 18, 18, 0.1),
    0 28px 56px rgba(41, 26, 10, 0.12);
}

.feature-card.active {
  outline: 6px solid #fff;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.feature-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.45);
  color: #fff;
  backdrop-filter: blur(10px);
}

.feature-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
  grid-column: 1 / -1;
}

.summary-index {
  color: var(--green-700);
  font-size: 2rem;
  font-weight: 600;
}

.feature-summary h3 {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 300;
}

.summary-copy p {
  font-size: 1.2rem;
  line-height: 1.6;
  width: 320px;
}

.summary-copy p a {
  font-size: 12px ;
}

.inline-action {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 2px 6px;
  border-radius: 999px;
  background: #6f8b28;
  color: #fff;
}

.feature-summary span {
  width: 22px;
  height: 22px;
  border-radius: 100%;
  background: #ffffff7a;
  padding-top: 4px;
}

.leaf-button {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #203c0d;
  color: #fff;
  box-shadow: 0 18px 28px rgba(54, 91, 20, 0.2);
}

.leaf-button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.section-heading {
  margin-bottom: 2.4rem;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.collection-card,
.testimonial {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(25, 25, 25, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1rem;
}

.product-name {
  margin: 1rem 0 0;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 300;
  width: 80%;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  border-radius: 0;
}

.product-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1.2rem 0;
  font-size: 1rem;
}

.product-meta p {
  width: 70%;
}

.product-meta strong {
  font-size: 1.4rem;
  font-weight: 400;
}

.product-meta .product-price-row {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
}

.product-meta .product-price-current {
  font-weight: inherit;
}

.product-meta .product-price-was {
  color: silver;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-color: silver;
  text-decoration-thickness: 1px;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-skip: none;
}

.discount-badge {
  display: inline;
  font-size: 0.6em;
  font-weight: 400;
  color: #111;
  white-space: nowrap;
}

.product-actions {
  display: flex;
  gap: 0.9rem;
}

.button-light,
.button-dark {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex: 1;
  background: #f5f5f4;
  color: #1f1f1f;
}

.button-dark {
  flex: 1;
  background: #050505;
  color: #fff;
}

.showcase-wrapper {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #d7c3a3;
}

.showcase-slider {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
}

.showcase-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.showcase-slide img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform: translate3d(0, var(--showcase-parallax-y, 0px), 0) scale(1.12);
}

.showcase-bottom-band {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  min-height: 104px;
  padding: 0;
}

.showcase-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 104px;
  padding: 0.7rem 1.35rem 1.35rem;
  box-sizing: border-box;
  width: auto;
  max-width: min(420px, 100%);
  min-width: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(235, 225, 210, 0.08) 100%);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.showcase-side-left {
  grid-column: 1;
  justify-self: start;
  align-items: flex-start;
}

.showcase-side-right {
  grid-column: 2;
  justify-self: end;
  align-items: flex-end;
  text-align: right;
  /* Room for italic overshoot + safe inset so glyphs stay inside overflow:hidden wrapper */
  padding-right: clamp(1.5rem, 3.5vw, 2.25rem);
}

.showcase-side-right h2 {
  font-size: clamp(3.65rem, 6.35vw, 5rem);
  max-width: 100%;
  box-sizing: border-box;
  padding-inline-end: 0.2em;
}

.showcase-side h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5.15vw, 3.75rem);
  line-height: 0.94;
  font-weight: 300;
  letter-spacing: -0.055em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.42),
    0 2px 18px rgba(0, 0, 0, 0.28);
}

.showcase-side-left h2 {
  max-width: 100%;
  box-sizing: border-box;
}

.showcase-side h2 span {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  color: inherit;
}

.showcase-center-controls {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
}

.showcase-nav {
  position: static;
  display: flex;
  gap: 0.7rem;
  z-index: 3;
}

.showcase-nav .slider-control {
  width: 42px;
  height: 42px;
  box-shadow: none;
}

.showcase-nav .showcase-prev {
  background: #f0efed;
  color: #8d8d8d;
}

.showcase-nav .showcase-next {
  background: #050505;
  color: #fff;
}

.stats {
  padding-top: 77px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: start;
  background-image:
    linear-gradient(rgba(156, 136, 109, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 136, 109, 0.12) 1px, transparent 1px);
  background-size: 125px 125px;
  background-position: center;
  font-size: 0.9rem !important;
}

.stats-copy {
  background: #fff;
  padding: 2rem 2.5rem 2.5rem;
  border-radius: var(--radius-lg);
}

.stats-copy h2 {
  color: #1d1d1d;
  font-size: calc(3.5rem - 12px) !important;
  margin-top: 15px;
}

.stats-copy h2 span {
  color: #c5c5c5;
}

.stats-grid {
  display: flex;
  gap: 3.5rem;
  margin-top: 3rem;
}

.stats-grid strong {
  display: block;
  font-size: clamp(3rem, 5vw, 5rem) !important;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 300;
}

.stats-grid p {
  margin: 0.75rem 0 0;
  color: #b0b0b0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.testimonial {
  padding: 3rem 2.8rem;
  min-height: 100%;
}

.quote-mark {
  line-height: 0;
}

.quote-mark img {
  display: block;
  height: calc(3rem - 12px);
  width: auto;
}

.testimonial>p {
  margin: 1rem 0 1.7rem;
  font-size: clamp(1rem, 3vw, 1.4rem);
  line-height: 1.32;
  letter-spacing: -0.04em;
  font-family: 'Urbanist';
font-weight: 300;
font-style: Light;
leading-trim: NONE;
line-height: 120%;
letter-spacing: -3%;
vertical-align: middle;

}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  font-size: 1.4rem;
  font-weight: 400;
}

.testimonial-author span {
  margin-top: 0.2rem;
  color: var(--muted);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.collection-card {
  overflow: hidden;
}

.collection-card img {
  width: 100%;
  aspect-ratio: 1.02;
  object-fit: cover;
}

.collection-body {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  padding: 2rem 1.6rem 2.4rem;
  text-align: center;
}

.collection-body h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.05em;
}

.collection-body p {
  max-width: 15rem;
  color: var(--muted);
  line-height: 1.65;
}

.collection-body span {
  color: #5d5d5d;
}

.footer {
  margin-top: 2rem;
  padding-block: 3.5rem 2.4rem;
  background: #030303;
  color: #fff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.social-links img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.1fr 1.6fr;
  gap: 2rem;
  margin-top: 4rem;
}

.footer-grid h3 {
  margin: 0 0 1.2rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.05em;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.6;
}

.footer-grid a+a {
  margin-top: 0.55rem;
}

.footer-info p {
  max-width: 30rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100vw - 40px, 1240px);
  }

  .feature-section,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-summary {
    grid-template-columns: 1fr;
  }

  .feature-cards,
  .product-grid,
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-slide img {
    height: 520px;
  }

  .showcase-side h2 {
    font-size: clamp(1.95rem, 4.2vw, 2.45rem);
  }

  .showcase-side-right h2 {
    font-size: clamp(2.35rem, 4.8vw, 3.05rem);
  }

}

@media (max-width: 780px) {
  :root {
    --shell: min(100vw - 28px, 1240px);
  }

  .nav {
    padding-top: 18px;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .nav-toggle {
    display: block;
    z-index: 7;
  }

  .nav-menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(8, 4, 2, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(12px);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-links,
  .nav-icons {
    width: 100%;
    justify-content: space-between;
  }

  .nav-icons {
    position: static;
    right: auto;
    margin-left: 0;
    margin-top: 0.35rem;
    justify-content: space-between;
    gap: 0.65rem;
  }

  .icon-button {
    width: 44px;
    height: 44px;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    background: transparent;
    border: none;
    padding: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link-dropdown {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    left: auto;
    min-width: 0;
    margin-top: 0.35rem;
    display: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-item.has-dropdown.is-open .nav-dropdown {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 94svh;
    padding-top: 150px;
  }

  .hero-copy,
  .hero-copy-light {
    order: 1;
    max-width: 100%;
    text-align: left;
    justify-self: start;
  }

  .hero-visual,
  .hero-visual-left {
    order: 2;
    justify-content: center;
  }

  .hero-visual img {
    width: min(100%, 460px);
    max-height: none;
  }

  .hero-copy-light .hero-text {
    margin-left: 0;
  }

  .hero-controls {
    left: 0;
    right: auto;
    justify-content: flex-start;
    bottom: 28px;
  }

  .feature-cards,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .feature-section {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    overflow-x: clip;
  }

  .feature-main,
  .feature-summary {
    min-width: 0;
  }

  .mini-gallery {
    flex-wrap: wrap;
  }

  .feature-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .summary-copy {
    width: 100vw;
    max-width: 100vw;
    margin-left: -14px;
    padding-inline: max(14px, calc((100vw - var(--shell)) / 2));
    box-sizing: border-box;
  }

  .summary-copy p {
    width: 100%;
    max-width: 100%;
  }

  .product-card {
    padding: 0.7rem;
  }

  .product-name {
    margin-top: 0.7rem;
    width: 100%;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }

  .product-meta {
    padding: 0.75rem 0;
    gap: 0.5rem;
  }

  .product-meta p {
    width: 100%;
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .showcase-slide img {
    height: 400px;
  }

  .showcase-bottom-band {
    min-height: 88px;
  }

  .showcase-side {
    min-height: 88px;
    padding: 0.6rem 0.95rem 1rem;
    width: 26%;
    min-width: 0;
  }

  .showcase-side h2 {
    font-size: 2.2rem;
  }

  .showcase-side-right h2 {
    font-size: 2.75rem;
  }

  .showcase-center-controls {
    bottom: 8px;
  }

  .showcase-nav .slider-control {
    width: 38px;
    height: 38px;
  }

    .feature-summary h3,
  .display-title,
  .section-heading,
  .section-heading h2 {
    text-align: left;
  }

  .stats-grid,
  .footer-bottom {
    flex-direction: column;
  }

  .product-actions {
    flex-direction: column;
    gap: 0.55rem;
  }

  .product-card .button-light,
  .product-card .button-dark {
    min-height: 36px;
    padding: 0.5rem 0.65rem;
    font-size: 0.67rem;
    letter-spacing: 0.01em;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}


.about-hero {
  position: relative;
  min-height: 72svh;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 7, 4, 0.84) 0%, rgba(20, 11, 6, 0.68) 24%, rgba(32, 18, 10, 0.34) 44%, rgba(32, 18, 10, 0.12) 58%, rgba(32, 18, 10, 0.04) 100%),
    url('../images/about-new-banner.jpg') center center / cover no-repeat;
  overflow: clip;
}

.about-hero>.nav {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--shell);
  transform: translateX(-50%);
}

.about-hero-grid {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: var(--shell);
  margin: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.about-hero-copy {
  max-width: 420px;
  padding-bottom: 0;
}

.about-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 300;
}

.about-page {
  padding-block: 0;
}

.about-overview {
  display: grid;
  grid-template-columns: 0.7fr 1.45fr;
  gap: 3rem;
  align-items: start;
  padding-block: 0 5rem;
  background-color: #fff;
}

.about-overview.shell {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-top: 5.5rem;
  padding-inline: max(0px, calc((100% - var(--shell)) / 2));
  box-sizing: border-box;
}

.about-overview-copy h2,
.why-choose-header h2,
.faq-copy h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 300;
}

.about-overview-copy p {
  margin: 1.5rem 0 0;
  max-width: 34rem;
  color: #6d6d6d;
  font-size: 1.1rem;
  line-height: 1.55;
}

.about-overview-layout {
  --about-accordion-narrow: 150px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1.3rem;
}

.about-overview-layout > .about-feature-main,
.about-overview-layout > .about-side-card {
  transition:
    flex-grow 0.38s cubic-bezier(0.33, 1, 0.68, 1),
    flex-shrink 0.38s cubic-bezier(0.33, 1, 0.68, 1),
    flex-basis 0.38s cubic-bezier(0.33, 1, 0.68, 1),
    min-width 0.38s cubic-bezier(0.33, 1, 0.68, 1),
    max-width 0.38s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (prefers-reduced-motion: reduce) {
  .about-overview-layout > .about-feature-main,
  .about-overview-layout > .about-side-card {
    transition: none;
  }
}

.about-overview-layout > .about-feature-main {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  min-width: 0;
  max-width: none;
}

.about-overview-layout > .about-side-card {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: var(--about-accordion-narrow);
  min-width: var(--about-accordion-narrow);
  max-width: var(--about-accordion-narrow);
}

/* Middle strip stacks above the right strip so subpixel overlap during flex
   transitions does not send hovers to column 3 when aiming at column 2. */
.about-overview-layout > .about-feature-main + .about-side-card {
  z-index: 3;
}

.about-overview-layout > .about-feature-main + .about-side-card + .about-side-card {
  z-index: 1;
}

.about-overview-layout.is-accordion-side-2 > .about-feature-main {
  z-index: 1;
}

.about-overview-layout.is-accordion-side-2 > .about-feature-main + .about-side-card {
  z-index: 4;
}

.about-overview-layout.is-accordion-side-3 > .about-feature-main {
  z-index: 1;
}

.about-overview-layout.is-accordion-side-3 > .about-feature-main + .about-side-card {
  z-index: 1;
}

.about-overview-layout.is-accordion-side-3 > .about-feature-main + .about-side-card + .about-side-card {
  z-index: 4;
}

.about-overview-layout.is-accordion-side-2 > .about-feature-main,
.about-overview-layout.is-accordion-side-3 > .about-feature-main {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: var(--about-accordion-narrow);
  min-width: var(--about-accordion-narrow);
  max-width: var(--about-accordion-narrow);
}

.about-overview-layout.is-accordion-side-2 > .about-feature-main + .about-side-card {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  min-width: 0;
  max-width: none;
}

.about-overview-layout.is-accordion-side-3 > .about-feature-main + .about-side-card {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: var(--about-accordion-narrow);
  min-width: var(--about-accordion-narrow);
  max-width: var(--about-accordion-narrow);
}

.about-overview-layout.is-accordion-side-3 > .about-feature-main + .about-side-card + .about-side-card {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  min-width: 0;
  max-width: none;
}

.about-feature-main,
.about-side-card {
  border: 1px solid rgba(25, 25, 25, 0.35);
  background: #fff;
  align-self: stretch;
  min-height: 36rem;
}

.about-feature-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.about-feature-main-rich {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.about-feature-main-slim {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-height: 0;
  padding: 1.5rem 1.2rem;
  text-align: center;
}

.about-feature-main-slim .about-feature-icon {
  margin-top: 0;
}

.about-feature-main-slim p {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  min-height: 320px;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 500;
}

.about-feature-main-slim span {
  display: grid;
  place-items: center;
}

.about-overview-layout.is-accordion-side-2 .about-feature-main-rich,
.about-overview-layout.is-accordion-side-3 .about-feature-main-rich {
  display: none;
}

.about-overview-layout.is-accordion-side-2 .about-feature-main-slim,
.about-overview-layout.is-accordion-side-3 .about-feature-main-slim {
  display: flex;
}

.about-side-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.about-side-card:focus {
  outline: none;
}

.about-side-card:focus-visible {
  outline: 2px solid rgba(25, 25, 25, 0.45);
  outline-offset: 3px;
}

.about-side-card-rich {
  display: none;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.about-overview-layout.is-accordion-side-2 .about-feature-main + .about-side-card .about-side-card-rich {
  display: flex;
}

.about-overview-layout.is-accordion-side-2 .about-feature-main + .about-side-card .about-side-card-slim {
  display: none;
}

.about-overview-layout.is-accordion-side-3 .about-feature-main + .about-side-card + .about-side-card .about-side-card-rich {
  display: flex;
}

.about-overview-layout.is-accordion-side-3 .about-feature-main + .about-side-card + .about-side-card .about-side-card-slim {
  display: none;
}

.about-side-card-slim {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-height: 0;
  padding: 1.5rem 1.2rem;
  text-align: center;
}

.about-feature-image {
  flex-shrink: 0;
  height: 372px;
  overflow: hidden;
}

.about-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-feature-main-rich .about-feature-body,
.about-side-card-rich .about-feature-body {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  padding: 1.45rem 1.75rem 1.35rem;
  align-items: start;
  align-content: start;
  min-height: 0;
}

.about-feature-icon,
.about-side-icon {
  display: grid;
  place-items: center;
}

.about-side-icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

.about-feature-icon {
  align-self: start;
  margin-top: 0.1rem;
}

.about-feature-body .about-feature-icon {
  margin-right: 0.65rem;
}

.about-feature-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.about-feature-body h3 {
  margin: 0;
  font-size: calc(1.15rem + 4px);
  line-height: 1.3;
  font-weight: 500;
}

.about-side-card-slim p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  min-height: 320px;
}

.about-feature-body p {
  margin: 0.55rem 0 0;
  color: #6e6e6e;
  line-height: 1.6;
}

.about-side-card-slim span {
  display: grid;
  place-items: center;
}

.why-choose {
  padding-block: 3rem 5rem;
}

.why-choose-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: start;
}

.why-choose-header h2 span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
}

.why-choose-header p {
  margin: 0.8rem 0 0;
  text-align: right;
  color: #454545;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 0.4rem !important;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: minmax(320px, 500px) minmax(320px, 1fr);
  gap: 6rem;
  align-items: center;
  margin-top: 2rem;
}

.why-choose-bottle {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.why-bottle-orb {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.95), rgba(243, 246, 251, 0.95) 50%, rgba(236, 240, 248, 0.4) 100%);
  box-shadow: 0 25px 60px rgba(17, 32, 58, 0.08);
}

.why-choose-bottle img {
  position: relative;
  width: min(100%, 420px);
  transform: rotate(-18deg) translateY(10px);
  filter: drop-shadow(0 28px 32px rgba(31, 57, 92, 0.18));
}

.why-choose-list {
  display: grid;
  gap: 2rem;
}

.why-choose-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.why-choose-list h3 {
  margin: 0;
  max-width: 30rem;
  font-size: 1.45rem;
  line-height: 1.35;
  color: #333;
  font-weight: 400;
}

.number-pill {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
}

.why-choose-list p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: #4f4f4f;
}

.why-choose-list strong {
  color: #111;
  font-weight: 600;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.95fr);
  gap: 3rem;
  align-items: start;
  padding-block: 2rem 5rem;
}

.faq-section.shell {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: max(0px, calc((100% - var(--shell)) / 2));
  box-sizing: border-box;
  background-color: #fff;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid rgba(25, 25, 25, 0.12);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 1rem;
  color: #202020;
}

.faq-trigger span:first-child {
  font-size: 1.15rem;
}

.faq-symbol {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 300;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.faq-item.is-open .faq-panel {
  max-height: 300px;
  padding: 0 0 1.5rem;
}

.faq-panel p {
  margin: 0;
  max-width: 42rem;
  color: #6b6b6b;
  font-size: 1.05rem;
  line-height: 1.6;
}

.faq-visual {
  display: flex;
  justify-content: flex-end;
}

.faq-photo-wrap {
  width: min(100%, 730px);
  aspect-ratio: 1.08;
  overflow: hidden;
  border-radius: 58% 58% 0 0;
  box-shadow: var(--shadow-soft);
}

.faq-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {

  .about-hero-grid,
  .about-overview,
  .why-choose-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .about-overview-layout {
    flex-direction: column !important;
  }

  .about-overview-layout > .about-feature-main,
  .about-overview-layout > .about-side-card {
    flex-grow: 1 !important;
    flex-shrink: 1 !important;
    flex-basis: auto !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .about-feature-main-rich,
  .about-side-card-rich {
    display: flex !important;
    flex-direction: column;
  }

  .about-feature-main-slim,
  .about-side-card-slim {
    display: none !important;
  }

  .about-feature-main,
  .about-side-card {
    min-height: 0;
  }

  .about-side-card-slim p,
  .about-feature-main-slim p {
    writing-mode: initial;
    min-height: auto;
  }

  .why-choose-header {
    flex-direction: column;
  }

  .faq-visual {
    justify-content: center;
  }
}

@media (max-width: 780px) {
  .about-hero > .nav {
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--shell);
    margin: 0;
    transform: translateX(-50%);
    z-index: 6;
  }

  .about-hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 2rem;
    overflow: visible;
  }

  .about-hero-grid {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin: 0 auto;
    transform: none;
    justify-content: flex-start;
  }

  .about-hero-copy {
    padding-bottom: 1rem;
  }

  .about-overview,
  .why-choose,
  .faq-section {
    padding-block: 2.5rem;
  }

  .faq-photo-wrap {
    border-radius: 32px 32px 0 0;
  }
}


.catalog-hero {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(30, 17, 11, 0.72) 0%, rgba(42, 26, 20, 0.58) 38%, rgba(53, 31, 25, 0.16) 100%),
    url('../images/lazzaro-product-banner.png') center/cover no-repeat;
}

.catalog-hero-grid {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  padding-block: 2rem;
}

.catalog-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 300;
}

.catalog-page.shell {
  background-color: #fafafa;
  padding-block: 4rem 5.75rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.catalog-grid .product-card {
  padding: 1rem;
  box-shadow: none;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.catalog-loadmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.3rem;
}

.catalog-loadmore {
  min-height: 42px;
  padding: 0.65rem 1.35rem;
  border: 1px solid rgba(25, 25, 25, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #535353;
}

.detail-hero {
  background:
    linear-gradient(90deg, rgba(30, 17, 11, 0.72) 0%, rgba(42, 26, 20, 0.58) 38%, rgba(53, 31, 25, 0.16) 100%),
    url('../images/lazzaro-product-banner.png') center/cover no-repeat;
}

.detail-page {
  padding-block: 3rem 5rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 0.95fr);
  gap: 3rem;
  align-items: start;
  padding-block: 2rem;
}

.detail-gallery {
  position: relative;
  overflow: hidden;
  background: #f0f2f5;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
}

.detail-gallery-controls {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.detail-gallery-controls .slider-control {
  width: 48px;
  height: 48px;
}

.detail-summary h1 {
  margin: 0;
  font-size: clamp(2.45rem, 3.6vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 300;
}

.detail-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

.detail-price-row strong {
  font-size: 2.6rem;
  font-weight: 400;
}

.detail-strike {
  font-size: 1.9rem;
  color: #b8b8b8;
  text-decoration: line-through;
}

.detail-discount {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #ffe6e0;
  color: #ff5d49;
  font-size: 1.3rem;
}

.detail-description {
  margin: 1rem 0 0;
  color: #6c6c6c;
  font-size: 1.15rem;
  line-height: 1.55;
}

.detail-divider {
  height: 1px;
  margin: 1.6rem 0;
  background: rgba(25, 25, 25, 0.1);
}

.detail-size-block h2 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 400;
}

.detail-size-options {
  display: flex;
  gap: 0.85rem;
}

.size-chip {
  min-width: 104px;
  min-height: 50px;
  border: none;
  border-radius: 999px;
  background: #f0f0f0;
  color: #767676;
}

.size-chip.is-active {
  background: #050505;
  color: #fff;
}

.detail-cart-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1rem;
}

.quantity-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  min-height: 58px;
  border-radius: 999px;
  background: #f3f3f3;
}

.qty-btn {
  border: none;
  background: transparent;
  font-size: 2.2rem;
  line-height: 1;
}

.qty-value {
  font-size: 1.6rem;
}

.detail-primary,
.detail-secondary {
  min-height: 58px;
  border: none;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  text-transform: uppercase;
}

.detail-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.detail-secondary {
  width: 100%;
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.detail-tabs {
  margin-top: 3rem;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  padding-top: 1.75rem;
  padding-bottom: 2.5rem;
  padding-inline: max(0px, calc((100vw - var(--shell)) / 2));
  background-color: #fff;
}

.detail-tab-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1.6rem;
  border-bottom: 1px solid rgba(25, 25, 25, 0.12);
}

.detail-tab {
  min-width: 0;
  flex: 0 1 auto;
  max-width: 320px;
  padding: 0 1.8rem 1rem;
  border: none;
  background: transparent;
  color: #717171;
  font-size: 1.08rem;
  text-align: left;
}

.detail-tab.is-active {
  color: #161616;
  box-shadow: inset 0 -2px 0 #161616;
}

.detail-tab-panel {
  display: none;
  padding-top: 2rem;
}

.detail-tab-panel.is-active {
  display: block;
}

.detail-tab-panel>p {
  margin: 0 0 1.4rem;
  color: #6b6b6b;
  font-size: 1.1rem;
  line-height: 1.65;
}

.detail-note-row {
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(25, 25, 25, 0.1);
}

.detail-note-row h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

.detail-note-row p {
  margin: 0;
  color: #6b6b6b;
  font-size: 1.05rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {

  .catalog-grid,
  .detail-layout,
  .detail-cart-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .catalog-grid .product-card {
    padding: 0.7rem;
  }

  .catalog-grid .product-name {
    font-size: 1.2rem;
  }

  .catalog-grid .button-light,
  .catalog-grid .button-dark {
    min-height: 36px;
    padding: 0.5rem 0.65rem;
    font-size: 0.67rem;
  }

  .catalog-grid .product-link {
    font-size: 0.67rem;
  }

  .catalog-hero,
  .detail-hero {
    min-height: 320px;
  }

  .detail-tab-buttons {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .detail-tab {
    min-width: 0;
    padding-inline: 1rem;
    font-size: 0.96rem;
  }

  .detail-size-options,
  .detail-price-row {
    flex-wrap: wrap;
  }
}


.commerce-hero {
  min-height: 420px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(22, 12, 8, 0.78) 0%, rgba(29, 18, 11, 0.56) 32%, rgba(20, 32, 40, 0.22) 58%, rgba(6, 12, 19, 0.08) 100%),
    url('../images/cart-hero-image.jpg') center/cover no-repeat;
}

.checkout-hero {
  background:
    linear-gradient(90deg, rgba(22, 12, 8, 0.78) 0%, rgba(29, 18, 11, 0.56) 32%, rgba(20, 32, 40, 0.22) 58%, rgba(6, 12, 19, 0.08) 100%),
    url('../images/cart-hero-image.jpg') center/cover no-repeat;
}

.commerce-hero-grid {
  min-height: 320px;
  display: grid;
  align-items: end;
  padding-bottom: 3.5rem;
}

.cart-hero-grid {
  align-items: start;
  padding-top: 7.4rem;
  padding-bottom: 0;
}

.cart-hero-title {
  margin-left: 0.15rem;
  font-size: clamp(3rem, 5vw, 4.2rem) !important;
}

.commerce-hero-grid h1,
.cart-page h2,
.checkout-page h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 300;
}

.cart-page,
.checkout-page {
  padding-block: 3rem 5rem;
}

.cart-page.shell {
  --cart-page-bg: #fafaf9;
  background-color: var(--cart-page-bg);
}

.cart-page.shell > h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.5rem);
  margin-bottom: 1.35rem;
}

.checkout-page.shell {
  --checkout-page-bg: #fafaf9;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: max(0px, calc((100% - var(--shell)) / 2));
  padding-bottom: 0;
  box-sizing: border-box;
  background-color: var(--checkout-page-bg);
}

.checkout-hero .commerce-hero-grid h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.055em;
}

.checkout-page.shell > h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.5rem);
  margin-bottom: 1.35rem;
}

.checkout-card.summary-card-large .checkout-order-summary-heading {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.3;
  font-weight: 400;
}

#checkout-billing-heading,
#checkout-billing-form .checkout-card-head h3 {
  font-size: 1.34rem;
}

.cart-page h2,
.checkout-page h2 {
  color: #111;
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  margin-bottom: 2rem;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.95fr);
  gap: 1.6rem;
  align-items: start;
}

.checkout-layout {
  grid-template-columns: minmax(0, 1.78fr) minmax(300px, 0.82fr);
  gap: 1.85rem;
}

.checkout-main-column {
  display: grid;
  gap: 1.6rem;
  align-content: start;
  background-color: var(--checkout-page-bg);
}

.cart-list-card,
.order-summary-card,
.checkout-card {
  border: 1px solid rgba(25, 25, 25, 0.1);
  border-radius: 24px;
  background: #fff;
}

.cart-page.shell .cart-list-card,
.cart-page.shell .order-summary-card {
  background-color: var(--cart-page-bg);
}

.checkout-card.shipping-card,
.checkout-card.billing-card,
.checkout-card.summary-card-large {
  background-color: var(--checkout-page-bg);
}

.cart-list-card {
  padding: 1.1rem 1.5rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 130px 1fr 132px;
  gap: 1rem;
  align-items: center;
  padding: 0.6rem 0;
}

.cart-item+.cart-item {
  border-top: 1px solid rgba(25, 25, 25, 0.1);
  margin-top: 0.9rem;
  padding-top: 1.4rem;
}

.cart-page.shell .cart-item {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0.9rem;
}

.cart-page.shell .cart-item + .cart-item {
  padding-top: 15px;
}

.cart-item img {
  width: 130px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
}

.cart-item-info h3,
.order-summary-card h3,
.checkout-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
}

.cart-item-info p {
  margin: 0.25rem 0 0;
  color: #666;
}

.cart-item-info strong {
  display: block;
  margin-top: 1.2rem;
  font-size: 2rem;
  font-weight: 400;
}

.cart-remove {
  justify-self: end;
  align-self: start;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #ff4034;
  grid-column: 3;
  grid-row: 1;
}

.cart-qty {
  justify-self: end;
  align-self: end;
  min-height: 46px;
  padding: 0 1.2rem;
  grid-column: 3;
  grid-row: 1;
  gap: 0.9rem;
}

.quantity-pill.cart-qty {
  min-height: 38px;
  padding: 0 0.65rem;
  gap: 0.45rem;
}

.quantity-pill.cart-qty .qty-btn {
  font-size: 1.35rem;
}

.quantity-pill.cart-qty .qty-value {
  font-size: 1.05rem;
}

.order-summary-card,
.summary-card-large {
  padding: 1.6rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.summary-row:not(.summary-total) span {
  color: #6d6d6d;
}

.summary-row strong {
  font-size: 2rem;
  font-weight: 500;
}

.summary-row-discount strong {
  color: #ff4034;
}

.cart-page.shell .cart-item-info strong,
.cart-page.shell .summary-row strong,
.checkout-page.shell .summary-row strong {
  font-size: calc(2rem * 0.6);
}

.summary-divider {
  height: 1px;
  margin: 1rem 0;
  background: rgba(25, 25, 25, 0.1);
}

.summary-total {
  margin-top: 1.2rem;
}

.checkout-link {
  text-decoration: none;
}

.checkout-card {
  padding: 1.5rem;
}

.checkout-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

.checkout-card-head a {
  text-decoration: underline;
}

.checkout-form-grid {
  display: grid;
  gap: 1rem 1.4rem;
}

.checkout-form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-form-grid.three-col {
  margin-top: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 1rem;
}

.checkout-card label {
  display: grid;
  gap: 0.55rem;
}

.checkout-card label span {
  color: #262b67;
  font-size: 0.98rem;
}

.checkout-card input:not([type="radio"]):not([type="checkbox"]),
.checkout-card select {
  height: 50px;
  padding: 0 1rem;
  border: 1px solid rgba(25, 25, 25, 0.14);
  font: inherit;
}

.checkout-card select {
  width: 100%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='none' stroke='%23262b67' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1.5 2L7 7L12.5 2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 0.7rem 0.45rem;
  border-radius: 0;
  padding-left: 1rem;
  padding-right: 2.75rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.checkout-card select::-ms-expand {
  display: none;
}

.billing-block h3 {
  margin-bottom: 1rem;
}

.checkout-billing-options {
  margin: 0;
  padding: 0;
  border: none;
  display: grid;
  gap: 0.85rem;
}

.checkout-billing-legend-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.checkout-card label.checkout-billing-option {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  max-width: 100%;
  cursor: pointer;
  font-size: 1rem;
  color: #1a1a1a;
}

.checkout-card label.checkout-billing-option input[type="radio"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin: 0;
  accent-color: #050505;
}

.checkout-card label.checkout-billing-option span {
  line-height: 1.35;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-row input {
  width: 24px;
  height: 24px;
}

.place-order-btn {
  width: 100%;
  justify-content: center;
}

.checkout-terms {
  margin: 1.2rem 0 0;
  color: #525252;
  font-size: 1.1rem;
  line-height: 1.45;
}

@media (max-width: 1100px) {

  .cart-layout,
  .checkout-layout,
  .cart-item,
  .checkout-form-grid.two-col,
  .checkout-form-grid.three-col {
    grid-template-columns: 1fr;
  }

  .cart-item {
    justify-items: start;
  }
}

@media (max-width: 780px) {

  .commerce-hero,
  .checkout-hero {
    min-height: 320px;
  }
}


.account-hero {
  min-height: 360px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(30, 18, 12, 0.7) 0%, rgba(30, 18, 12, 0.4) 34%, rgba(19, 30, 40, 0.14) 62%, rgba(19, 30, 40, 0.06) 100%),
    url('../images/my-account-hero.jpg') center/cover no-repeat;
}

.account-hero-grid,
.policy-hero-grid {
  min-height: 270px;
  display: grid;
  align-items: end;
  padding-bottom: 2.8rem;
}

.account-hero-grid h1,
.policy-hero-grid h1 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 300;
}

.policy-page {
  padding-block: 2rem 5rem;
}

.account-page {
  padding-block: 2rem 0;
}

main.account-page.shell {
  background-color: transparent;
  padding-top: calc(2rem + 15px);
}

.account-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.account-sidebar {
  position: sticky;
  top: calc(1rem + env(safe-area-inset-top, 0px));
  align-self: start;
  max-height: calc(100vh - 2rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(25, 25, 25, 0.08);
  border-radius: 16px;
  background: #fafafa;
  font-size: 1.2rem;
  padding: 0;
  text-align: left;
}

.account-nav-btn {
  width: 100%;
  display: block;
  padding: 1.45rem 0.75rem;
  border: none;
  border-top: 1px solid rgba(25, 25, 25, 0.06);
  background: transparent;
  color: #b7b7b7;
  text-align: left;
}

.account-sidebar a.account-nav-btn {
  line-height: 1.2;
  text-align: left;
}

.account-nav-btn:first-child {
  border-top: none;
}

.account-nav-btn.is-active {
  color: #171717;
  font-weight: 500;
}

.account-content {
  min-height: 360px;
}

.account-panel {
  display: none;
}

.account-panel.is-active {
  display: block;
}

.account-panel h2 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 400;
}

.account-panel>p {
  margin: 0.5rem 0 1.2rem;
  color: #6d6d6d;
}

.account-form-grid {
  display: grid;
  gap: 1.2rem 1rem;
}

.account-form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-form-grid.two-col label {
  min-width: 0;
}

.account-form-grid.two-col label input,
.account-form-grid.two-col label select {
  width: 100%;
}

.account-form-grid.three-col {
  margin-top: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-form-grid label {
  display: block;
}

.account-form-grid input,
.account-form-grid select {
  height: 46px;
  padding: 0 1rem;
  border: 1px solid rgba(25, 25, 25, 0.1);
  font: inherit;
  width: 100%;
}

.account-form-grid select {
  width: 100%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='none' stroke='%23262b67' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1.5 2L7 7L12.5 2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 0.7rem 0.45rem;
  border-radius: 0;
  padding-left: 1rem;
  padding-right: 2.75rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.account-form-grid select::-ms-expand {
  display: none;
}

.account-table-wrap {
  overflow-x: auto;
}

.account-orders-table {
  width: 100%;
  border-collapse: collapse;
}

.account-orders-table th,
.account-orders-table td {
  padding: 0.95rem 0.85rem;
  border: 1px solid rgba(25, 25, 25, 0.08);
  text-align: left;
}

.account-orders-table thead th {
  background: #050505;
  color: #fff;
  font-weight: 400;
}

.address-card-list {
  display: grid;
  gap: 0.9rem;
}

.address-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(25, 25, 25, 0.12);
  border-radius: 8px;
}

.address-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.address-card p {
  margin: 0.35rem 0 0;
  color: #606060;
}

.address-card button {
  align-self: start;
  border: none;
  background: transparent;
  color: #3366aa;
}

.address-card a {
  align-self: start;
  color: #3366aa;
}

.add-address-btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.address-form-wrap {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(25, 25, 25, 0.12);
  border-radius: 12px;
  background: #fff;
}

.address-form-wrap h3 {
  margin: 0 0 1.2rem;
  font-size: 1.15rem;
}

.address-form-wrap .full-width {
  grid-column: 1 / -1;
}

.address-form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.policy-hero {
  min-height: 420px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(30, 20, 18, 0.52) 0%, rgba(23, 36, 60, 0.34) 40%, rgba(8, 16, 32, 0.2) 100%),
    url('./design-assets-page8/ABOUT OUR PRODUCT.jpg') center/cover no-repeat;
}

.policy-content {
  max-width: 980px;
}

.policy-content section+section {
  margin-top: 2rem;
}

.policy-content h2 {
  margin: 0 0 0.9rem;
  font-size: 1.4rem;
}

.policy-content p,
.policy-content li {
  color: #666;
  line-height: 1.7;
}

.policy-content ul {
  margin: 0;
  padding-left: 1.2rem;
}

@media (max-width: 780px) {

  .account-layout,
  .account-form-grid.two-col,
  .account-form-grid.three-col {
    grid-template-columns: 1fr;
  }

  .account-content,
  .account-panel,
  .account-table-wrap {
    min-width: 0;
    max-width: 100%;
  }

  .account-sidebar {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
  }

  .account-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .account-orders-table {
    min-width: 640px;
  }
}


.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  overflow-y: auto;
}

.auth-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 6, 0.68);
  backdrop-filter: blur(8px);
}

.auth-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 140px));
  max-height: min(680px, calc(100vh - 72px));
  margin: 0;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 251, 245, 0.98);
  border-radius: 0;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.auth-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: none;
  background: #ff4c4c !important;
  color: #fff !important;
  opacity: 1 !important;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 16px 32px rgba(255, 76, 76, 0.28);
  z-index: 3;
}

.auth-close svg {
  width: 1.9rem;
  height: 1.9rem;
  stroke: #fff;
  stroke-width: 2.2;
}

.auth-visual {
  position: relative;
  min-height: 460px;
}

.auth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
}

.auth-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.auth-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 2rem 2rem 1.4rem;
  overflow: hidden;
  background: url('../images/Sign_Up-Popup_bg.png') center/cover no-repeat;
}

.auth-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(251, 248, 243, 0.34));
  pointer-events: none;
}

.auth-panel > * {
  position: relative;
  z-index: 1;
}

.auth-view {
  display: none;
}

.auth-view.is-active {
  display: block;
}

.auth-view h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 300;
}

#auth-title {
  font-size: clamp(1.2rem, 2vw, 2rem);
  letter-spacing: -0.04em;
  color: #000 !important;
}

.auth-view > p:not(.auth-footer-copy) {
  margin: 1.2rem 0 0;
  max-width: 42rem;
  color: #2a2a2a;
  font-size: 1.2rem;
  line-height: 1.6;
}

.auth-form {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.6rem;
}

.auth-form input:focus,
.auth-form input:focus-visible {
  outline: none;
  box-shadow: none;
  border-bottom-color: rgba(30, 30, 30, 0.28);
}


.auth-form label {
  display: grid;
  gap: 0.6rem;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-form input {
  height: 56px;
  width: 100%;
  padding: 0 2.6rem 0 0.2rem;
  border: none;
  border-bottom: 2px solid rgba(30, 30, 30, 0.28);
  background: transparent;
  font: inherit;
  font-size: 1.05rem;
}

.password-toggle {
  position: absolute;
  right: 0.2rem;
  bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  color: #7c7c7c;
}

.password-toggle .icon-eye-off {
  display: none;
}

.password-toggle.is-visible .icon-eye {
  display: none;
}

.password-toggle.is-visible .icon-eye-off {
  display: block;
}

.password-toggle svg {
  width: 1rem;
  height: 1rem;
}

.auth-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.auth-inline-link,
.auth-footer-copy a {
  color: #111;
  text-decoration: underline;
}

.auth-footer-copy a.auth-back-to-signin {
  text-decoration: none;
  color: #6b6b6b;
}

.auth-footer-copy a.auth-back-to-signin .auth-back-prefix {
  text-decoration: none;
}

.auth-footer-copy a.auth-back-to-signin .auth-back-em {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-view[data-auth-view="forgot"] h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.04em;
}

.auth-view[data-auth-view="forgot"] .auth-footer-copy--back {
  font-size: 0.8rem;
}

.auth-view[data-auth-view="forgot"] > p:not(.auth-footer-copy) {
  margin-top: 1.65rem;
}

.auth-view[data-auth-view="forgot"] .auth-form {
  margin-top: 2rem;
  gap: 1.35rem;
}

.auth-view[data-auth-view="forgot"] .auth-footer-copy {
  margin-top: 1.75rem;
}

.auth-align-right {
  justify-self: end;
}

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 56px;
  border: none;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.auth-submit span {
  font-size: 1.8rem;
  line-height: 1;
}

.auth-footer-copy {
  margin: 1.4rem 0 0;
  text-align: center;
  color: #6b6b6b;
  font-size: calc(1.05rem - 3px);
}

.auth-panel .auth-view p.auth-footer-copy {
  color: #6b6b6b;
}

.auth-footer-copy .auth-footer-lead {
  color: #6b6b6b;
}

.auth-form-signup {
  gap: 1.05rem;
  margin-top: 1.75rem;
}

.auth-form-signup .auth-grid-two {
  gap: 1.05rem;
}

.auth-form-signup label {
  gap: 0.2rem;
}

.auth-form-signup label span {
  font-size: 0.8rem;
}

.auth-form-signup input {
  height: 36px;
  font-size: 0.9rem;
}

.auth-form-signup .auth-submit {
  min-height: 42px;
  font-size: 0.9rem;
  margin-top: 0.55rem;
}

.auth-view[data-auth-view="signup"] h2 {
  font-size: clamp(1.45rem, 2.55vw, 2.25rem);
}

.auth-view[data-auth-view="signup"] .auth-footer-copy {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

body.auth-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .auth-dialog {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    min-height: 280px;
  }

  .auth-panel {
    padding: 4rem 1.5rem 2rem;
  }

  .auth-grid-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .auth-modal.is-open {
    align-items: flex-start;
    padding: 12px;
  }

  .auth-dialog {
    width: min(100%, 560px);
    max-height: none;
    border-radius: 18px;
  }

  .auth-visual {
    min-height: 180px;
  }

  .auth-panel {
    padding: 3.4rem 1rem 1rem;
  }

  .auth-close {
    width: 50px;
    height: 50px;
  }

  .auth-close svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  .auth-view h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  #auth-title {
    font-size: clamp(1rem, 4.6vw, 1.35rem);
  }

  .auth-view > p:not(.auth-footer-copy) {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .auth-form {
    margin-top: 1.1rem;
    gap: 0.8rem;
  }

  .auth-form input {
    height: 48px;
    font-size: 0.95rem;
  }

  .auth-submit {
    min-height: 46px;
    font-size: 0.85rem;
  }
}

hr {
    border: none; /* Removes the default border */
    height: 1px; /* Sets the thickness */
    background-color: silver; /* Sets the color */
    width: 60%; /* Adjusts the width */
    margin: 10px auto; /* Centers the line with spacing */
  }
