.te-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--te-border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.18s ease, background-color 0.18s ease;
}

.te-site-header.is-scrolled {
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.985);
}

.te-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.te-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  font-weight: 800;
}

.te-header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1;
}

.te-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.te-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.te-menu a,
.te-menu__link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 2px;
  text-decoration: none;
  color: var(--te-muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.te-menu a:hover,
.te-menu__link:hover,
.te-menu .current-menu-item > a,
.te-menu .current_page_item > a,
.te-menu__link.is-current {
  color: var(--te-text);
}

.te-primary-nav > .te-menu > .menu-item > a {
  position: relative;
}

.te-primary-nav > .te-menu > .menu-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: var(--te-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.te-primary-nav > .te-menu > .menu-item:hover > a::after,
.te-primary-nav > .te-menu > .current-menu-item > a::after,
.te-primary-nav > .te-menu > .menu-item > .te-menu__link.is-current::after {
  transform: scaleX(1);
}

.te-primary-nav .menu-item {
  position: relative;
}

.te-primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  gap: 0;
  min-width: 260px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  border: 1px solid var(--te-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--te-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.te-primary-nav .menu-item:hover > .sub-menu,
.te-primary-nav .menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.te-primary-nav .sub-menu .menu-item {
  width: 100%;
}

.te-primary-nav .sub-menu a {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  color: var(--te-text);
  justify-content: space-between;
}

.te-primary-nav .sub-menu a:hover,
.te-primary-nav .sub-menu .current-menu-item > a {
  background: var(--te-accent-soft);
  color: var(--te-accent);
}

.te-primary-nav .sub-menu .sub-menu {
  top: -10px;
  left: calc(100% + 10px);
}

.te-menu-item--products {
  position: relative;
}

.te-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(480px, calc(100vw - 32px));
  max-height: min(78vh, 760px);
  padding: 18px;
  border: 1px solid var(--te-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--te-shadow-lg);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.te-menu-item--products:hover > .te-menu-panel,
.te-menu-item--products:focus-within > .te-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.te-menu-panel__header {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.te-menu-panel__header strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--te-text);
}

.te-menu-panel__header span {
  color: var(--te-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.te-menu-panel__body {
  display: grid;
  gap: 10px;
}

.te-menu-panel__footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--te-border);
}

.te-menu-panel__footer .te-button {
  width: 100%;
  justify-content: center;
}

.te-menu-accordion {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.te-menu-accordion__item {
  display: grid;
  gap: 8px;
}

.te-menu-accordion__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--te-border);
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.te-menu-accordion__item.is-open > .te-menu-accordion__row,
.te-menu-accordion__item:hover > .te-menu-accordion__row {
  border-color: rgba(212, 137, 12, 0.24);
  background: var(--te-accent-soft);
}

.te-menu-accordion__link {
  min-height: 0;
  padding: 0;
  color: var(--te-text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.te-menu-accordion__link--level-1 {
  font-size: 0.96rem;
  font-weight: 800;
}

.te-menu-accordion__link:hover {
  color: var(--te-accent);
}

.te-menu-accordion__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--te-border);
  border-radius: 999px;
  background: #fff;
  color: var(--te-muted);
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.te-menu-accordion__toggle:hover {
  border-color: rgba(212, 137, 12, 0.24);
  color: var(--te-accent);
}

.te-menu-accordion__toggle-icon {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.te-menu-accordion__item.is-open > .te-menu-accordion__row .te-menu-accordion__toggle-icon {
  transform: rotate(225deg);
}

.te-menu-accordion__panel[hidden] {
  display: none;
}

.te-menu-accordion__panel {
  padding-left: 14px;
}

.te-menu-accordion--level-2,
.te-menu-accordion--level-3 {
  gap: 6px;
  padding-left: 12px;
  border-left: 1px solid var(--te-border);
}

.te-nav-toggle {
  display: none;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--te-border);
  border-radius: 999px;
  background: #fff;
  color: var(--te-text);
  font-weight: 800;
}

.te-header-cart {
  min-height: 42px;
  padding-inline: 16px;
  border-color: rgba(30, 41, 59, 0.14);
  background: #fff;
  color: var(--te-text);
}

.te-header-cart:hover {
  border-color: var(--te-border-strong);
  background: var(--te-surface-alt);
}

.te-header-whatsapp {
  min-height: 42px;
  padding-inline: 18px;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.18);
}

.te-site-main {
  min-height: 60vh;
}

.te-full-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1f252c;
}

.te-full-hero::before,
.te-full-hero__overlay {
  content: "";
  position: absolute;
  inset: 0;
}

.te-full-hero::before {
  background-image: var(--te-hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(0.74) contrast(1.02) brightness(0.7);
}

.te-full-hero__overlay {
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.24) 0%, rgba(18, 24, 31, 0.84) 100%),
    linear-gradient(90deg, rgba(18, 24, 31, 0.72) 0%, rgba(18, 24, 31, 0.28) 50%, rgba(18, 24, 31, 0.72) 100%);
}

.te-full-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  min-height: min(74svh, 820px);
  padding-top: clamp(92px, 10vw, 128px);
  padding-bottom: clamp(84px, 9vw, 116px);
  text-align: center;
  color: #fff9ef;
}

.te-full-hero__breadcrumb,
.te-full-hero__breadcrumb .woocommerce-breadcrumb {
  margin: 0;
  color: rgba(255, 249, 239, 0.74);
  font-size: 0.92rem;
}

.te-full-hero__breadcrumb a {
  color: rgba(255, 249, 239, 0.86);
}

.te-full-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 24, 31, 0.42);
  color: #fff6e8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.te-full-hero h1 {
  width: min(16ch, 100%);
  margin: 0;
  font-family: var(--te-font-display);
  font-size: clamp(3rem, 6.1vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.te-full-hero__lead {
  width: min(860px, 100%);
  margin: 0;
  color: rgba(255, 249, 239, 0.88);
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.72;
}

.te-full-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.te-full-hero .te-button--light,
.te-full-hero .te-button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ee;
}

.te-full-hero .te-button--light:hover,
.te-full-hero .te-button--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff8ee;
}

.te-full-hero__highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.te-full-hero__highlights li {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 24, 31, 0.42);
  color: #fff8ee;
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.te-full-hero__product-tree {
  width: min(1180px, 100%);
  margin-top: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(12px);
}

.te-full-hero__product-tree-header {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.te-full-hero__product-tree-header strong {
  font-size: 1.08rem;
  font-weight: 800;
}

.te-full-hero__product-tree-header span {
  color: rgba(255, 249, 239, 0.76);
  font-size: 0.95rem;
}

.te-full-hero__product-tree-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  text-align: left;
}

.te-full-hero__product-tree-column {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.te-full-hero__product-tree-title {
  color: #fff8ee;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.te-full-hero__product-tree-title:hover {
  color: #fff;
}

.te-hero-tree {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.te-hero-tree__item {
  display: grid;
  gap: 8px;
}

.te-hero-tree__link {
  text-decoration: none;
}

.te-hero-tree__link {
  color: rgba(255, 249, 239, 0.82);
  font-size: 0.94rem;
  line-height: 1.45;
}

.te-hero-tree__link:hover {
  color: #fff;
}

.te-site-footer {
  margin-top: 64px;
  padding: 48px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--te-dark);
  color: #fff7ec;
}

.te-site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 36px;
}

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

.te-footer-brand {
  max-width: 460px;
}

.te-footer-brand strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
}

.te-footer-brand p {
  margin: 0 0 16px;
  color: rgba(255, 247, 236, 0.72);
  line-height: 1.65;
}

.te-footer-facts {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.te-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.te-button--ghost {
  border: 1px solid var(--te-border);
  background: transparent;
  color: var(--te-text);
}

.te-footer-actions .te-button--ghost,
.te-header-whatsapp.te-button--ghost {
  border-color: rgba(33, 28, 23, 0.16);
}

.te-footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  flex: 1;
}

.te-footer-column__title {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 247, 236, 0.56);
}

.te-footer-links a {
  text-decoration: none;
  color: rgba(255, 247, 236, 0.82);
}

.te-site-footer__bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.te-site-footer__bottom p {
  margin: 0;
  color: rgba(255, 247, 236, 0.64);
  line-height: 1.65;
}

.te-page {
  padding: 40px 0;
}

.te-page--content {
  padding: 56px 0;
}

.te-content-page {
  width: min(980px, 100%);
  padding: 36px;
  border: 1px solid var(--te-border);
  border-radius: var(--te-radius);
  background: var(--te-surface);
  box-shadow: var(--te-shadow);
}

.te-content-page__header {
  margin-bottom: 28px;
}

.te-content-page__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--te-accent-soft);
  color: var(--te-accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.te-content-page__header h1 {
  margin: 16px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.te-content-page__body {
  color: var(--te-text);
  line-height: 1.75;
  font-size: 17px;
}

.te-content-page__body > *:first-child {
  margin-top: 0;
}

.te-content-page__body > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .te-full-hero__inner {
    gap: 14px;
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 74px;
  }

  .te-full-hero h1 {
    width: 100%;
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .te-full-hero__lead {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .te-full-hero__actions .te-button {
    width: 100%;
    justify-content: center;
  }

  .te-full-hero__product-tree {
    padding: 18px;
  }

  .te-full-hero__product-tree-grid {
    grid-template-columns: 1fr;
  }

  .te-site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .te-site-header__inner {
    position: relative;
    flex-wrap: wrap;
    min-height: 64px;
    padding: 10px 0;
  }

  .te-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .te-header-tools {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--te-border);
    border-radius: 22px;
    background: rgba(255, 250, 243, 0.98);
    box-shadow: var(--te-shadow);
  }

  .te-site-header.is-open .te-header-tools {
    display: flex;
  }

  .te-menu {
    flex-direction: column;
    gap: 14px;
  }

  .te-menu-item--products {
    width: 100%;
  }

  .te-menu-panel {
    position: static;
    width: 100%;
    margin-top: 8px;
    max-height: none;
    padding: 14px;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    overflow: visible;
  }

  .te-menu-panel__footer .te-button {
    width: 100%;
  }

  .te-menu-accordion__row {
    min-height: 44px;
    padding: 10px 12px;
  }

  .te-menu-accordion__panel {
    padding-left: 10px;
  }

  .te-header-actions {
    flex-direction: column;
  }

  .te-primary-nav .sub-menu,
  .te-primary-nav .sub-menu .sub-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
  }

  .te-header-cart,
  .te-header-whatsapp {
    width: 100%;
  }

  .te-site-header__inner,
  .te-site-footer__inner {
    align-items: flex-start;
  }

  .te-footer-columns {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .te-content-page {
    padding: 24px;
  }
}
