:root {
  --te-bg: #f3f5f7;
  --te-surface: #ffffff;
  --te-surface-alt: #eef3f8;
  --te-dark: #2c2c2f;
  --te-text: #1e293b;
  --te-muted: #475569;
  --te-accent: #e28a1d;
  --te-accent-strong: #c57109;
  --te-accent-soft: #fff0de;
  --te-border: #dbe3ec;
  --te-border-strong: #c6d3e2;
  --te-radius: 18px;
  --te-radius-lg: 26px;
  --te-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  --te-shadow-lg: 0 30px 90px rgba(15, 23, 42, 0.14);
  --te-font: "Segoe UI", "Inter", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --te-font-display: "Arial Narrow", "Bahnschrift SemiCondensed", "Roboto Condensed", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--te-text);
  background:
    radial-gradient(circle at top left, rgba(226, 138, 29, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0) 28%),
    var(--te-bg);
  font-family: var(--te-font);
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.woocommerce-store-notice,
p.demo_store,
body .woocommerce-store-notice,
body p.demo_store,
body .demo_store,
html body.woocommerce-demo-store .demo_store,
body.admin-bar .demo_store,
body .woocommerce-store-notice.demo_store {
  display: none !important;
}

.te-container {
  width: min(1680px, calc(100vw - 56px));
  margin: 0 auto;
}

.te-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--te-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.te-button:hover {
  transform: translateY(-1px);
  background: var(--te-accent-strong);
}

.te-button__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.te-button--whatsapp {
  background: #25d366;
  color: #fff;
}

.te-button--whatsapp:hover {
  background: #1fb65a;
}

.te-button:focus-visible {
  outline: 2px solid rgba(216, 137, 27, 0.5);
  outline-offset: 3px;
}

.te-site-logo {
  height: 40px;
  max-width: min(360px, 32vw);
  width: auto;
}

.te-site-logo--text {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--te-dark);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .te-container {
    width: min(100vw - 24px, 100%);
  }

  .te-site-logo {
    height: 34px;
    max-width: min(270px, 58vw);
  }
}
