:root {
  --bg: #faf7f1;
  --card: #ffffff;
  --card-border: #eadfce;
  --text: #1e2022;
  --muted: #686f78;
  --accent: #ff8f3f;
  --accent-2: #0f9d7f;
  --shadow: 0 14px 38px rgba(35, 35, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.nav-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 40;
  background: rgba(250, 247, 241, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand,
h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #303a44;
  text-decoration: none;
  font-weight: 500;
}

.btn {
  background: linear-gradient(135deg, #ffa84f, var(--accent));
  color: #27190f;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-sm {
  padding: 9px 14px;
  font-size: 0.92rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 0;
}

.hero-bg.is-sliding {
  animation: heroSlideIn 1.2s ease;
}

@keyframes heroSlideIn {
  0% {
    transform: translateX(12%);
    opacity: 0.45;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 12%, rgba(0, 0, 0, 0.24) 62%, rgba(0, 0, 0, 0.52) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  color: #fff;
}

.kicker {
  color: #ffc88a;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
  font-size: 0.83rem;
}

h1 {
  max-width: 730px;
  font-size: clamp(2rem, 4.3vw, 3.5rem);
  margin: 10px 0 14px;
  line-height: 1.08;
}

.hero-tagline {
  margin: -2px 0 14px;
  color: #ffd9a8;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

section {
  padding: 34px 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.showcase,
.brands,
.ranges,
.categories,
.catalogue,
.store-showcase,
.lead,
.contact {
  scroll-margin-top: 90px;
}

#locate-store {
  padding: 10px 0 4px;
}

.showcase-grid,
.brand-grid,
.ranges-grid,
.cat-grid,
.contact-grid {
  display: grid;
  gap: 14px;
}

.showcase-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.show-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.show-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.show-card div {
  padding: 14px;
}

.show-card h3 {
  margin: 0 0 6px;
}

.show-card p {
  margin: 0;
  color: var(--muted);
}

.brand-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.brand-logo-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 72px;
}

.brand-logo-card img {
  max-width: 110px;
  max-height: 40px;
  object-fit: contain;
}

.brand-logo-card span {
  font-size: 0.98rem;
  font-weight: 600;
  color: #303a44;
}

.ranges-grid {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px 16px;
}

.range-item {
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: #2b3138;
  font: inherit;
  text-align: center;
}

.range-thumb {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  border: 1px solid #d8bf95;
  background: radial-gradient(circle at 40% 35%, #ecd9bd 0%, #dcc5a2 55%, #c9ab81 100%);
  box-shadow: 0 8px 20px rgba(97, 65, 21, 0.16);
}

.range-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.range-item > span:last-child {
  font-weight: 600;
  font-size: 0.93rem;
}

.cat-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.cat-card {
  text-align: left;
  border: 1px solid var(--card-border);
  background: linear-gradient(140deg, #fff, #fff8ed);
  color: var(--text);
  border-radius: 16px;
  padding: 18px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  display: block;
}

.cat-card:hover {
  text-decoration: none;
}

.cat-card h3 {
  margin: 0 0 8px;
}

.cat-card p {
  margin: 0;
  color: var(--muted);
}

.filters {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
}

input,
select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: #fff;
  color: #1f2428;
  padding: 12px;
  font-family: inherit;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: #fff;
}

.store-showcase-shell {
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.97), rgba(247, 236, 218, 0.94)),
    radial-gradient(circle at top right, rgba(255, 187, 120, 0.24), transparent 40%);
  border: 1px solid rgba(189, 154, 102, 0.2);
  box-shadow: 0 22px 44px rgba(54, 40, 23, 0.12);
}

.store-showcase-banner {
  position: relative;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-image: url("assets/Store-exterior.jpeg");
  background-size: cover;
  background-position: center 42%;
  box-shadow: 0 20px 40px rgba(14, 15, 17, 0.18);
}

.store-showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 11, 14, 0.86) 12%, rgba(10, 11, 14, 0.48) 48%, rgba(10, 11, 14, 0.14) 100%),
    radial-gradient(circle at top right, rgba(255, 183, 98, 0.18), transparent 28%);
}

.store-showcase-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 12px;
  padding: 32px;
}

.store-showcase-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffe5bf;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  backdrop-filter: blur(10px);
}

.store-showcase-copy p {
  margin: 0;
  color: rgba(255, 242, 223, 0.92);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-family: "Sora", sans-serif;
  font-weight: 500;
}

.store-showcase-copy h2 {
  margin: 0;
  color: #fff;
  max-width: 11ch;
  font-size: clamp(2.4rem, 4.9vw, 4.4rem);
  line-height: 0.98;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.store-showcase-copy h2 strong {
  color: #ffd089;
  font-weight: 800;
}

.store-showcase-detail {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.store-showcase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.locate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2b1a0d;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #ffd394, #f4a74d);
  box-shadow: 0 12px 24px rgba(222, 140, 52, 0.26);
}

.locate-btn:hover {
  background: linear-gradient(135deg, #ffdba6, #f6b15f);
}

.store-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.store-showcase-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.store-highlight-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(189, 154, 102, 0.16);
}

.store-highlight-card span {
  color: #8b6c42;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Sora", sans-serif;
}

.store-highlight-card strong {
  color: #2b3138;
  font-size: 1rem;
  line-height: 1.4;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid #efe6d8;
}

th {
  color: #8b7560;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.row-btn {
  font-size: 0.82rem;
  padding: 8px 10px;
  border: 1px solid #e8d8be;
  border-radius: 9px;
  background: #fff4df;
  color: #5a3a1f;
  cursor: pointer;
}

.empty-row td {
  padding: 12px;
  color: #7d6a54;
}

.lead {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.lead-preview,
.contact-card {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.contact-card {
  text-decoration: none;
  color: #2d333a;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}

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

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tilt-card:hover {
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.12);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  z-index: 60;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
  border: 2px solid #fff;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* Store showcase slideshow */
.store-showcase-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slideshow-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slideshow-image.active {
  opacity: 1;
  z-index: 1;
}

/* Loading state for slideshow */
.store-showcase-banner.loading {
  background-color: #f5f1e9;
  background-image: linear-gradient(45deg, #f0e9df 25%, transparent 25%), linear-gradient(-45deg, #f0e9df 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #f0e9df 75%), linear-gradient(-45deg, transparent 75%, #f0e9df 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.store-showcase-banner.loading .store-showcase-copy {
  opacity: 0.7;
}

/* Performance optimization: hide images until loaded */
.slideshow-image:not(.active) {
  visibility: hidden;
}

.slideshow-image.active {
  visibility: visible;
}

@media (max-width: 1024px) {
  .container {
    width: min(1160px, 94vw);
  }

  section {
    padding: 30px 0;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding-top: 100px;
  }

  .store-showcase-banner {
    min-height: 460px;
  }
}

@media (max-width: 900px) {
  .lead {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .filters {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 10px;
    padding: 10px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .nav-links a {
    white-space: nowrap;
    font-size: 0.88rem;
    border: 1px solid #d9d2c4;
    border-radius: 999px;
    padding: 7px 12px;
    background: #fff;
  }

  .hero {
    min-height: 76vh;
    margin-bottom: 16px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.36) 45%, rgba(0, 0, 0, 0.68) 100%);
  }

  .hero-content {
    text-align: center;
    padding-top: 122px;
  }

  .hero-content p {
    margin-inline: auto;
    font-size: 0.98rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .show-card img {
    height: 190px;
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .brand-logo-card img {
    max-width: 86px;
    max-height: 32px;
  }

  .ranges-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .range-thumb {
    width: 86px;
    height: 86px;
  }

  .range-item > span:last-child {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .cat-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cat-card {
    padding: 14px;
  }

  .store-showcase-copy h2 {
    line-height: 1.13;
  }

  .locate-btn {
    padding: 12px 26px;
    font-size: 0.95rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-card,
  .lead-preview {
    padding: 14px;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead {
    display: none;
  }

  .table-wrap {
    border: 0;
    background: transparent;
  }

  tbody {
    display: grid;
    gap: 10px;
  }

  tr {
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: #fff;
    padding: 10px;
  }

  td {
    border: 0;
    padding: 7px 6px;
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 8px;
    align-items: center;
  }

  td::before {
    content: attr(data-label);
    font-size: 0.74rem;
    color: #8b7560;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
  }

  .row-btn {
    width: max-content;
  }

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

  .empty-row td::before {
    display: none;
  }

  .btn-sm {
    font-size: 0.82rem;
    padding: 8px 11px;
  }

  .store-showcase-banner {
    min-height: 420px;
  }

  .store-showcase-shell {
    padding: 14px;
    border-radius: 24px;
  }

  .store-showcase-copy h2 {
    max-width: 12ch;
  }

  .store-showcase-highlights {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
}

/* Enhanced mobile responsiveness for smaller screens */
@media (max-width: 768px) {
  .container {
    width: 96vw;
    padding: 0 10px;
  }

  section {
    padding: 24px 0;
  }

  .hero {
    min-height: 70vh;
    margin-bottom: 12px;
  }

  .hero-content {
    padding-top: 110px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .show-card img {
    height: 170px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .brand-logo-card img {
    max-width: 90px;
    max-height: 34px;
  }

  .ranges-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 8px;
  }

  .range-thumb {
    width: 90px;
    height: 90px;
  }

  .range-item > span:last-child {
    font-size: 0.78rem;
  }

  .filters {
    gap: 8px;
  }

  input,
  select {
    padding: 10px;
    font-size: 0.9rem;
  }

  .table-wrap {
    border-radius: 12px;
  }

  td {
    grid-template-columns: 95px 1fr;
    gap: 6px;
  }

  td::before {
    font-size: 0.7rem;
  }

  .store-showcase-banner {
    min-height: 380px;
    border-radius: 16px;
  }

  .store-showcase-copy {
    padding: 22px;
    justify-items: stretch;
  }

  .store-showcase-copy p {
    font-size: 1rem;
  }

  .store-showcase-copy h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 6.5vw, 3.2rem);
  }

  .store-showcase-actions {
    width: 100%;
    flex-direction: column;
  }

  .locate-btn,
  .store-call-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .contact-card,
  .lead-preview {
    padding: 16px;
  }

  .floating-whatsapp {
    width: 48px;
    height: 48px;
    right: 12px;
    bottom: 12px;
  }

  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 98vw;
    padding: 0 8px;
  }

  section {
    padding: 20px 0;
  }

  .hero {
    min-height: 65vh;
    margin-bottom: 10px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-cta {
    gap: 8px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .btn-sm {
    padding: 7px 10px;
    font-size: 0.8rem;
  }

  .show-card img {
    height: 150px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .brand-logo-card img {
    max-width: 80px;
    max-height: 30px;
  }

  .brand-logo-card {
    padding: 10px;
    min-height: 64px;
  }

  .ranges-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 6px;
  }

  .range-thumb {
    width: 80px;
    height: 80px;
  }

  .range-item > span:last-child {
    font-size: 0.75rem;
  }

  .filters {
    gap: 6px;
  }

  input,
  select {
    padding: 8px;
    font-size: 0.85rem;
  }

  td {
    grid-template-columns: 85px 1fr;
    gap: 4px;
    padding: 6px 4px;
  }

  td::before {
    font-size: 0.68rem;
  }

  .store-showcase-banner {
    min-height: 340px;
    border-radius: 14px;
  }

  .store-showcase-copy {
    padding: 16px;
  }

  .store-showcase-kicker {
    font-size: 0.72rem;
    padding: 7px 12px;
  }

  .store-showcase-copy p {
    font-size: 0.96rem;
  }

  .store-showcase-copy h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.6rem);
  }

  .store-showcase-detail {
    line-height: 1.5;
  }

  .locate-btn,
  .store-call-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .contact-card,
  .lead-preview {
    padding: 12px;
  }

  .floating-whatsapp {
    width: 44px;
    height: 44px;
    right: 10px;
    bottom: 10px;
  }

  .floating-whatsapp svg {
    width: 22px;
    height: 22px;
  }

  .nav {
    padding: 8px 0;
  }

  .nav-links a {
    font-size: 0.82rem;
    padding: 6px 10px;
  }
}

/* Touch-friendly enhancements */
@media (max-width: 900px) {
  /* Increase touch targets */
  .btn,
  .btn-sm,
  .row-btn,
  .locate-btn,
  .store-call-btn {
    min-height: 44px;
    min-width: 44px;
  }

  /* Better spacing for touch interactions */
  .cat-card,
  .range-item,
  .show-card,
  .brand-logo-card {
    padding: 12px;
    margin: 4px 0;
  }

  /* Prevent zoom on form inputs */
  input,
  select {
    font-size: 16px;
  }

  /* Improve scroll behavior */
  .nav-links {
    -webkit-overflow-scrolling: touch;
  }

  /* Better text selection */
  body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 520px) {
  section {
    padding: 24px 0;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding-top: 112px;
  }

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

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

  .store-showcase-banner {
    min-height: 360px;
  }

  .store-showcase-shell {
    padding: 10px;
  }

  .store-showcase-copy p {
    font-size: 1.05rem;
  }

  .store-showcase-copy h2 {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .store-highlight-card {
    padding: 15px;
  }

  td {
    grid-template-columns: 92px 1fr;
  }
}
