:root {
  --background: #ffffff;
  --foreground: #27313d;
  --primary: #275485;
  --primary-soft: #edf4fd;
  --secondary: #f5f8fc;
  --accent: #f8a117;
  --accent-strong: #ea9306;
  --whatsapp: #6bbf3f;
  --sale: #e23650;
  --new: #39a9d5;
  --border: #dbe4ef;
  --muted: #667286;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-sm: 0 8px 22px rgba(20, 35, 58, 0.08);
  --shadow-lg: 0 22px 48px rgba(18, 33, 54, 0.15);
  --font-body: "Inter", "Segoe UI", Tahoma, sans-serif;
  --font-heading: "Poppins", "Inter", "Montserrat", "Segoe UI", sans-serif;
  --winni-vw-safe: calc(100vw - (100vw - 100%));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

.site-shell {
  overflow-x: clip;
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: var(--font-body);
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.site-nav__link {
  font-family: var(--font-heading);
}

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

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

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

.site-main {
  min-height: 60vh;
  background: #ffffff;
}

.section {
  padding: 4rem 0;
}

.section--tight {
  padding-top: 2rem;
}

.section--narrow {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section--alt {
  background: #ffffff;
}

.section--sale {
  background: #ffffff;
}

.section-title,
.page-title {
  margin: 0 0 1.15rem;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}

.section-title--center {
  text-align: center;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.55rem;
}

.section-head a {
  color: var(--primary);
  font-weight: 600;
}

.content-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: clamp(1.2rem, 2.2vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.content-card--center {
  text-align: center;
}

.is-hidden {
  display: none !important;
}

.space-top {
  margin-top: 1rem;
}

.note {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: #edf7ff;
  border: 1px solid #d4e9fb;
  color: #24486c;
}

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

.entry-content > :last-child {
  margin-bottom: 0;
}

.entry-content h3 {
  margin-top: 1.2rem;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn__icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.btn__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.btn__label--short {
  display: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--cta {
  background: var(--accent);
  color: #fff;
}

.btn--cta:hover {
  background: var(--accent-strong);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn--whatsapp:hover {
  filter: brightness(0.95);
}

.btn--outline {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
}

.btn.is-loading,
.button.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.92;
  filter: saturate(0.88);
}

.btn.is-loading::after,
.button.is-loading::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: rgba(255, 255, 255, 0.98);
  animation: btnSpinner 0.7s linear infinite;
}

.btn.is-added,
.button.is-added {
  background: #2f9a4c !important;
  border-color: #2f9a4c !important;
  color: #fff !important;
}

@keyframes btnSpinner {
  to {
    transform: rotate(360deg);
  }
}

.site-announcement {
  background: linear-gradient(90deg, #20466f, #2f6298);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
  padding: 0.58rem 0;
}

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

.winni-header-v2__container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 clamp(0.7rem, 1.6vw, 1.5rem);
}

.winni-header-v2__main {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1vw, 1.1rem);
}

.winni-header-v2__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: clamp(170px, 18vw, 280px);
  line-height: 1;
}

.winni-header-v2__logo {
  display: block;
  width: auto !important;
  height: clamp(62px, 5.2vw, 84px) !important;
  max-width: min(360px, 34vw) !important;
  min-height: 42px;
  max-height: none;
  object-fit: contain;
  background: transparent;
}

.winni-header-v2__brand-text {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.winni-header-v2__toggle {
  display: none !important;
}

.winni-header-v2__row {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.35rem, 0.75vw, 0.75rem);
}

.winni-header-v2__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.14rem;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}

.winni-header-v2__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.winni-header-v2__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.62rem;
  border-radius: 9px;
  color: #425166;
  font-size: 0.91rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
}

.winni-header-v2__link:hover,
.winni-header-v2__link:focus-visible {
  background: var(--primary-soft);
  color: var(--primary);
}

.winni-header-v2__actions {
  margin-left: auto;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}

.winni-header-v2__search {
  margin: 0;
}

.winni-header-v2__search-input {
  width: 188px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--secondary);
  padding: 0 0.76rem;
}

.winni-header-v2__whatsapp {
  min-height: 40px;
  padding-left: 0.95rem;
  padding-right: 0.95rem;
  box-shadow: 0 8px 20px rgba(62, 143, 25, 0.27);
}

.winni-header-v2__whatsapp .btn__label {
  white-space: nowrap;
}

.winni-header-v2__whatsapp .btn__label--short {
  display: none;
}

.winni-header-v2__cart {
  flex: 0 0 auto;
}

.winni-header-v2__flyout {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 246px;
  max-width: min(360px, 86vw);
  border: 1px solid #d4e1ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 28px rgba(20, 39, 63, 0.14);
  padding: 0.38rem;
  display: none;
  z-index: 130;
}

.winni-header-v2__flyout.is-open {
  display: grid;
}

.winni-header-v2__flyout-link {
  display: block;
  border-radius: 8px;
  padding: 0.48rem 0.62rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3f4e61;
  white-space: normal;
  word-break: break-word;
}

.winni-header-v2__flyout-link:hover,
.winni-header-v2__flyout-link:focus-visible {
  background: var(--primary-soft);
  color: var(--primary);
}

@media (min-width: 1081px) and (max-width: 1368px) {
  .winni-header-v2__main {
    gap: 0.55rem;
  }

  .winni-header-v2__row {
    gap: 0.34rem;
  }

  .winni-header-v2__link {
    padding: 0.44rem 0.5rem;
    font-size: 0.86rem;
  }

  .winni-header-v2__actions {
    gap: 0.42rem;
  }

  .winni-header-v2__search-input {
    width: 156px;
  }

  .winni-header-v2__whatsapp {
    min-height: 38px;
    padding-left: 0.72rem;
    padding-right: 0.72rem;
  }
}

@media (min-width: 1081px) and (max-width: 1210px) {
  .winni-header-v2__main {
    gap: 0.45rem;
  }

  .winni-header-v2__link {
    padding: 0.4rem 0.38rem;
    font-size: 0.81rem;
  }

  .winni-header-v2__search-input {
    width: 138px;
  }

  .winni-header-v2__whatsapp {
    padding-left: 0.62rem;
    padding-right: 0.62rem;
  }
}

@media (max-width: 1080px) {
  .winni-header-v2__container {
    padding: 0 clamp(0.5rem, 2.2vw, 0.95rem);
  }

  .winni-header-v2__main {
    min-height: 70px;
    display: grid;
    grid-template-columns: minmax(112px, 1fr) auto auto;
    align-items: center;
    gap: 0.34rem;
  }

  .winni-header-v2__brand {
    min-width: 0;
    max-width: 100%;
  }

  .winni-header-v2__logo {
    height: clamp(50px, 6.2vw, 64px) !important;
    max-width: min(248px, 42vw) !important;
  }

  .winni-header-v2__toggle {
    display: inline-flex !important;
    width: 42px;
    height: 42px;
  }

  .winni-header-v2__row {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.34rem;
  }

  .winni-header-v2__nav {
    position: absolute;
    inset: calc(100% + 1px) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    padding: 0.6rem 4vw 0.8rem;
  }

  .winni-header-v2__nav.is-open {
    display: flex;
  }

  .winni-header-v2__item {
    width: 100%;
    display: block;
  }

  .winni-header-v2__link {
    width: 100%;
    justify-content: flex-start;
  }

  .winni-header-v2__actions {
    margin-left: 0;
    gap: 0.34rem;
    min-width: 0;
  }

  .winni-header-v2__search {
    display: none;
  }

  .winni-header-v2__whatsapp {
    min-width: 40px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .winni-header-v2__whatsapp .btn__label {
    display: none;
  }

  .winni-header-v2__whatsapp .btn__label--short {
    display: inline;
  }

  .winni-header-v2__cart {
    width: 40px;
    height: 40px;
  }

  .winni-header-v2__flyout {
    max-width: min(360px, 92vw);
  }
}

@media (max-width: 760px) {
  .winni-header-v2__main {
    min-height: 68px;
    grid-template-columns: minmax(112px, 1fr) auto auto;
    gap: 0.3rem;
  }

  .winni-header-v2__logo {
    height: 44px !important;
    max-width: min(168px, 50vw) !important;
  }

  .winni-header-v2__toggle {
    width: 40px;
    height: 40px;
  }

  .winni-header-v2__actions {
    gap: 0.24rem;
  }

  .winni-header-v2__whatsapp {
    width: auto;
    min-width: 0;
    min-height: 36px;
    padding: 0 0.5rem;
    gap: 0.24rem;
    justify-content: center;
  }

  .winni-header-v2__whatsapp .btn__label--short {
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1;
  }

  .winni-header-v2__whatsapp .btn__icon {
    width: 0.9rem;
    height: 0.9rem;
  }

  .winni-header-v2__cart {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 80px;
  position: relative;
  flex-wrap: nowrap;
}

.site-header__main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  align-self: center;
  flex-wrap: nowrap;
}

.site-header__row {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.42rem;
  flex-wrap: nowrap;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.2px;
  min-width: clamp(170px, 18vw, 280px);
  line-height: 1;
}

.site-brand__text {
  line-height: 1.1;
}

.site-brand__logo {
  display: block;
  width: auto !important;
  height: clamp(62px, 5.2vw, 84px) !important;
  max-width: min(360px, 34vw) !important;
  min-height: 42px;
  max-height: none;
  object-fit: contain;
  background: transparent;
  opacity: 1;
  visibility: visible;
  filter: drop-shadow(0 1px 1px rgba(16, 42, 68, 0.15));
}

body:not(.home) .site-header .site-brand__logo {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

@media (min-width: 1081px) {
  .site-header__inner,
  .site-header__main,
  .site-header__row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }

  .menu-toggle {
    display: none !important;
  }

  body.post-type-archive-product .site-header .site-brand,
  body.woocommerce-shop .site-header .site-brand,
  body.woocommerce-shop .site-header .site-brand {
    min-width: clamp(170px, 18vw, 280px) !important;
  }

  body.post-type-archive-product .site-header .site-brand__logo,
  body.woocommerce-shop .site-header .site-brand__logo {
    height: clamp(62px, 5.2vw, 84px) !important;
    max-width: min(360px, 34vw) !important;
    min-height: 42px !important;
  }

  body.single-product .site-header .site-header__inner {
    display: flex;
    gap: 1rem;
  }

  body.single-product .site-header .site-brand {
    min-width: clamp(145px, 14vw, 220px);
  }

  body.single-product .site-header .site-brand__logo {
    height: clamp(42px, 3.3vw, 56px) !important;
    max-width: min(260px, 24vw) !important;
    min-height: 34px !important;
  }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle__bar {
  width: 17px;
  height: 2px;
  background: var(--primary);
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-start;
  align-self: center;
  flex-wrap: nowrap;
}

.site-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav__link {
  padding: 0.52rem 0.72rem;
  border-radius: 9px;
  font-size: 0.93rem;
  font-weight: 600;
  color: #425166;
  display: block;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link:focus {
  background: var(--primary-soft);
  color: var(--primary);
}

.site-categories-flyout {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  min-width: 246px;
  max-width: min(360px, 86vw);
  border: 1px solid #d4e1ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 28px rgba(20, 39, 63, 0.14);
  padding: 0.38rem;
  display: none;
  z-index: 130;
}

.site-categories-flyout__link {
  display: block;
  border-radius: 8px;
  padding: 0.48rem 0.62rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3f4e61;
  white-space: normal;
  word-break: break-word;
}

.site-categories-flyout__link:hover,
.site-categories-flyout__link:focus-visible {
  background: var(--primary-soft);
  color: var(--primary);
}

.site-categories-flyout.is-open {
  display: grid;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: fit-content;
  flex: 0 0 auto;
  margin-left: auto;
  align-self: center;
  flex-wrap: nowrap;
}

.site-search input {
  width: 200px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--secondary);
  padding: 0 0.8rem;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.cart-link:hover,
.cart-link:focus-visible {
  border-color: #b7cbe0;
  background: #f6fbff;
  box-shadow: 0 8px 18px rgba(30, 61, 97, 0.12);
}

.cart-link__icon {
  width: 1.12rem;
  height: 1.12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-link__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-link__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.cart-link__count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(245, 142, 20, 0.35);
  transform-origin: center;
  animation: cartBadgeIn 0.28s ease;
}

.cart-link--pulse {
  animation: cartPulse 0.42s ease;
}

.cart-link--pulse .cart-link__icon {
  animation: cartIconPulse 0.42s ease;
}

.cart-link__count--pop {
  animation: cartBadgePop 0.34s ease;
}

.cart-link--has-items {
  border-color: #c9dbef;
  box-shadow: 0 8px 20px rgba(29, 62, 99, 0.13);
}

@keyframes cartPulse {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes cartIconPulse {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.14);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes cartBadgeIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cartBadgePop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.24);
  }
  100% {
    transform: scale(1);
  }
}

.btn--whatsapp-header {
  min-height: 40px;
  padding-left: 0.95rem;
  padding-right: 0.95rem;
  box-shadow: 0 8px 20px rgba(62, 143, 25, 0.27);
}

.btn--whatsapp-header .btn__label {
  white-space: nowrap;
}

@media (min-width: 1081px) and (max-width: 1368px) {
  .site-header__inner {
    gap: 0.62rem;
  }

  .site-header__main {
    gap: 0.34rem;
  }

  .site-header__row {
    gap: 0.34rem;
  }

  .site-nav__link {
    padding: 0.46rem 0.54rem;
    font-size: 0.89rem;
  }

  .site-actions {
    gap: 0.42rem;
  }

  .site-search input {
    width: 156px;
    padding: 0 0.68rem;
  }

  .btn--whatsapp-header {
    min-height: 38px;
    padding-left: 0.72rem;
    padding-right: 0.72rem;
  }
}

@media (min-width: 1081px) and (max-width: 1210px) {
  .site-header__inner {
    gap: 0.5rem;
  }

  .site-header__main {
    gap: 0.28rem;
  }

  .site-header__row {
    gap: 0.28rem;
  }

  .site-nav__link {
    padding: 0.4rem 0.4rem;
    font-size: 0.85rem;
  }

  .site-search input {
    width: 138px;
  }

  .btn--whatsapp-header {
    padding-left: 0.62rem;
    padding-right: 0.62rem;
  }
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 72;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #43c659, #24a948);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 30px rgba(22, 119, 48, 0.36);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  animation: whatsappFloatIn 0.35s ease, whatsappFloatPulse 3.8s ease-in-out 1.2s infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 20px 34px rgba(18, 108, 43, 0.42);
}

.whatsapp-float__icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.whatsapp-float__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes whatsappFloatIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes whatsappFloatPulse {
  0%,
  100% {
    box-shadow: 0 16px 30px rgba(22, 119, 48, 0.36);
  }
  50% {
    box-shadow: 0 18px 32px rgba(22, 119, 48, 0.46);
  }
}

.home-hero {
  padding: 1.7rem 0 2.1rem;
}

.home-hero--full .home-hero__bleed {
  width: var(--winni-vw-safe);
  margin-left: calc(50% - (var(--winni-vw-safe) / 2));
  margin-right: calc(50% - (var(--winni-vw-safe) / 2));
  padding-inline: clamp(0.6rem, 2.2vw, 2rem);
}

.home-hero--full .home-hero__inner {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
}

.hero-campaign {
  position: relative;
  border: 1px solid #d4e2f0;
  border-radius: 34px;
  background:
    linear-gradient(117deg, rgba(250, 253, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(233, 244, 255, 0.89) 100%),
    url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 34px 66px rgba(19, 39, 65, 0.12);
  padding: clamp(1.6rem, 3.1vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(1.35rem, 2.8vw, 2.55rem);
  align-items: center;
  overflow: hidden;
  min-height: clamp(520px, 48vw, 640px);
}

.hero-campaign::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(78, 147, 219, 0.26), rgba(78, 147, 219, 0));
}

.hero-campaign::after {
  content: "";
  position: absolute;
  left: -145px;
  bottom: -220px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(33, 93, 154, 0.18), rgba(33, 93, 154, 0));
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding: clamp(1.05rem, 2.5vw, 1.55rem);
  border-radius: 24px;
  border: 1px solid rgba(205, 220, 236, 0.95);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.79));
  box-shadow: 0 18px 34px rgba(24, 45, 73, 0.12);
  backdrop-filter: blur(4px);
}

.hero-copy--legible {
  border-color: rgba(184, 206, 228, 0.95);
  background: linear-gradient(154deg, rgba(255, 255, 255, 0.97), rgba(245, 251, 255, 0.89));
  box-shadow: 0 24px 40px rgba(22, 43, 71, 0.18);
}

.hero-copy__kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  background: #ebf4ff;
  border: 1px solid #ccdeef;
  color: #2f648f;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2rem, 5.4vw, 3.5rem);
  line-height: 1.04;
  max-width: 680px;
  color: #0d2a44;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.45);
  text-wrap: balance;
}

.hero-copy p {
  margin: 0 0 1.35rem;
  max-width: 510px;
  color: #325172;
  font-size: 1.05rem;
}

.hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-copy__meta {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-copy__meta li {
  border-radius: 999px;
  border: 1px solid #d4e4f2;
  background: #f7fbff;
  color: #355b7f;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.68rem;
}

.hero-stage {
  min-height: clamp(390px, 41vw, 540px);
  display: grid;
  align-items: center;
}

.hero-product {
  border-radius: 18px;
  border: 1px solid #d5e3ef;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(24, 47, 76, 0.14);
}

.hero-product a {
  display: block;
}

.hero-product__media {
  background: #f2f7fd;
}

.hero-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-product__body {
  padding: 0.7rem 0.85rem 0.85rem;
}

.hero-product__body h3 {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.3;
  color: #223a55;
}

.hero-product__body p {
  margin: 0.28rem 0 0;
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-product--featured {
  width: min(450px, 100%);
  margin-inline: auto;
  transform: rotate(-2.2deg);
  border-radius: 22px;
  position: relative;
  z-index: 3;
}

.hero-product--featured .hero-product__media {
  aspect-ratio: 5 / 4;
}

.hero-stage__floating {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-product--mini {
  position: absolute;
  width: min(220px, 43%);
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  z-index: 4;
}

.hero-product--mini .hero-product__media {
  aspect-ratio: 1 / 1;
}

.hero-product--mini-1 {
  top: 2%;
  right: 0;
}

.hero-product--mini-2 {
  right: 0;
  bottom: 16%;
}

.hero-product--mini-3 {
  left: 1%;
  bottom: 3%;
}

.hero-product--fallback img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.home-benefits {
  padding: 0.95rem 0 2.8rem;
}

.home-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.home-benefit {
  border-radius: 16px;
  border: 1px solid #dce6f1;
  background: #fff;
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.32rem;
  box-shadow: 0 10px 20px rgba(26, 49, 79, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  animation: benefitLift 480ms ease both;
}

.home-benefit:nth-child(2) {
  animation-delay: 70ms;
}

.home-benefit:nth-child(3) {
  animation-delay: 140ms;
}

.home-benefit:nth-child(4) {
  animation-delay: 210ms;
}

.home-benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(23, 45, 74, 0.1);
  border-color: #c7dbef;
}

.home-benefit__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  font-size: 1.05rem;
}

.home-benefit h3 {
  margin: 0;
  font-size: 0.95rem;
  color: #264665;
  line-height: 1.3;
}

.section--home-banners {
  padding-top: 0.55rem;
}

.home-banners-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(0, 1fr);
  gap: 0.95rem;
}

.promo-banner {
  border-radius: 20px;
  border: 1px solid #d9e6f3;
  background: #fff;
  padding: 1.2rem;
  box-shadow: 0 14px 28px rgba(29, 52, 82, 0.08);
  display: grid;
  gap: 0.72rem;
}

.promo-banner--main {
  grid-row: span 2;
  background: linear-gradient(120deg, #f4faff 0%, #ffffff 52%, #edf6ff 100%);
}

.promo-banner--support {
  min-height: 205px;
}

.promo-banner__tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #356594;
  font-weight: 700;
}

.promo-banner h3 {
  margin: 0;
  font-size: clamp(1.06rem, 1.8vw, 1.35rem);
  line-height: 1.25;
  color: #1d3f62;
}

.promo-banner p {
  margin: 0;
  color: #5a6f85;
}

.promo-banner a {
  color: #245e95;
  font-weight: 700;
}

.promo-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.promo-banner__media {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.promo-banner__media img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid #d8e3ef;
  background: #f5f8fc;
}

.promo-banner__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.promo-banner__chips a {
  border-radius: 999px;
  border: 1px solid #d2e1ef;
  background: #f8fbff;
  color: #315f88;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.33rem 0.62rem;
}

.promo-banner__chips a:hover {
  border-color: #b9d2e9;
  background: #eef6ff;
}

.promo-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@keyframes benefitLift {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-hero {
  background: linear-gradient(130deg, #2c5385, #39a9d5);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.4rem;
}

.category-hero__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.2rem;
}

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

.category-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 1.1rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.category-card__icon {
  display: block;
  font-size: 1.9rem;
}

.category-card h3 {
  margin: 0.55rem 0 0.35rem;
  font-size: 1rem;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  min-height: 2.5em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-offers-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: stretch;
}

.home-offers-carousel__track {
  overflow-x: auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 24vw, 292px);
  gap: 0.9rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 0.25rem;
}

.home-offers-carousel__item {
  min-height: 100%;
  scroll-snap-align: start;
}

.home-offers-carousel__item .product-card {
  height: 100%;
}

.home-offers-carousel__nav {
  border: 1px solid #d0deec;
  background: #fff;
  color: #2a5784;
  border-radius: 11px;
  min-width: 38px;
  min-height: 38px;
  font-size: 1.28rem;
  line-height: 1;
  cursor: pointer;
  align-self: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-offers-carousel__nav:hover {
  background: #edf5fd;
  border-color: #bdd1e6;
  transform: translateY(-1px);
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card__media {
  position: relative;
  background: var(--secondary);
}

.product-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

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

.product-card__badges {
  position: absolute;
  left: 0.6rem;
  top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 2;
}

.badge {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.badge--sale {
  background: var(--sale);
}

.badge--new {
  background: var(--new);
}

.badge--top {
  background: var(--accent);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.9rem;
  flex: 1;
}

.product-card__title {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.25;
}

.product-card__price {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
  min-height: 1.5rem;
}

.price-current,
.product-card__price .amount {
  color: var(--accent-strong);
  font-size: 1.05rem;
  font-weight: 800;
}

.price-compare,
.product-card__price del .amount {
  color: #8993a3;
  text-decoration: line-through;
  font-size: 0.86rem;
  font-weight: 600;
}

.product-card__price ins {
  text-decoration: none;
}

.price-empty {
  color: var(--muted);
  font-size: 0.86rem;
}

.product-card__actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.shop-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 220px 220px auto;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.shop-filters input,
.shop-filters select,
.stack-form input,
.stack-form textarea,
.stack-form select,
.single-product-form select,
.single-product-form input[type="number"],
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  min-height: 42px;
  padding: 0.52rem 0.75rem;
  font: inherit;
}

.shop-filters select {
  background: #fff;
}

.single-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 1.6rem;
}

.single-product-main-image {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--secondary);
  overflow: hidden;
}

.single-product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(199, 214, 230, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2a5784;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(2px);
  box-shadow: 0 8px 18px rgba(24, 49, 77, 0.14);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.single-product-gallery-nav--prev {
  left: 0.6rem;
}

.single-product-gallery-nav--next {
  right: 0.6rem;
}

.single-product-gallery-nav:hover,
.single-product-gallery-nav:focus-visible {
  background: #fff;
  border-color: #acc7e1;
  color: #204b76;
  transform: translateY(-50%) scale(1.03);
}

.single-product-main-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: opacity 0.22s ease;
}

.single-product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(66px, 1fr));
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.single-product-thumb {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 0.18rem;
  cursor: pointer;
  width: 100%;
  min-height: 66px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.single-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
  aspect-ratio: 1/1;
}

.single-product-thumb:hover {
  border-color: #bcd1e6;
}

.single-product-thumb:focus-visible {
  outline: none;
  border-color: #5f8ebc;
  box-shadow: 0 0 0 3px rgba(95, 142, 188, 0.2);
}

.single-product-thumb.is-active {
  border-color: #5f8ebc;
  box-shadow: 0 0 0 2px rgba(95, 142, 188, 0.18);
  transform: translateY(-1px);
}

.single-product-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.single-product-title {
  margin: 0.5rem 0 0.35rem;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.16;
}

.single-product-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
  margin: 0 0 0.95rem;
}

.single-product-meta-item {
  border: 1px solid #d9e5f0;
  border-radius: 10px;
  background: #f9fcff;
  padding: 0.52rem 0.65rem;
  display: grid;
  gap: 0.12rem;
}

.single-product-meta-item__label {
  color: #59708a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.single-product-meta-item__value {
  color: #223b57;
  font-size: 0.88rem;
  font-weight: 700;
  word-break: break-word;
}

.single-product-meta-item__value--link:hover,
.single-product-meta-item__value--link:focus {
  color: var(--primary);
}

.single-product-short {
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.single-product-price {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.single-product-price .amount {
  color: var(--accent-strong);
  font-size: 1.95rem;
  font-weight: 800;
}

.single-product-price del .amount {
  color: #8993a3;
  font-size: 1rem;
  font-weight: 600;
}

.single-product-price ins {
  text-decoration: none;
}

.single-social-proof {
  display: grid;
  gap: 0.46rem;
  margin: 0 0 1rem;
}

.proof-pill {
  border-radius: 12px;
  border: 1px solid #d7e2ee;
  background: #fff;
  padding: 0.54rem 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #2e4561;
  font-size: 0.88rem;
  box-shadow: 0 8px 18px rgba(20, 39, 63, 0.07);
}

.proof-pill strong {
  color: #17385b;
}

.proof-pill__icon {
  width: 1.22rem;
  height: 1.22rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef5fd;
  flex: 0 0 auto;
}

.proof-pill--sales .proof-pill__icon {
  background: #fff1df;
}

.proof-pill--stock .proof-pill__icon {
  background: #ecf9e8;
}

.proof-pill--viewers .proof-pill__icon {
  animation: viewersPulse 2.4s ease-in-out infinite;
}

@keyframes viewersPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.09);
  }
  100% {
    transform: scale(1);
  }
}

.single-product-form {
  display: grid;
  gap: 0.85rem;
}

.single-product-form form.cart {
  display: grid;
  gap: 0.85rem;
}

.single-product-form__group label {
  display: block;
  margin-bottom: 0.38rem;
  font-weight: 700;
  font-size: 0.88rem;
}

.single-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.single-product-actions--stack {
  grid-template-columns: 1fr;
  margin-top: 0.75rem;
}

.single-product-form .quantity {
  display: inline-flex;
}

.single-product-form .single_add_to_cart_button {
  width: 100%;
}

.single-product-form .variations {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  width: 100%;
}

.single-product-form .variations th,
.single-product-form .variations td {
  padding: 0.55rem 0.6rem;
  vertical-align: middle;
}

.single-product-form .variations th {
  width: 30%;
  font-size: 0.84rem;
  text-align: left;
}

.single-product-form .variations td select {
  max-width: none;
}

.single-product-form .woocommerce-variation-add-to-cart {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: center;
}

.single-product-form .reset_variations {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.single-product-panel {
  margin-top: 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem;
}

.single-product-panel h2 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.single-product-description {
  color: #42566d;
  font-size: 0.92rem;
}

.single-product-description > :first-child {
  margin-top: 0;
}

.single-product-description > :last-child {
  margin-bottom: 0;
}

.single-product-description p {
  margin: 0 0 0.75rem;
}

.single-product-description-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.single-product-panel__head h2 {
  margin: 0 0 0.25rem;
}

.single-product-panel__head p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.single-product-panel--testimonials {
  padding: 1.05rem;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0.58rem;
}

.testimonials-carousel__nav {
  border: 1px solid #d4e1ee;
  background: #fff;
  color: #2d547e;
  border-radius: 10px;
  width: 36px;
  min-height: 36px;
  cursor: pointer;
  font-size: 1.32rem;
  line-height: 1;
  align-self: center;
}

.testimonials-carousel__nav:hover {
  background: #eef5fd;
}

.testimonials-carousel__viewport {
  overflow-x: auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 0.65rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.testimonial-card {
  border: 1px solid #dce6f1;
  border-radius: 14px;
  background: #fff;
  padding: 0.85rem;
  display: grid;
  gap: 0.55rem;
  scroll-snap-align: start;
  min-height: 100%;
}

.testimonial-card__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: center;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #d8e4f1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card__avatar--initials {
  background: #eef5fd;
  color: #29517a;
  font-size: 0.85rem;
  font-weight: 700;
}

.testimonial-card__meta h3 {
  margin: 0;
  font-size: 0.9rem;
}

.testimonial-card__meta p {
  margin: 0.12rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.testimonial-card__rating {
  margin-top: 0.2rem;
  color: #e39a22;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
}

.testimonial-card__comment {
  margin: 0;
  color: #3f5268;
  font-size: 0.86rem;
  line-height: 1.45;
}

.check-list,
.dot-list {
  margin: 0;
  padding-left: 1.15rem;
}

.check-list li,
.dot-list li {
  margin-bottom: 0.36rem;
}

.spec-table {
  margin: 0;
}

.spec-table > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-top: 1px solid var(--border);
}

.spec-table > div:first-child {
  border-top: 0;
}

.spec-table dt,
.spec-table dd {
  margin: 0;
  padding: 0.48rem 0.56rem;
  font-size: 0.88rem;
}

.spec-table dt {
  background: var(--secondary);
  font-weight: 700;
}

.steps {
  text-align: center;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.steps__grid article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
}

.steps__grid span {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.steps__grid h3 {
  margin: 0.55rem 0 0.35rem;
}

.steps__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-panel {
  text-align: center;
  border-radius: 18px;
  padding: 2rem 1rem;
  color: #fff;
  background: linear-gradient(130deg, #2c5385, #39a9d5);
}

.cta-panel h2 {
  margin: 0 0 0.5rem;
}

.cta-panel p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.86);
}

.contact-highlight {
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: #ebfae2;
  border: 1px solid #cae9ba;
  margin-bottom: 1rem;
}

.contact-highlight p {
  margin: 0 0 0.2rem;
  font-weight: 700;
}

.contact-highlight a {
  color: #2f8a16;
  font-size: 1.4rem;
  font-weight: 800;
}

.stack-form {
  display: grid;
  gap: 0.8rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  font-size: 0.88rem;
}

.entry-meta-list p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.order-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 11px;
  background: var(--secondary);
  border: 1px solid var(--border);
  font-weight: 800;
  font-family: Consolas, "SFMono-Regular", Menlo, monospace;
}

.site-footer {
  margin-top: 3rem;
  background: #163a5d;
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.4rem;
  padding: 2.6rem 0;
}

.site-footer__title {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
}

.site-footer__subtitle {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__text {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.84);
}

.social-links,
.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.social-links a,
.site-footer__nav a,
.site-footer__contact a,
.site-footer__contact span {
  color: rgba(255, 255, 255, 0.87);
  font-size: 0.9rem;
}

.site-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-icon {
  width: 0.95rem;
  height: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.footer-reasons {
  margin-top: 0.95rem;
}

.footer-reasons__title {
  margin: 0 0 0.45rem;
  font-weight: 700;
}

.footer-reasons__list {
  margin: 0;
  padding-left: 1.1rem;
}

.footer-reasons__list li {
  margin-bottom: 0.2rem;
}

.btn--footer-cta {
  margin-top: 0.8rem;
}

.footer-social {
  margin-top: 1rem;
}

.social-links--icons a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  padding: 0.9rem 0 1.1rem;
}

.site-footer__bottom p {
  margin: 0.2rem 0;
}

.woocommerce .quantity .qty {
  width: 90px;
}

.woocommerce table.shop_table {
  border-color: var(--border);
  border-radius: 12px;
}

.woocommerce .cart .button,
.woocommerce .cart input.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 10px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 0.72rem 0.95rem;
}

.woocommerce .cart .button:hover,
.woocommerce .cart input.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--accent-strong);
  color: #fff;
}

.woocommerce .button.alt {
  background: var(--whatsapp);
}

.woocommerce .button.alt:hover {
  background: #57a231;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  border-top-color: var(--primary);
  border-radius: 10px;
}

.pagination {
  margin-top: 1.2rem;
}

.pagination .nav-links {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
}

.pagination .page-numbers {
  min-width: 34px;
  min-height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.pagination .current {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 1080px) {
  .home-hero--full .home-hero__bleed {
    padding-inline: clamp(0.55rem, 2vw, 1.1rem);
  }

  .home-hero--full .home-hero__inner {
    max-width: 1400px;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
  }

  .site-header__main {
    display: flex;
    gap: 0.34rem;
    justify-content: flex-end;
  }

  .site-header__row {
    width: auto;
    gap: 0.34rem;
    justify-content: flex-end;
  }

  .site-brand {
    min-width: 0;
    max-width: 100%;
  }

  .site-brand__logo {
    height: clamp(50px, 6.2vw, 64px) !important;
    max-width: min(248px, 42vw) !important;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 1px) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 4vw 0.8rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__link {
    width: 100%;
  }

  .site-nav__item {
    width: 100%;
    display: block;
  }

  .site-nav__item--categories > .site-nav__link {
    width: 100%;
  }

  .site-categories-flyout {
    position: absolute;
    min-width: 246px;
    max-width: min(360px, 92vw);
    border: 1px solid #dce6f1;
    border-radius: 12px;
    box-shadow: 0 14px 26px rgba(20, 39, 63, 0.14);
    background: #fff;
    padding: 0.32rem;
    margin: 0;
  }

  .site-categories-flyout__link {
    padding-left: 0.62rem;
    padding-right: 0.62rem;
  }

  .site-actions {
    justify-content: flex-end;
    gap: 0.34rem;
    min-width: 0;
    flex-wrap: nowrap;
    margin-left: 0;
  }

  .btn--whatsapp-header {
    min-width: 40px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .btn--whatsapp-header .btn__label {
    display: none;
  }

  .btn--whatsapp-header .btn__label--short {
    display: inline;
  }

  .site-search {
    display: none;
  }

  .cart-link {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
  }

  .hero-campaign {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage {
    min-height: 420px;
  }

  .single-product-gallery-nav {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .hero-product--mini {
    width: min(220px, 45%);
  }

  .home-banners-v2 {
    grid-template-columns: 1fr;
  }

  .home-offers-carousel__track {
    grid-auto-columns: clamp(238px, 36vw, 300px);
  }

  .promo-banner--main {
    grid-row: auto;
  }

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

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .single-product-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .home-hero--full .home-hero__bleed {
    padding-inline: 0.4rem;
  }

  .home-hero {
    padding-top: 1rem;
  }

  .hero-campaign {
    border-radius: 18px;
    padding: 1rem;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(112px, 1fr) auto;
    gap: 0.3rem;
    min-height: 68px;
  }

  .site-header__main {
    display: flex;
  }

  .site-header__row {
    gap: 0.24rem;
  }

  .site-brand {
    min-width: 0;
  }

  .site-brand__logo {
    height: 44px !important;
    max-width: min(168px, 50vw) !important;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-actions {
    gap: 0.24rem;
    min-width: 0;
    flex-wrap: nowrap;
  }

  .btn--whatsapp-header {
    width: auto;
    min-width: 0;
    min-height: 36px;
    padding: 0 0.5rem;
    gap: 0.24rem;
    justify-content: center;
  }

  .btn--whatsapp-header .btn__label {
    display: none !important;
  }

  .btn--whatsapp-header .btn__label--short {
    display: inline !important;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1;
  }

  .btn--whatsapp-header .btn__icon {
    width: 0.9rem;
    height: 0.9rem;
  }

  .cart-link {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .cart-link__count {
    min-width: 16px;
    height: 16px;
    top: -4px;
    right: -4px;
    font-size: 0.58rem;
  }

  .single-product-gallery-nav {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .single-product-gallery-nav--prev {
    left: 0.4rem;
  }

  .single-product-gallery-nav--next {
    right: 0.4rem;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .hero-copy__actions .btn {
    width: 100%;
  }

  .hero-copy__meta {
    margin-top: 0.85rem;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-product--featured {
    transform: none;
    width: 100%;
  }

  .hero-stage__floating {
    position: static;
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .hero-product--mini {
    position: static;
    width: 100%;
  }

  .hero-product--mini-3 {
    grid-column: 1 / -1;
  }

  .home-offers-carousel {
    grid-template-columns: 1fr;
  }

  .home-offers-carousel__nav {
    display: none;
  }

  .home-offers-carousel__track {
    grid-auto-columns: minmax(84%, 1fr);
  }

  .site-announcement {
    font-size: 0.78rem;
    padding: 0.48rem 0;
  }

  .home-benefits {
    padding-bottom: 2.1rem;
  }

  .home-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .home-benefit {
    padding: 0.85rem;
  }

  .promo-banner {
    border-radius: 16px;
    padding: 1rem;
  }

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

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

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

  .single-product-actions,
  .product-card__actions {
    grid-template-columns: 1fr;
  }

  .single-product-meta-grid {
    grid-template-columns: 1fr;
  }

  .single-product-form .woocommerce-variation-add-to-cart {
    grid-template-columns: 1fr;
  }

  .single-product-form .variations th,
  .single-product-form .variations td {
    display: block;
    width: 100%;
    padding-bottom: 0.25rem;
  }

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

  .proof-pill {
    font-size: 0.84rem;
    padding: 0.5rem 0.62rem;
  }

  .single-product-panel--testimonials {
    padding: 0.88rem;
  }

  .testimonials-carousel {
    grid-template-columns: 1fr;
  }

  .testimonials-carousel__nav {
    display: none;
  }

  .testimonials-carousel__viewport {
    grid-auto-columns: minmax(86%, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 1.4rem;
  }

  .btn--footer-cta {
    width: 100%;
  }
}

/* Header rebuild v3 */
.winni-header-v3 {
  border-bottom: 1px solid var(--border);
}

.winni-header-v3 .winni-header-v3__container {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 clamp(0.7rem, 1.6vw, 1.5rem);
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(0.55rem, 0.95vw, 1rem);
}

.winni-header-v3 .winni-header-v3__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: clamp(168px, 16vw, 252px);
  line-height: 1;
}

.winni-header-v3 .winni-header-v3__logo {
  display: block;
  width: auto !important;
  height: clamp(56px, 4.6vw, 72px) !important;
  max-width: min(300px, 26vw) !important;
  object-fit: contain;
}

.winni-header-v3 .winni-header-v3__brand-text {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.winni-header-v3 .winni-header-v3__main {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.winni-header-v3 .winni-header-v3__row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
  gap: 0.52rem;
}

.winni-header-v3 .winni-header-v3__nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
  flex: 1 1 auto;
  gap: 0.15rem;
}

.winni-header-v3 .winni-header-v3__nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.winni-header-v3 .winni-header-v3__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.46rem 0.56rem;
  border-radius: 9px;
  color: #425166;
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.winni-header-v3 .winni-header-v3__link:hover,
.winni-header-v3 .winni-header-v3__link:focus-visible {
  background: var(--primary-soft);
  color: var(--primary);
}

.winni-header-v3 .winni-header-v3__actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: auto;
  gap: 0.5rem;
  white-space: nowrap;
}

.winni-header-v3 .winni-header-v3__search {
  margin: 0;
}

.winni-header-v3 .winni-header-v3__search-input {
  width: 172px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--secondary);
  padding: 0 0.72rem;
}

.winni-header-v3 .winni-header-v3__whatsapp {
  min-height: 38px;
  padding: 0.45rem 0.86rem;
}

.winni-header-v3 .winni-header-v3__whatsapp-short {
  display: none;
}

.winni-header-v3 .winni-header-v3__cart {
  width: 40px;
  height: 40px;
}

.winni-header-v3 .winni-header-v3__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.winni-header-v3 .winni-header-v3__toggle-bar {
  width: 16px;
  height: 2px;
  background: var(--primary);
  display: block;
}

.winni-header-v3 .winni-header-v3__categories-flyout {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  max-width: min(360px, 90vw);
  border: 1px solid #d4e1ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 28px rgba(20, 39, 63, 0.14);
  padding: 0.36rem;
  display: none;
  z-index: 130;
}

.winni-header-v3 .winni-header-v3__categories-flyout.is-open {
  display: grid;
}

.winni-header-v3 .winni-header-v3__categories-link {
  display: block;
  border-radius: 8px;
  padding: 0.48rem 0.62rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3f4e61;
  white-space: normal;
  word-break: break-word;
}

.winni-header-v3 .winni-header-v3__categories-link:hover,
.winni-header-v3 .winni-header-v3__categories-link:focus-visible {
  background: var(--primary-soft);
  color: var(--primary);
}

@media (min-width: 1081px) {
  .winni-header-v3 .winni-header-v3__toggle {
    display: none !important;
  }
}

@media (min-width: 1081px) and (max-width: 1368px) {
  .winni-header-v3 .winni-header-v3__link {
    padding: 0.42rem 0.5rem;
    font-size: 0.84rem;
  }

  .winni-header-v3 .winni-header-v3__search-input {
    width: 154px;
  }

  .winni-header-v3 .winni-header-v3__whatsapp {
    padding-left: 0.72rem;
    padding-right: 0.72rem;
  }
}

@media (min-width: 1081px) and (max-width: 1220px) {
  .winni-header-v3 .winni-header-v3__link {
    padding: 0.38rem 0.38rem;
    font-size: 0.8rem;
  }

  .winni-header-v3 .winni-header-v3__search-input {
    width: 136px;
  }

  .winni-header-v3 .winni-header-v3__actions {
    gap: 0.36rem;
  }
}

@media (max-width: 1080px) {
  .winni-header-v3 .winni-header-v3__container {
    padding: 0 clamp(0.5rem, 2.2vw, 0.95rem);
  }

  .winni-header-v3 .winni-header-v3__brand {
    min-width: 0;
  }

  .winni-header-v3 .winni-header-v3__logo {
    height: clamp(42px, 6.6vw, 54px) !important;
    max-width: min(190px, 56vw) !important;
  }

  .winni-header-v3 .winni-header-v3__main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    gap: 0.32rem;
  }

  .winni-header-v3 .winni-header-v3__toggle {
    display: inline-flex;
  }

  .winni-header-v3 .winni-header-v3__row {
    width: auto;
    gap: 0.3rem;
  }

  .winni-header-v3 .winni-header-v3__actions {
    margin-left: 0;
    gap: 0.3rem;
  }

  .winni-header-v3 .winni-header-v3__search {
    display: none;
  }

  .winni-header-v3 .winni-header-v3__whatsapp {
    min-width: auto;
    padding: 0.45rem 0.72rem;
  }

  .winni-header-v3 .winni-header-v3__whatsapp .btn__label:not(.winni-header-v3__whatsapp-short) {
    display: none;
  }

  .winni-header-v3 .winni-header-v3__whatsapp-short {
    display: inline;
    font-size: 0.74rem;
    font-weight: 700;
  }

  .winni-header-v3 .winni-header-v3__cart {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .winni-header-v3 .winni-header-v3__nav {
    position: absolute;
    inset: calc(100% + 1px) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 4vw 0.8rem;
    z-index: 120;
  }

  .winni-header-v3 .winni-header-v3__nav.is-open {
    display: flex;
  }

  .winni-header-v3 .winni-header-v3__nav-item {
    width: 100%;
  }

  .winni-header-v3 .winni-header-v3__link {
    width: 100%;
    justify-content: flex-start;
  }

  .winni-header-v3 .winni-header-v3__categories-flyout {
    max-width: min(360px, 92vw);
  }
}


body,
.site-shell,
.site-main,
body.single-product,
body.single-product .site-main,
body.post-type-archive-product .site-main,
body.tax-product_cat .site-main {
  background-color: #ffffff;
}

html,
body {
  overflow-x: clip;
}
