:root {
  --green-950: #092313;
  --green-900: #123b22;
  --green-800: #19522f;
  --green-700: #1d7a3a;
  --green-600: #2f9e55;
  --green-100: #e9f8ee;
  --green-50: #f5fbf6;
  --lime: #b9dc4b;
  --mint: #8ee0b7;
  --orange: #f28f3b;
  --cream: #fffaf0;
  --ink: #172019;
  --muted: #617268;
  --line: #dceadf;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(9, 35, 19, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.loader {
  align-items: center;
  background: var(--white);
  display: grid;
  inset: 0;
  justify-items: center;
  position: fixed;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 999;
}

.loader span {
  animation: spin 0.8s linear infinite;
  border: 4px solid var(--green-100);
  border-top-color: var(--green-700);
  border-radius: 50%;
  height: 48px;
  width: 48px;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.topbar {
  align-items: center;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  gap: 20px;
  justify-content: center;
  min-height: 38px;
  padding: 8px 5%;
  text-align: center;
}

.topbar a {
  color: var(--mint);
  font-weight: 800;
}

.navbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  height: 78px;
  justify-content: space-between;
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
}

.logo {
  align-items: center;
  color: var(--green-950);
  display: inline-flex;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo-image {
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(29, 122, 58, 0.2);
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
  width: 50px;
}

.logo-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-950));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(29, 122, 58, 0.22);
  color: var(--white);
  display: inline-flex;
  font-size: 0.82rem;
  height: 42px;
  justify-content: center;
  letter-spacing: 0;
  width: 42px;
}

.logo-text span {
  color: var(--green-700);
}

.footer-logo .logo-image {
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: none;
}

.footer-logo .logo-mark {
  background: var(--white);
  color: var(--green-800);
  box-shadow: none;
}

.footer-logo .logo-text,
.footer-logo .logo-text span {
  color: var(--white);
}

.nav-panel {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 26px;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-weight: 800;
  padding: 24px 0;
  position: relative;
}

.nav-links a::after {
  background: var(--green-700);
  bottom: 18px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-800);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.search-form {
  align-items: center;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  gap: 8px;
  padding: 6px;
  width: min(360px, 36vw);
}

.search-form input {
  background: transparent;
  border: 0;
  color: var(--ink);
  min-width: 0;
  outline: 0;
  padding: 9px 12px;
  width: 100%;
}

.search-form button,
.btn,
.add-cart {
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-form button {
  background: var(--green-700);
  border-radius: 999px;
  color: var(--white);
  padding: 9px 16px;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
}

.btn.primary {
  background: var(--green-700);
  box-shadow: 0 12px 28px rgba(29, 122, 58, 0.24);
  color: var(--white);
}

.btn.secondary {
  background: var(--white);
  color: var(--green-800);
}

.btn:hover,
.add-cart:hover,
.search-form button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  position: relative;
  width: 42px;
}

.nav-toggle span {
  background: var(--green-900);
  border-radius: 20px;
  display: block;
  height: 3px;
  margin: 6px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 24px;
}

.hero,
.page-hero {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.hero {
  align-items: end;
  background: linear-gradient(90deg, rgba(9, 35, 19, 0.88), rgba(25, 82, 47, 0.46)), url("Dev Super Store.png") center / cover;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  min-height: calc(100vh - 116px);
  padding: 9vw 5% 7vw;
}

.hero-content {
  color: var(--white);
  max-width: 780px;
}

.eyebrow {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.newsletter .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3 {
  color: var(--green-950);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1,
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  max-width: 13ch;
}

.hero p,
.page-hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin-top: 22px;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-deal {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.hero-deal strong,
.hero-deal span,
.hero-deal a {
  display: block;
}

.hero-deal strong {
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-deal span {
  color: var(--green-950);
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.15;
  margin: 8px 0 18px;
}

.hero-deal a,
.text-link {
  color: var(--green-700);
  font-weight: 900;
}

.section,
.newsletter,
.offer-slider {
  padding: 90px 5%;
}

.section-head {
  margin: 0 auto 42px;
  max-width: 760px;
  text-align: center;
}

.section-head h2,
.why-copy h2,
.newsletter h2,
.contact-info h2,
.contact-form h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-head p:not(.eyebrow),
.why-copy p,
.newsletter p,
.contact-info p {
  color: var(--muted);
  margin-top: 16px;
}

.offer-slider {
  background: var(--green-950);
  color: var(--white);
  padding-bottom: 44px;
  padding-top: 44px;
}

.offer-slide {
  display: none;
  margin: 0 auto;
  max-width: 1050px;
  text-align: center;
}

.offer-slide.active {
  animation: fadeUp 0.45s ease both;
  display: block;
}

.offer-slide p {
  color: var(--mint);
  font-weight: 900;
  text-transform: uppercase;
}

.offer-slide h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 3rem);
  margin: 10px auto 18px;
  max-width: 900px;
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.slider-dots button {
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 9px;
  width: 26px;
}

.slider-dots button.active {
  background: var(--lime);
}

.product-grid,
.category-grid,
.testimonial-grid,
.team-grid,
.service-grid,
.process-grid,
.gallery-grid,
.values {
  display: grid;
  gap: 22px;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.category-card,
.testimonial,
.team-card,
.service-card,
.process-grid article,
.value-card,
.contact-form,
.contact-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(9, 35, 19, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover,
.category-card:hover,
.testimonial:hover,
.team-card:hover,
.service-card:hover,
.process-grid article:hover,
.value-card:hover {
  border-color: rgba(47, 158, 85, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 1.18 / 1;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.product-card div {
  padding: 20px;
}

.product-card span,
.service-card span,
.value-card span {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-top: 8px;
}

.product-card p,
.category-card p,
.testimonial p,
.service-card p,
.process-grid p,
.value-card p,
.team-card p {
  color: var(--muted);
  margin-top: 10px;
}

.product-card strong {
  color: var(--green-800);
  display: block;
  font-size: 1.25rem;
  margin: 16px 0;
}

.add-cart {
  background: var(--green-950);
  border-radius: 999px;
  color: var(--white);
  padding: 11px 16px;
  width: 100%;
}

.categories,
.testimonials,
.process,
.gallery-section,
.local-showcase {
  background: var(--green-50);
}

.category-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.category-card {
  min-height: 160px;
  padding: 24px;
}

.category-card span {
  color: var(--green-950);
  display: block;
  font-size: 1.1rem;
  font-weight: 950;
}

.why,
.split,
.contact-layout {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1fr;
}

.feature-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: min(520px, 70vh);
  object-fit: cover;
  width: 100%;
}

.counter-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.counter-row div {
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.counter-row strong {
  color: var(--green-700);
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.counter-row span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  margin-top: 8px;
}

.testimonial-grid,
.team-grid,
.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial,
.service-card,
.value-card,
.process-grid article,
.contact-info,
.contact-form {
  padding: 28px;
}

.testimonial cite {
  color: var(--green-800);
  display: block;
  font-style: normal;
  font-weight: 900;
  margin-top: 18px;
}

.newsletter {
  align-items: center;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--white);
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr minmax(320px, 520px);
}

.newsletter h2 {
  color: var(--white);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.82);
}

.newsletter-form {
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  padding: 10px;
}

.newsletter-form input {
  border: 0;
  min-width: 0;
  outline: 0;
  padding: 0 12px;
  width: 100%;
}

.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.76);
  display: grid;
  gap: 32px;
  grid-template-columns: 1.7fr 0.8fr 1.2fr 0.8fr;
  padding: 58px 5%;
}

.site-footer > div:first-child {
  max-width: 420px;
}

.footer-logo,
.site-footer h2 {
  color: var(--white);
}

.site-footer p,
.site-footer a {
  display: block;
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 22px;
  text-align: center;
}

.site-footer a:hover {
  color: var(--mint);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: flex;
  font-size: 0.86rem;
  font-weight: 950;
  height: 40px;
  justify-content: center;
  margin: 0;
  text-transform: uppercase;
  width: 40px;
}

.scroll-top {
  background: var(--green-700);
  border: 0;
  border-radius: 999px;
  bottom: 22px;
  box-shadow: var(--shadow);
  color: var(--white);
  cursor: pointer;
  font-weight: 950;
  opacity: 0;
  padding: 12px 16px;
  pointer-events: none;
  position: fixed;
  right: 22px;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 90;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-hero {
  background: linear-gradient(90deg, rgba(9, 35, 19, 0.9), rgba(25, 82, 47, 0.58)), url("https://images.unsplash.com/photo-1604719312566-8912e9227c6a?auto=format&fit=crop&w=1800&q=80") center / cover;
  padding: 120px 5%;
}

.about-hero {
  background-image: linear-gradient(90deg, rgba(9, 35, 19, 0.9), rgba(25, 82, 47, 0.54)), url("Trusted local neighborhood store.png");
}

.services-hero {
  background-image: linear-gradient(90deg, rgba(9, 35, 19, 0.9), rgba(25, 82, 47, 0.58)), url("https://images.unsplash.com/photo-1578916171728-46686eac8d58?auto=format&fit=crop&w=1800&q=80");
}

.contact-hero {
  background-image: linear-gradient(90deg, rgba(9, 35, 19, 0.9), rgba(25, 82, 47, 0.58)), url("https://images.unsplash.com/photo-1534723452862-4c874018d66d?auto=format&fit=crop&w=1800&q=80");
}

.values {
  background: var(--green-50);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline-list {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 920px;
}

.timeline-list article {
  border-left: 4px solid var(--green-700);
  padding: 4px 0 4px 24px;
}

.timeline-list strong {
  color: var(--orange);
}

.team-card {
  overflow: hidden;
  text-align: center;
}

.team-card img {
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  width: 100%;
}

.team-card h3 {
  margin-top: 18px;
}

.team-card p {
  margin-bottom: 22px;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(9, 35, 19, 0.08);
  object-fit: cover;
  width: 100%;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card:nth-child(7) {
  grid-column: span 2;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid strong {
  align-items: center;
  background: var(--green-700);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 1.2rem;
  height: 46px;
  justify-content: center;
  margin-bottom: 16px;
  width: 46px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.info-list article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.info-list strong {
  color: var(--green-800);
}

.contact-socials a {
  background: var(--green-700);
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  color: var(--green-950);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px var(--green-100);
}

.map-section {
  height: 420px;
}

.map-section iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .product-grid,
  .category-grid,
  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:nth-child(7) {
    grid-column: span 2;
  }

  .hero,
  .why,
  .split,
  .contact-layout,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    gap: 2px;
  }

  .navbar {
    height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-panel {
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    left: 0;
    padding: 20px 5%;
    position: absolute;
    right: 0;
    top: 70px;
  }

  .nav-panel.open {
    display: grid;
    gap: 18px;
  }

  .nav-links {
    display: grid;
    gap: 8px;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
  }

  .nav-links a::after {
    bottom: 4px;
  }

  .search-form {
    width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .testimonial-grid,
  .team-grid,
  .process-grid,
  .site-footer,
  .values {
    grid-template-columns: 1fr;
  }

  .counter-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .section,
  .newsletter,
  .offer-slider,
  .page-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 82px 20px 56px;
  }

  .hero-actions,
  .newsletter-form {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .newsletter-form .btn {
    width: 100%;
  }

  .product-grid,
  .category-grid,
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(7) {
    grid-column: span 1;
  }

  .page-hero {
    padding-top: 88px;
    padding-bottom: 88px;
  }
}
/* General store image additions */
.categories,
.store-items,
.contact-products {
  background: var(--green-50);
}

.category-card {
  min-height: 220px;
  overflow: hidden;
  padding: 0 0 22px;
}

.category-card img,
.service-card img,
.contact-store-image,
.contact-product-strip img,
.store-items-grid img {
  display: block;
  height: 150px;
  object-fit: cover;
  width: 100%;
}

.gallery-grid .gallery-wide {
  aspect-ratio: 2.1 / 1;
  grid-column: span 2;
}

.gallery-grid .gallery-logo {
  background: var(--white);
  object-fit: contain;
  padding: 18px;
}

.category-card span,
.category-card p {
  padding-left: 20px;
  padding-right: 20px;
}

.category-card span {
  margin-top: 18px;
}

.service-card {
  overflow: hidden;
  padding: 0 0 28px;
}

.service-card img {
  height: 170px;
  margin-bottom: 22px;
}

.service-card span,
.service-card h3,
.service-card p {
  display: block;
  padding-left: 24px;
  padding-right: 24px;
}

.store-items-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-items-grid figure {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(9, 35, 19, 0.07);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.store-items-grid figure:hover {
  border-color: rgba(47, 158, 85, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.store-items-grid img {
  height: 260px;
}

.store-items-grid figcaption {
  color: var(--green-950);
  font-weight: 950;
  padding: 18px 20px 20px;
}

.contact-store-image {
  border-radius: var(--radius);
  height: 230px;
  margin-bottom: 24px;
}

.contact-product-strip {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-product-strip img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 260px;
}

.showcase-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.35fr 1fr;
}

.showcase-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(9, 35, 19, 0.07);
  overflow: hidden;
}

.showcase-card-large {
  grid-row: span 2;
}

.showcase-card img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  width: 100%;
}

.showcase-card-large img {
  min-height: 590px;
}

.showcase-card figcaption {
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-950);
  font-weight: 950;
  padding: 16px 18px;
}

@media (max-width: 1120px) {
  .store-items-grid,
  .contact-product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .showcase-card-large {
    grid-row: auto;
  }

  .showcase-card-large img,
  .showcase-card img {
    min-height: 320px;
  }
}

@media (max-width: 860px) {
  .store-items-grid,
  .contact-product-strip {
    grid-template-columns: 1fr;
  }

  .gallery-grid .gallery-wide {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  .store-items-grid,
  .contact-product-strip {
    grid-template-columns: 1fr;
  }

  .showcase-card-large img,
  .showcase-card img {
    min-height: 240px;
  }
}
