:root {
  --ink: #2b2118;
  --muted: #6a5c50;
  --paper: #f3e9dc;
  --cream: #f3e9dc;
  --sand: #ddb892;
  --clay: #b08968;
  --clay-dark: #7f5539;
  --olive: #5e503f;
  --coffee: #5e503f;
  --line: rgba(94, 80, 63, 0.18);
  --shadow: 0 20px 50px rgba(94, 80, 63, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #dce2ea;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  width: min(1380px, calc(100% - 48px));
  margin: 22px auto;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(55, 65, 80, 0.26);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 0 clamp(28px, 5vw, 64px);
  background: rgba(251, 248, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 600;
}

.brand b {
  color: #811a15;
  font-weight: 800;
}

.brand-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--olive);
  border-radius: 50%;
  position: relative;
}

.brand-icon::after {
  position: absolute;
  inset: 7px 4px 4px 7px;
  content: "";
  border-top: 6px solid transparent;
  border-right: 12px solid var(--olive);
  border-bottom: 6px solid transparent;
  transform: rotate(-25deg);
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  position: relative;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--clay);
  transition: width 180ms ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn.primary {
  color: white;
  background: var(--clay);
  box-shadow: 0 12px 26px rgba(215, 137, 83, 0.25);
}

.btn.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
}

.header-cta:hover,
.btn:hover,
.quick-card:hover,
.product:hover,
.arrival-card:hover {
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 640px;
  background:
    radial-gradient(circle at 0 100%, rgba(215, 137, 83, 0.15), transparent 34%),
    linear-gradient(90deg, #fbf8f2 0%, #f3ede5 48%, #e6ddcf 100%);
}

.hero-copy-block {
  z-index: 2;
  align-self: center;
  padding: clamp(54px, 7vw, 92px) 0 clamp(100px, 10vw, 136px) clamp(34px, 6vw, 68px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.8vw, 86px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.hero-copy-block p {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions,
.showroom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-image {
  position: relative;
  min-height: 520px;
  clip-path: inset(0 0 0 8% round 0);
}

.hero-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(251, 248, 242, 0.2), rgba(251, 248, 242, 0.02));
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-cards {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(1180px, calc(100% - 84px));
  margin: -78px auto 0;
}

.quick-card {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 140px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.quick-card img {
  width: 94px;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
}

.quick-card h2 {
  margin-bottom: 7px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.quick-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.quick-card a,
.product a,
.arrival-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  color: white;
  background: #8f9697;
  font-size: 11px;
  font-weight: 800;
}

.section-pad {
  padding: clamp(72px, 8vw, 110px) clamp(34px, 6vw, 68px);
}

.section-title {
  max-width: 680px;
  margin-bottom: 30px;
}

.featured {
  padding-top: clamp(92px, 9vw, 128px);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.filter.active {
  color: white;
  background: var(--olive);
  border-color: var(--olive);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(44, 42, 39, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(61, 51, 42, 0.08);
  transition: transform 180ms ease;
}

.product.hidden {
  display: none;
}

.product img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.product div {
  padding: 20px;
}

.product p {
  min-height: 58px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.latest {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: end;
  color: white;
  background:
    linear-gradient(90deg, rgba(86, 53, 31, 0.94), rgba(140, 94, 57, 0.58)),
    url("./assets/gallery-3.jpg") center / cover;
}

.latest-copy {
  max-width: 430px;
}

.latest-copy p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.latest .eyebrow {
  color: #f6c38f;
}

.arrival-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.arrival-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 180ms ease;
}

.arrival-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.benefits {
  text-align: center;
  background:
    linear-gradient(180deg, var(--cream), #efe7dc);
}

.benefits .section-title {
  margin-left: auto;
  margin-right: auto;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1020px;
  margin: 0 auto;
}

.benefit-grid article {
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border: 2px solid var(--olive);
  border-radius: 50%;
  color: var(--olive);
  font-weight: 800;
}

.benefit-grid p {
  color: var(--muted);
  line-height: 1.62;
}

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

.quote-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    url("./assets/comedor.png") center / cover;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.quote-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.quote-form {
  display: grid;
  gap: 10px;
}

.quote-form label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-bottom: 8px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.btn.full {
  width: 100%;
}

.about-showroom {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.about-showroom > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86);
}

.about-showroom::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(244, 240, 234, 0.5), rgba(244, 240, 234, 0.88));
}

.about-card {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 40px));
  padding: 38px;
  text-align: center;
  background: rgba(251, 248, 242, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.about-card p {
  color: var(--muted);
  line-height: 1.7;
}

.about-card .showroom-actions {
  justify-content: center;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #22bd5a;
  box-shadow: 0 18px 32px rgba(34, 189, 90, 0.28);
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(28px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background: #2c2a27;
  font-size: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(44, 42, 39, 0.86);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1080px, 94vw);
  max-height: 84vh;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.lightbox button::before,
.lightbox button::after {
  position: absolute;
  top: 22px;
  left: 12px;
  width: 20px;
  height: 2px;
  content: "";
  background: white;
}

.lightbox button::before {
  transform: rotate(45deg);
}

.lightbox button::after {
  transform: rotate(-45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal,
.quick-cards .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .page-shell {
    width: 100%;
    margin: 0;
  }

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 22px 28px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero,
  .latest,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy-block {
    padding-right: clamp(28px, 5vw, 64px);
  }

  .hero-image {
    min-height: 380px;
    clip-path: none;
  }

  .quick-cards {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
    padding: 0 18px;
    gap: 12px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-icon {
    width: 24px;
    height: 24px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy-block {
    padding: 54px 18px 34px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions,
  .showroom-actions,
  .footer {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-cards,
  .section-pad {
    width: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .quick-cards {
    gap: 14px;
  }

  .quick-card {
    grid-template-columns: 82px 1fr;
    padding: 16px;
  }

  .quick-card img {
    width: 82px;
    height: 78px;
  }

  .product-grid,
  .arrival-row,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .about-card {
    padding: 28px 20px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

/* ABA warm palette + collections page */
body,
.page-shell,
.quote-section {
  background: #f3e9dc;
}

.site-header {
  background: rgba(243, 233, 220, 0.94);
  border-bottom-color: rgba(94, 80, 63, 0.16);
}

.brand b {
  color: #7f5539;
}

.brand-icon {
  border-color: #5e503f;
}

.brand-icon::after {
  border-right-color: #5e503f;
}

.nav a::after {
  background: #b08968;
}

.header-cta,
.btn.primary {
  background: #b08968;
  box-shadow: 0 12px 26px rgba(127, 85, 57, 0.22);
}

.header-cta:hover,
.btn.primary:hover {
  background: #7f5539;
}

.hero.hero-slider {
  background: #5e503f;
}

.hero-shade {
  background:
    radial-gradient(circle at 82% 40%, rgba(221, 184, 146, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(94, 80, 63, 0.96) 0%, rgba(127, 85, 57, 0.78) 38%, rgba(176, 137, 104, 0.26) 72%, rgba(94, 80, 63, 0.5) 100%);
}

.hero-content .eyebrow,
.latest .eyebrow,
.eyebrow {
  color: #7f5539;
}

.hero-content .eyebrow,
.latest .eyebrow {
  color: #ddb892;
}

.btn.glass {
  background: rgba(243, 233, 220, 0.12);
  border-color: rgba(243, 233, 220, 0.34);
}

.hero-product-card,
.hero-mini-nav {
  background: rgba(94, 80, 63, 0.82);
  border-color: rgba(221, 184, 146, 0.22);
}

.hero-mini-nav button.active {
  border-color: #ddb892;
}

.quick-card,
.product,
.arrival-card,
.quote-panel,
.about-card {
  background: rgba(255, 251, 245, 0.88);
  border-color: rgba(94, 80, 63, 0.12);
}

.quick-card a,
.product a,
.arrival-card a,
.filter.active {
  background: #7f5539;
}

.filter {
  background: #f8f1e8;
  border-color: rgba(94, 80, 63, 0.18);
}

.latest {
  background:
    linear-gradient(90deg, rgba(94, 80, 63, 0.94), rgba(127, 85, 57, 0.66), rgba(176, 137, 104, 0.42)),
    url("./assets/gallery-3.jpg") center / cover;
}

.benefits {
  background: linear-gradient(180deg, #f3e9dc, #ddb892);
}

.benefit-grid span {
  border-color: #7f5539;
  color: #7f5539;
}

.quote-panel {
  background:
    linear-gradient(90deg, rgba(243, 233, 220, 0.96), rgba(221, 184, 146, 0.7)),
    url("./assets/comedor.png") center / cover;
}

.about-showroom::after {
  background: linear-gradient(180deg, rgba(243, 233, 220, 0.44), rgba(243, 233, 220, 0.9));
}

.footer {
  background: #5e503f;
}

.floating-whatsapp {
  background: #22c55e;
  box-shadow: 0 18px 32px rgba(34, 197, 94, 0.3);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: white;
}

.collection-hero {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #5e503f;
}

.collection-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.collection-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(94, 80, 63, 0.94), rgba(127, 85, 57, 0.64), rgba(176, 137, 104, 0.18));
}

.collection-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: clamp(70px, 9vw, 110px) clamp(28px, 7vw, 96px);
}

.collection-hero-copy h1 {
  color: white;
}

.collection-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.7;
}

.collections-page {
  background: #f3e9dc;
}

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

.collections-page .product {
  cursor: zoom-in;
}

@media (max-width: 1040px) {
  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .collection-hero {
    min-height: 420px;
  }

  .collection-hero-copy {
    padding: 60px 18px;
  }
}

/* Dynamic banner update */
body {
  background: var(--cream);
}

.page-shell {
  width: 100%;
  margin: 0;
  box-shadow: none;
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.hero.hero-slider {
  position: relative;
  display: block;
  min-height: 650px;
  overflow: hidden;
  color: white;
  background: #10202a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 650px;
  padding: clamp(70px, 9vw, 120px) clamp(28px, 7vw, 96px);
  opacity: 0;
  transform: scale(1.018);
  pointer-events: none;
  transition: opacity 720ms ease, transform 900ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 82% 40%, rgba(255, 255, 255, 0.03), transparent 28%),
    linear-gradient(90deg, rgba(13, 31, 41, 0.94) 0%, rgba(13, 31, 41, 0.74) 38%, rgba(13, 31, 41, 0.28) 73%, rgba(13, 31, 41, 0.48) 100%);
}

.hero-content {
  max-width: 520px;
  animation: slideTextIn 760ms ease both;
}

.hero-slide:not(.active) .hero-content {
  animation: none;
}

.hero-content .eyebrow,
.latest .eyebrow {
  color: #f0b47f;
}

.hero-content h1 {
  color: white;
}

.hero-content p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.btn.glass {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.hero-product-card {
  position: absolute;
  right: clamp(28px, 8vw, 120px);
  bottom: 110px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  width: min(330px, calc(100% - 56px));
  padding: 14px;
  color: white;
  background: rgba(2, 12, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  animation: floatCard 3.8s ease-in-out infinite;
}

.hero-product-card img {
  width: 92px;
  height: 68px;
  object-fit: cover;
  border-radius: 9px;
}

.hero-product-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-product-card strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.hero-mini-nav {
  position: absolute;
  left: 50%;
  bottom: 40px;
  z-index: 4;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: rgba(4, 17, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.hero-mini-nav button {
  width: 74px;
  height: 54px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  opacity: 0.64;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.hero-mini-nav button.active {
  border-color: #f0b47f;
  opacity: 1;
  transform: translateY(-3px);
}

.hero-mini-nav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-cards {
  margin-top: 34px;
}

.quick-cards .quick-card {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.reveal {
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.quick-card.visible,
.product.visible,
.arrival-card.visible,
.benefit-grid.visible article,
.quote-panel.visible,
.about-card.visible {
  animation: softPop 620ms ease both;
}

.product:nth-child(2).visible,
.arrival-card:nth-child(2).visible {
  animation-delay: 90ms;
}

.product:nth-child(3).visible,
.arrival-card:nth-child(3).visible {
  animation-delay: 160ms;
}

.product:nth-child(4).visible {
  animation-delay: 230ms;
}

@keyframes slideTextIn {
  from {
    opacity: 0;
    transform: translateX(-26px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes softPop {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  70% {
    opacity: 1;
    transform: translateY(-5px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 680px) {
  .hero.hero-slider,
  .hero-slide {
    min-height: 680px;
  }

  .hero-slide {
    padding: 58px 18px 126px;
    align-items: start;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(13, 31, 41, 0.92), rgba(13, 31, 41, 0.62) 54%, rgba(13, 31, 41, 0.78));
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-product-card {
    left: 18px;
    right: auto;
    bottom: 96px;
    grid-template-columns: 74px 1fr;
  }

  .hero-product-card img {
    width: 74px;
    height: 58px;
  }

  .hero-mini-nav {
    width: calc(100% - 36px);
    bottom: 24px;
    justify-content: space-between;
    gap: 8px;
  }

  .hero-mini-nav button {
    width: 62px;
    height: 46px;
  }
}
