:root {
  --sb-canopy: #2f5b43;
  --sb-canopy-dark: #244430;
  --sb-mist: #f4f1e8;
  --sb-volcanic: #7b4e35;
  --sb-coral: #e37d5c;
  --sb-sun: #ffb55a;
  --sb-charcoal: #1f2622;
  --sb-font-heading: 'Rubik', 'Montserrat', sans-serif;
  --sb-font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--sb-font-body);
  color: var(--sb-charcoal);
  background: var(--sb-mist);
}

a {
  color: var(--sb-canopy);
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--sb-coral);
}

.btn {
  border-radius: 999px;
  font-family: var(--sb-font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
}

.btn-primary {
  background: var(--sb-canopy);
  border-color: var(--sb-canopy);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--sb-coral);
  border-color: var(--sb-coral);
}

.btn-secondary {
  background: transparent;
  border-color: var(--sb-canopy);
  color: var(--sb-canopy);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--sb-canopy);
  color: #fff;
}

#announcement-bar {
  background: var(--sb-canopy);
  color: var(--sb-mist);
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

#announcement-bar .fourteen-forty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

#announcement-bar .eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

#announcement-bar .message {
  font-family: var(--sb-font-heading);
}

#announcement-bar .cta {
  color: var(--sb-mist);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.1rem;
}

#announcement-bar .cta:hover {
  border-color: #fff;
}

#site-menu {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(31, 38, 34, 0.1);
}

#site-menu .navbar {
  font-family: var(--sb-font-heading);
  min-height: 80px;
}

#site-menu .navbar-header {
  align-items: center;
}

#site-menu .logotype img {
  max-height: 60px;
}

#site-menu .navbar-search input[type="search"] {
  border-radius: 999px;
  background: rgba(47, 91, 67, 0.08);
  border: 1px solid rgba(47, 91, 67, 0.12);
  padding-inline: 1.25rem;
}

#site-menu .navbar-nav > li > a.nav-link {
  color: var(--sb-canopy-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

#site-menu .navbar-nav > li.highlight > a.nav-link {
  color: var(--sb-coral);
}

#site-menu .navbar-nav > li > a.nav-link:hover,
#site-menu .navbar-nav > li > a.nav-link:focus {
  color: var(--sb-coral);
}

.navbar-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1.5rem;
  font-size: 0.75rem;
}

.navbar-meta .meta-pill {
  background: rgba(47, 91, 67, 0.12);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
}

.navbar-meta .meta-tagline {
  color: rgba(31, 38, 34, 0.72);
  letter-spacing: 0.05em;
}

.shrooms-hero {
  position: relative;
  display: grid;
  gap: 2rem;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.shrooms-hero .hero-media {
  position: relative;
  min-height: 260px;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(31, 38, 34, 0.15);
}

.shrooms-hero .hero-media.no-media {
  background-image: radial-gradient(circle at 20% 20%, rgba(227, 125, 92, 0.4), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(47, 91, 67, 0.5), transparent 60%),
    linear-gradient(135deg, #f7f0e5 0%, #d9e4d1 100%);
}

.shrooms-hero .hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 38, 30, 0.45), rgba(26, 38, 30, 0));
}

.shrooms-hero .hero-media-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  color: #fff;
  max-width: 70%;
  font-size: 0.95rem;
  line-height: 1.4;
}

.shrooms-hero .hero-content {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.shrooms-hero .hero-eyebrow {
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--sb-coral);
}

.shrooms-hero .hero-title {
  font-family: var(--sb-font-heading);
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  line-height: 1.05;
  color: var(--sb-canopy-dark);
}

.shrooms-hero .hero-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(31, 38, 34, 0.85);
}

.shrooms-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.shrooms-hero .hero-gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.shrooms-hero .gallery-card {
  flex: 0 0 160px;
  display: grid;
  gap: 0.5rem;
  text-align: left;
  color: inherit;
}

.shrooms-hero .gallery-media {
  display: block;
  width: 100%;
  padding-top: 70%;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(31, 38, 34, 0.18);
}

.shrooms-hero .gallery-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(31, 38, 34, 0.7);
}

.shrooms-section .card-header {
  border: none;
  background: transparent;
  padding-bottom: 0;
}

.shrooms-section .card-title {
  font-family: var(--sb-font-heading);
  font-size: 1.6rem;
  color: var(--sb-canopy-dark);
}

.shrooms-section .card-lede {
  font-size: 0.95rem;
  color: rgba(31, 38, 34, 0.7);
  margin-top: 0.5rem;
}

#box-campaign-products .listing.products .product,
#box-popular-products .listing.products .product,
#box-latest-products .listing.products .product {
  border-radius: 22px;
  border: 1px solid rgba(31, 38, 34, 0.08);
  box-shadow: 0 12px 30px rgba(31, 38, 34, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#box-campaign-products .listing.products .product:hover,
#box-popular-products .listing.products .product:hover,
#box-latest-products .listing.products .product:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(31, 38, 34, 0.12);
}

#box-campaign-products .listing.products .product .btn,
#box-popular-products .listing.products .product .btn,
#box-latest-products .listing.products .product .btn {
  font-size: 0.8rem;
}

.shrooms-partners .card-header {
  border: none;
  text-align: center;
}

.shrooms-partners .card-title {
  font-family: var(--sb-font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  color: rgba(31, 38, 34, 0.7);
}

.shrooms-partners .card-lede {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: rgba(31, 38, 34, 0.55);
}

#box-newsletter-subscribe {
  background: linear-gradient(135deg, rgba(47, 91, 67, 0.12), rgba(227, 125, 92, 0.12));
  border: 1px solid rgba(31, 38, 34, 0.09);
  border-radius: 28px;
  padding: 3rem 1.5rem;
}

#box-newsletter-subscribe h2 {
  font-family: var(--sb-font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sb-canopy-dark);
}

#box-newsletter-subscribe p {
  max-width: 480px;
  margin: 0.75rem auto 1.5rem;
  color: rgba(31, 38, 34, 0.72);
}

#box-newsletter-subscribe .input-group input[type="text"],
#box-newsletter-subscribe .input-group input[type="email"] {
  border-radius: 999px 0 0 999px;
  padding-inline: 1.25rem;
}

.shrooms-footer {
  background: #101b15;
  color: rgba(244, 241, 232, 0.85);
  padding: 4rem 1.5rem 3rem;
  margin-top: 4rem;
}

.shrooms-footer a {
  color: rgba(244, 241, 232, 0.85);
}

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

.shrooms-footer .footer-grid {
  display: grid;
  gap: 2.5rem;
}

.shrooms-footer .footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shrooms-footer .footer-title {
  font-family: var(--sb-font-heading);
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
}

.shrooms-footer .footer-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.shrooms-footer .footer-heading {
  font-family: var(--sb-font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.shrooms-footer .footer-body {
  color: rgba(244, 241, 232, 0.75);
  line-height: 1.6;
}

.shrooms-footer .footer-contact li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.shrooms-footer .footer-contact .fa {
  margin-top: 0.15rem;
}

.shrooms-footer .footer-cta {
  align-self: flex-start;
  border: 1px solid rgba(244, 241, 232, 0.4);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.shrooms-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

#copyright {
  background: #0c140f;
  color: rgba(244, 241, 232, 0.6);
  padding: 1.5rem 1rem;
}

#copyright a {
  color: rgba(244, 241, 232, 0.75);
}

@media (min-width: 768px) {
  .shrooms-hero {
    padding: 0 2rem;
  }

  .shrooms-hero .hero-media {
    min-height: 360px;
  }
}

@media (min-width: 992px) {
  .shrooms-hero {
    grid-template-columns: minmax(300px, 1fr) minmax(320px, 1fr);
    align-items: center;
  }

  .shrooms-hero .hero-content {
    order: 1;
  }

  .shrooms-hero .hero-media {
    order: 2;
  }

  .shrooms-footer .footer-grid {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
  }
}

@media (max-width: 767px) {
  .navbar-meta {
    display: none;
  }

  .shrooms-hero {
    margin-top: 2rem;
  }

  #announcement-bar .fourteen-forty {
    justify-content: center;
    text-align: center;
  }
}
