:root {
  --color-ink: #1f2722;
  --color-muted: #697169;
  --color-line: #e2ded5;
  --color-surface: #ffffff;
  --color-warm: #f5f1e9;
  --color-stone: #eceff0;
  --color-forest: #344234;
  --color-moss: #68765a;
  --color-sand: #d7c3a3;
  --shadow-soft: 0 16px 40px rgba(31, 39, 34, 0.08);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

p {
  color: var(--color-muted);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  font-size: 1.1rem;
}

input,
textarea,
button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 76px 0;
}

.section--warm {
  background: var(--color-warm);
}

.section--compact {
  padding: 48px 0;
}

.narrow-content {
  max-width: 820px;
}

.announcement-bar {
  display: flex;
  justify-content: center;
  padding: 9px 16px;
  color: #fff;
  background: var(--color-forest);
  font-size: 0.86rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--color-forest);
  border-radius: 50%;
  font-size: 0.82rem;
}

.site-brand__text {
  font-size: 1.04rem;
}

.primary-nav__list,
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav a {
  color: #303830;
  font-size: 0.96rem;
  font-weight: 650;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}

.cart-link__count {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  color: #fff;
  background: var(--color-moss);
  border-radius: 50%;
  font-size: 0.72rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 120px));
  overflow: hidden;
  color: #fff;
  background: #1d251f;
}

.hero__image,
.hero__image::after,
.hero__image img {
  position: absolute;
  inset: 0;
}

.hero__image::after {
  content: "";
  background: linear-gradient(90deg, rgba(20, 28, 22, 0.78), rgba(20, 28, 22, 0.32) 54%, rgba(20, 28, 22, 0.12));
}

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

.hero__content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 88px 0 120px;
}

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

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

.hero .eyebrow,
.page-hero .eyebrow,
.wholesale-band .eyebrow {
  color: var(--color-sand);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  color: #fff;
  background: var(--color-forest);
  border: 1px solid var(--color-forest);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.button--ghost {
  color: var(--color-forest);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.button--small {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 0.88rem;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading--split > a {
  color: var(--color-forest);
  font-weight: 800;
}

.category-grid,
.activity-grid,
.product-grid,
.post-grid,
.guide-grid,
.trust-grid {
  display: grid;
  gap: 20px;
}

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

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

.guide-grid,
.post-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.category-tile,
.activity-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-stone);
}

.category-tile img,
.activity-tile img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-tile:hover img,
.activity-tile:hover img {
  transform: scale(1.04);
}

.category-tile span,
.activity-tile span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(31, 39, 34, 0.82);
  border-radius: var(--radius);
  font-weight: 800;
}

.product-card,
.guide-card,
.trust-item {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.product-card {
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-card__media {
  display: block;
  background: var(--color-stone);
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card__body {
  padding: 16px;
}

.product-card__body p {
  min-height: 52px;
  margin: 0 0 14px;
  font-size: 0.94rem;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  color: var(--color-forest);
  font-weight: 850;
}

.rating {
  color: #b47b2b;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
}

.activity-tile {
  min-height: 320px;
}

.trust-item {
  padding: 22px;
}

.trust-item__icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  background: var(--color-sand);
  border-radius: 50%;
  box-shadow: inset 0 0 0 9px var(--color-warm);
}

.wholesale-band {
  color: #fff;
  background: var(--color-forest);
}

.wholesale-band p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
}

.wholesale-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.guide-card {
  overflow: hidden;
}

.guide-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--color-stone);
}

.guide-card > div {
  padding: 18px;
}

.guide-card h2,
.guide-card h3 {
  font-size: 1.2rem;
}

.guide-card a {
  color: var(--color-forest);
  font-weight: 800;
}

.newsletter-section {
  padding: 58px 0;
  background: var(--color-stone);
}

.newsletter-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  width: min(100%, 520px);
}

.newsletter-form input,
.inquiry-form input,
.inquiry-form textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.site-footer {
  padding: 64px 0 24px;
  color: #fff;
  background: #1f2722;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h2 {
  font-size: 1rem;
}

.site-brand--footer .site-brand__mark {
  background: var(--color-sand);
  color: var(--color-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 44px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  color: #fff;
  background: #1f7a4d;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(22, 90, 56, 0.28);
  font-weight: 850;
}

.page-hero {
  padding: 96px 0;
  color: #fff;
  background: linear-gradient(rgba(31, 39, 34, 0.78), rgba(31, 39, 34, 0.78)), var(--color-forest);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.wholesale-grid,
.form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.clean-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.clean-list li {
  padding: 14px 16px;
  background: var(--color-warm);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font-weight: 750;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.inquiry-form textarea,
.inquiry-form button {
  grid-column: 1 / -1;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-header {
  margin-bottom: 32px;
}

.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.entry-content > * {
  margin-top: 0;
}

.entry-content h2 {
  margin-top: 36px;
  font-size: 1.8rem;
}

.product-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.product-filter button {
  padding: 10px 14px;
  color: var(--color-forest);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.product-filter button.is-active,
.product-filter button:hover {
  color: #fff;
  background: var(--color-forest);
  border-color: var(--color-forest);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  overflow: hidden;
  padding-bottom: 16px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.woocommerce div.product div.images img {
  border-radius: var(--radius);
  background: var(--color-stone);
}

.woocommerce div.product .summary {
  padding: 24px;
  background: var(--color-warm);
  border-radius: var(--radius);
}

.product-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.product-trust-row span {
  padding: 10px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.product-extra-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.product-info-panels {
  display: grid;
  gap: 10px;
  margin: 34px 0;
}

.product-info-panels details {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.product-info-panels summary {
  color: var(--color-forest);
  cursor: pointer;
  font-weight: 850;
}

.single-article__media {
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: var(--radius);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
    order: 3;
  }

  .primary-nav {
    position: absolute;
    inset: 100% 16px auto;
    display: none;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav__list {
    display: grid;
    gap: 12px;
  }

  .cart-link {
    margin-left: auto;
  }

  .category-grid,
  .activity-grid,
  .product-grid,
  .guide-grid,
  .post-grid,
  .trust-grid,
  .footer-grid,
  .wholesale-grid,
  .form-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .wholesale-band__inner,
  .newsletter-section__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 54px 0;
  }

  .site-header__inner {
    gap: 12px;
    min-height: 66px;
  }

  .site-brand__text {
    display: none;
  }

  .cart-link__icon {
    font-size: 0;
  }

  .cart-link__icon::before {
    content: "Cart";
    font-size: 0.9rem;
  }

  .hero {
    min-height: 640px;
  }

  .hero__image::after {
    background: linear-gradient(rgba(20, 28, 22, 0.72), rgba(20, 28, 22, 0.46));
  }

  .hero__content {
    padding: 70px 0 92px;
  }

  .button-row,
  .newsletter-form,
  .footer-bottom {
    flex-direction: column;
  }

  .button,
  .button--ghost,
  .newsletter-form input {
    width: 100%;
  }

  .category-grid,
  .activity-grid,
  .product-grid,
  .guide-grid,
  .post-grid,
  .trust-grid,
  .footer-grid,
  .wholesale-grid,
  .form-layout,
  .inquiry-form,
  .product-trust-row {
    grid-template-columns: 1fr;
  }

  .section-heading--split,
  .wholesale-band__inner,
  .newsletter-section__inner {
    display: block;
  }

  .category-tile,
  .activity-tile,
  .category-tile img,
  .activity-tile img {
    min-height: 220px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}
