:root {
  --wh-cream: #fbf3df;
  --wh-cream-2: #fffaf0;
  --wh-gold: #e7b84d;
  --wh-gold-dark: #c9962e;
  --wh-brown: #37211d;
  --wh-brown-2: #5a3a31;
  --wh-ink: #171411;
  --wh-muted: #766f68;
  --wh-line: rgba(55, 33, 29, 0.16);
  --wh-white: #ffffff;
  --wh-green: #2f6d55;
  --wh-shadow: 0 24px 70px rgba(55, 33, 29, 0.12);
  --wh-radius: 24px;
  --wh-radius-sm: 14px;
  --wh-container: min(1180px, calc(100vw - 40px));
  --wh-serif: Georgia, "Times New Roman", serif;
  --wh-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.winnerhorse-2026 {
  margin: 0;
  color: var(--wh-ink);
  background: var(--wh-cream-2);
  font-family: var(--wh-sans);
  font-size: 16px;
  line-height: 1.6;
}

body.winnerhorse-2026 a {
  color: inherit;
  text-decoration: none;
}

body.winnerhorse-2026 img {
  height: auto;
  max-width: 100%;
}

.wh-container {
  width: var(--wh-container);
  margin-inline: auto;
}

.wh-section {
  padding: clamp(64px, 8vw, 118px) 0;
}

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

.wh-section--white {
  background: var(--wh-white);
}

.wh-section--dark {
  color: var(--wh-cream-2);
  background: var(--wh-brown);
}


.wh-title,
.wh-page-title h1,
.wh-section h1,
.wh-section h2 {
  margin: 0;
  color: var(--wh-brown);
  font-family: var(--wh-serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.wh-title {
  font-size: clamp(3.4rem, 8vw, 8.8rem);
}

.wh-section h2,
.wh-page-title h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.wh-section h3 {
  margin: 0;
  color: var(--wh-brown);
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.12;
}


.wh-button,
.button,
.woocommerce a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid var(--wh-gold);
  border-radius: 999px;
  color: var(--wh-brown);
  background: var(--wh-gold);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(231, 184, 77, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.wh-button:hover,
.button:hover,
.woocommerce a.button:hover {
  color: var(--wh-brown);
  background: #f0c96c;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(231, 184, 77, 0.3);
}

.wh-button--ghost {
  color: var(--wh-brown);
  background: transparent;
  box-shadow: none;
}

.wh-button--light {
  color: var(--wh-brown);
  background: var(--wh-cream-2);
  border-color: var(--wh-cream-2);
}

.wh-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wh-brown);
  font-weight: 850;
}

.wh-link-arrow::after {
  content: "";
  width: 34px;
  height: 12px;
  background:
    linear-gradient(currentColor, currentColor) left 50% / 28px 2px no-repeat,
    linear-gradient(45deg, transparent 47%, currentColor 49% 55%, transparent 57%) right 50% / 11px 11px no-repeat;
}

.wh-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(55, 33, 29, 0.08);
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(16px);
}

.wh-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 82px;
}

.wh-brand {
  display: inline-flex;
  align-items: center;
}

.wh-brand img,
.custom-logo-link img {
  display: block;
  width: 118px;
  max-height: 70px;
  object-fit: contain;
}

.wh-nav {
  justify-self: center;
}

.winnerhorse-menu,
.wh-footer__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.winnerhorse-menu a {
  color: var(--wh-brown);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.winnerhorse-menu a:hover {
  color: var(--wh-gold-dark);
}

.wh-header__cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--wh-cream-2);
  background: var(--wh-brown);
  font-size: 0.9rem;
  font-weight: 850;
}

.wh-nav-toggle {
  display: none !important;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--wh-line);
  border-radius: 999px;
  background: var(--wh-white);
}

.wh-nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--wh-brown);
}

.wh-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--wh-cream-2) 0 50%, var(--wh-gold) 50% 100%);
}


.wh-check {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: var(--wh-white);
  background: var(--wh-brown);
  font-size: 1rem;
  line-height: 1;
}


.wh-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}


.wh-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
}


.wh-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}


.wh-product-grid,
.products.wh-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.wh-product-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.wh-product-card__media {
  display: grid;
  place-items: center;
  min-height: 270px;
  background: linear-gradient(180deg, var(--wh-cream) 0%, var(--wh-white) 100%);
}

.wh-product-card__media img {
  max-width: 82%;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(55, 33, 29, 0.14));
}

.wh-product-card__body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.wh-product-card h2,
.wh-product-card h3 {
  margin: 0;
  color: var(--wh-brown);
  font-size: 1.35rem;
  line-height: 1.15;
}

.wh-product-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
}

.wh-cta-band {
  color: var(--wh-cream-2);
  background:
    linear-gradient(90deg, rgba(55, 33, 29, 0.92), rgba(55, 33, 29, 0.82)),
    url("../img/horse-field.jpg") center / cover no-repeat;
}

.wh-cta-band h2,
.wh-section--dark h2,
.wh-section--dark h3 {
  color: var(--wh-cream-2);
}


.wh-page-title {
  padding: clamp(70px, 10vw, 128px) 0 clamp(38px, 7vw, 76px);
  background: linear-gradient(90deg, var(--wh-cream-2), var(--wh-cream));
}

.wh-page-title p {
  max-width: 760px;
}


.wh-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}


.wh-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 28px;
}


.wh-contact-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.wh-contact-form {
  display: grid;
  gap: 14px;
}

.wh-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--wh-brown);
  font-weight: 800;
}

.wh-contact-form input,
.wh-contact-form textarea,
.wh-search-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--wh-line);
  border-radius: 12px;
  color: var(--wh-ink);
  background: var(--wh-white);
  font: inherit;
}

.wh-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.wh-form-status {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(47, 109, 85, 0.12);
  color: var(--wh-green);
  font-weight: 800;
}

.wh-footer {
  color: var(--wh-cream-2);
  background: var(--wh-brown);
}

.wh-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 44px;
  padding: 56px 0;
}

.wh-footer h2 {
  margin: 0 0 16px;
  color: var(--wh-cream-2);
  font-size: 1rem;
  text-transform: uppercase;
}

.wh-footer p,
.wh-footer li,
.wh-footer a {
  color: rgba(255, 250, 240, 0.74);
}

.wh-footer__list,
.wh-footer__nav {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.wh-footer__bottom {
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  padding: 18px 0;
}

.wh-footer__bottom .wh-container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.wh-floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--wh-white);
  background: var(--wh-green);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(47, 109, 85, 0.32);
}

.wh-single-product {
  padding: clamp(48px, 7vw, 92px) 0;
}

.wh-single-product__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
}

.wh-single-product__media {
  display: grid;
  place-items: center;
  min-height: 520px;
  border-radius: 44px;
  background: linear-gradient(180deg, var(--wh-cream), var(--wh-white));
  box-shadow: var(--wh-shadow);
}

.wh-single-product__media img {
  max-width: 86%;
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(55, 33, 29, 0.16));
}

.wh-benefit-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.wh-benefit-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  color: var(--wh-muted);
  font-weight: 750;
}

.wh-product-tabs {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.wh-product-tabs section {
  padding: 28px;
  border: 1px solid var(--wh-line);
  border-radius: var(--wh-radius);
  background: var(--wh-white);
}

.woocommerce-notices-wrapper,
.woocommerce-result-count,
.woocommerce-ordering,
.price,
.add_to_cart_button,
.single_add_to_cart_button,
.quantity,
form.cart {
  display: none !important;
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

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

  .wh-nav-toggle {
    display: block !important;
  }

  .wh-header__cta {
    display: none;
  }

  .wh-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    padding: 24px;
    border-bottom: 1px solid var(--wh-line);
    background: var(--wh-cream-2);
  }

  .wh-menu-open .wh-nav {
    display: block;
  }

  .winnerhorse-menu {
    display: grid;
    gap: 18px;
  }

  .wh-hero {
    background: linear-gradient(180deg, var(--wh-cream-2) 0 52%, var(--wh-gold) 52% 100%);
  }


}

@media (max-width: 680px) {
  :root {
    --wh-container: min(100vw - 28px, 1180px);
  }

  .wh-section {
    padding: 58px 0;
  }

  .wh-title {
    font-size: clamp(3.2rem, 18vw, 4.8rem);
  }


  .wh-product-card__actions,
  .wh-footer__bottom .wh-container {
    align-items: flex-start;
    flex-direction: column;
  }


  .wh-single-product__media {
    min-height: 360px;
  }
}


.wh-header__cta {
  color: var(--wh-cream-2) !important;
}


@media (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
  }


}


@media (max-width: 980px) {
  .wh-nav-toggle {
    border-color: var(--wh-brown) !important;
    background: var(--wh-brown) !important;
  }

  .wh-nav-toggle span:not(.screen-reader-text) {
    background: var(--wh-cream-2) !important;
  }
}
