/* =========================================================
   TEZ — Estilos Optimizados 2026 (Less)
   Compilar a: public/assets/less/tez.css
   
   MEJORAS v2.1 — MODO CLARO FIJO:
   - Google Font: Inter (excelente para UI industrial, legibilidad superior)
   - Modo claro fijo (sin dark mode)
   - Paleta: Fondo #F8F6F2, Cards #E8E6E1, Texto #333333
   - Títulos: #6B4F36, CTAs: #E68A2E
   - Borders/Iconos: Gradiente #D4AF7A → #9E7C53
   ========================================================= */
/* =========================
   1) Tokens (Less → CSS Vars)
   ========================= */
/* Brand (Paleta TEZ Industrial) */
/* Modo Claro Fijo (Base Identidad) */
/* Effects */
/* Typography Scale - Inter (mejor para UI industrial) */
/* Helpers */
/* =========================
   2) CSS Variables (theme)
   ========================= */
:root {
  /* Brand - Gradiente Metálico */
  --tez-metal-1: #D4AF7A;
  --tez-metal-2: #9E7C53;
  --tez-bronze: #6B4F36;
  --tez-cta: #E68A2E;
  --tez-cta-hover: #F59E42;
  /* Surfaces - MODO CLARO FIJO */
  --tez-bg: #F8F6F2;
  --tez-surface: #E8E6E1;
  --tez-soft: #E8E6E1;
  /* Text */
  --tez-text: #333333;
  --tez-text-heading: #6B4F36;
  --tez-muted: rgba(51, 51, 51, 0.7);
  /* Effects */
  --tez-radius: 16px;
  --tez-radius-sm: 10px;
  --tez-radius-lg: 24px;
  --tez-border: rgba(158, 124, 83, 0.25);
  --tez-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --tez-shadow2: 0 8px 32px rgba(0, 0, 0, 0.12);
  --tez-focus: rgba(230, 138, 46, 0.35);
  /* Component-specific - Modo Claro */
  --tez-nav-bg: linear-gradient(180deg, rgba(248, 246, 242, 0.98), rgba(232, 230, 225, 0.96));
  --tez-topbar-bg: rgba(232, 230, 225, 0.95);
  --tez-topbar-border: rgba(158, 124, 83, 0.2);
  --tez-footer-bg: rgba(232, 230, 225, 0.98);
  --tez-cta-weak: rgba(230, 138, 46, 0.12);
  --tez-cta-border: rgba(230, 138, 46, 0.5);
  --tez-cta-hover-bg: rgba(230, 138, 46, 0.15);
}
/* =========================
   3) Base / Layout
   ========================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  background: var(--tez-bg);
  color: var(--tez-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  /* Fondo modo claro con sutiles acentos metálicos */
  background-image: radial-gradient(1600px 800px at 25% -8%, rgba(212, 175, 122, 0.08), transparent 70%), radial-gradient(1200px 700px at 75% 12%, rgba(158, 124, 83, 0.06), transparent 65%), radial-gradient(1400px 800px at 50% 108%, rgba(107, 79, 54, 0.04), transparent 70%);
  background-attachment: fixed;
  background-color: var(--tez-bg);
}
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: 1220px;
}
/* Typography Scale */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Sora', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.022em;
  margin-bottom: 1rem;
  font-feature-settings: 'ss01';
  color: var(--tez-text-heading);
  text-wrap: balance;
}
h1,
.h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}
h2,
.h2 {
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  font-weight: 700;
}
h3,
.h3 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
}
h4,
.h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
}
h5,
.h5 {
  font-size: 1.125rem;
  font-weight: 600;
}
h6,
.h6 {
  font-size: 1rem;
  font-weight: 600;
}
p {
  margin-bottom: 1rem;
}
/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Accesibilidad */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--tez-cta);
  color: #000;
  padding: 0.7rem 1.1rem;
  border-radius: var(--tez-radius-sm);
  z-index: 9999;
  font-weight: 700;
  font-size: 0.9rem;
}
.skip-link:focus {
  left: 10px;
  outline: 0;
  box-shadow: 0 0 0 4px var(--tez-focus);
}
/* Brand: texto metálico mejorado */
.text-metallic {
  background: linear-gradient(135deg, var(--tez-metal-1) 0%, var(--tez-metal-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
}
/* Utilidades */
.text-muted-tez {
  color: var(--tez-muted) !important;
}
.fw-semibold {
  font-weight: 600;
}
.fw-bold {
  font-weight: 700;
}
.fw-black {
  font-weight: 800;
}
.hr-tez,
.tez-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tez-border), transparent);
  opacity: 1;
  margin: 2rem 0;
}
/* =========================
   4) Navbar / Topbar
   ========================= */
.tez-topbar {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(248, 246, 242, 0.95);
  background: var(--tez-topbar-bg);
  border-bottom: 1px solid var(--tez-topbar-border);
  font-size: 0.875rem;
}
.tez-topbar a {
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.tez-topbar a:hover {
  color: var(--tez-text-heading);
  transform: translateX(2px);
}
.tez-topbar .badge-tez {
  font-weight: 700;
  font-size: 0.75rem;
}
/* Navbar modo claro */
.tez-navbar {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(248, 246, 242, 0.96);
  background: var(--tez-nav-bg);
  border-bottom: 1px solid rgba(158, 124, 83, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.brand-logo {
  height: 40px;
  width: auto;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-logo:hover {
  transform: scale(1.05);
}
/* Navbar links - Modo claro */
.navbar-nav {
  gap: 0.25rem;
}
.navbar-nav .nav-link {
  opacity: 0.85;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 1.1rem 1rem !important;
  position: relative;
  color: var(--tez-text);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-nav .nav-link:hover {
  opacity: 1;
  color: var(--tez-text-heading) !important;
}
.navbar-nav .nav-link.active {
  opacity: 1;
  color: var(--tez-text-heading) !important;
  font-weight: 600;
}
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.4rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(230, 138, 46, 0), #e68a2e, rgba(230, 138, 46, 0));
}
/* Navbar toggler modo claro */
.navbar-toggler {
  border: 1px solid rgba(158, 124, 83, 0.25) !important;
  padding: 0.55rem 0.8rem;
  border-radius: var(--tez-radius-sm);
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px var(--tez-focus) !important;
  border-color: rgba(230, 138, 46, 0.6) !important;
}
.navbar-toggler .navbar-toggler-icon {
  filter: invert(0) brightness(0.4);
}
/* =========================
   5) Buttons / Badges
   ========================= */
.btn {
  font-weight: 600;
  letter-spacing: -0.011em;
  padding: 0.7rem 1.35rem;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  border-width: 2px;
}
.btn-tez {
  background: var(--tez-cta);
  border-color: var(--tez-cta);
  color: #000;
  font-weight: 700;
  border-radius: var(--tez-radius-sm);
  box-shadow: 0 4px 16px rgba(230, 138, 46, 0.25), 0 1px 3px rgba(0, 0, 0, 0.12);
}
.btn-tez:hover {
  background: var(--tez-cta-hover);
  border-color: var(--tez-cta-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 138, 46, 0.35), 0 3px 8px rgba(0, 0, 0, 0.15);
}
.btn-tez:focus {
  box-shadow: 0 0 0 3px var(--tez-focus) !important;
  border-color: rgba(230, 138, 46, 0.6) !important;
  background: var(--tez-cta);
  color: #000;
}
.btn-tez:active {
  transform: translateY(0);
}
.btn-outline-tez {
  border: 2px solid var(--tez-cta-border);
  color: var(--tez-text);
  background: rgba(232, 230, 225, 0.7);
  border-radius: var(--tez-radius-sm);
  font-weight: 600;
}
.btn-outline-tez:hover {
  background: var(--tez-cta-hover-bg);
  border-color: rgba(230, 138, 46, 0.7);
  color: var(--tez-text-heading);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 138, 46, 0.15);
}
.btn-outline-tez:focus {
  box-shadow: 0 0 0 3px var(--tez-focus) !important;
  border-color: rgba(230, 138, 46, 0.6) !important;
  background: rgba(232, 230, 225, 0.7);
  color: var(--tez-text);
}
.btn-outline-tez:active {
  transform: translateY(0);
}
.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 1.0625rem;
}
.badge-tez {
  background: var(--tez-cta-weak);
  color: var(--tez-text);
  border: 1px solid rgba(230, 138, 46, 0.3);
  border-radius: 10px;
  padding: 0.45rem 0.72rem;
  font-weight: 600;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
/* =========================
   6) Cards / Surfaces
   ========================= */
.tez-card {
  border: 1px solid rgba(158, 124, 83, 0.2);
  border-radius: var(--tez-radius);
  background: linear-gradient(155deg, rgba(232, 230, 225, 0.92), rgba(238, 236, 231, 0.78));
  box-shadow: 0 12px 30px rgba(107, 79, 54, 0.08);
  transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}
.tez-card:hover {
  box-shadow: 0 18px 40px rgba(107, 79, 54, 0.13);
  border-color: rgba(230, 138, 46, 0.28);
}
/* Efecto hover para cards clickeables */
a .tez-card,
button .tez-card {
  transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover .tez-card,
button:hover .tez-card {
  transform: translateY(-5px);
}
/* Card animada */
.animate__animated.tez-card {
  animation-duration: 450ms;
}
/* =========================
   7) Forms / Focus / Select2
   ========================= */
.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
  color: var(--tez-text);
}
.form-control,
.form-select {
  border-radius: var(--tez-radius-sm);
  border: 2px solid var(--tez-border);
  background: var(--tez-surface);
  color: var(--tez-text);
  font-weight: 500;
  padding: 0.7rem 1rem;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9375rem;
}
.form-control::placeholder,
.form-select::placeholder {
  color: var(--tez-muted);
  opacity: 0.8;
}
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 3px var(--tez-focus) !important;
  border-color: rgba(230, 138, 46, 0.6) !important;
  background: var(--tez-surface);
  color: var(--tez-text);
}
.form-select {
  cursor: pointer;
}
/* Select2 mejorado */
.select2-container .select2-selection--single {
  height: 46px;
  border: 2px solid var(--tez-border);
  border-radius: var(--tez-radius-sm);
  background: var(--tez-surface);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.select2-container .select2-selection__rendered {
  line-height: 42px !important;
  color: var(--tez-text) !important;
  padding-left: 1rem !important;
  font-weight: 500;
}
.select2-container .select2-selection__arrow {
  height: 42px !important;
}
.select2-container--default .select2-results__option {
  color: var(--tez-text);
  background: var(--tez-surface);
  padding: 0.75rem 1rem;
  font-weight: 500;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--tez-cta-hover-bg);
  color: var(--tez-text);
}
.select2-container--default .select2-results__option--selected {
  background: var(--tez-soft);
  font-weight: 600;
}
.select2-dropdown {
  border: 2px solid var(--tez-border);
  border-radius: var(--tez-radius-sm);
  overflow: hidden;
  background: var(--tez-surface);
  box-shadow: var(--tez-shadow2);
}
.select2-container--open .select2-selection--single {
  box-shadow: 0 0 0 3px var(--tez-focus) !important;
  border-color: rgba(230, 138, 46, 0.6) !important;
}
/* =========================
   8) Breadcrumb
   ========================= */
.breadcrumb {
  --bs-breadcrumb-divider: '›';
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  font-size: 0.875rem;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  padding-right: 0.65rem;
  padding-left: 0.65rem;
}
.breadcrumb a {
  color: var(--tez-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.breadcrumb a:hover {
  color: var(--tez-text);
  transform: translateX(2px);
}
.breadcrumb .active {
  font-weight: 600;
}
/* =========================
   9) Pagination (mejorada)
   ========================= */
.pagination-tez {
  gap: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination-tez .page-link {
  border: 2px solid var(--tez-border);
  background: var(--tez-surface);
  color: var(--tez-text);
  border-radius: 999px;
  padding: 0.7rem 1.05rem;
  font-weight: 600;
  min-width: 46px;
  text-align: center;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.pagination-tez .page-link:hover {
  background: var(--tez-cta-hover-bg);
  border-color: var(--tez-cta-border);
  color: var(--tez-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 138, 46, 0.22);
}
.pagination-tez .page-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 138, 46, 0.25);
}
.pagination-tez .page-item.active .page-link {
  background: var(--tez-cta);
  border-color: var(--tez-cta);
  color: #000;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(230, 138, 46, 0.32);
  transform: scale(1.05);
}
.pagination-tez .page-item.disabled .page-link {
  opacity: 0.35;
  pointer-events: none;
  background: var(--tez-soft);
}
@media (max-width: 576px) {
  .pagination-tez .page-link {
    padding: 0.6rem 0.9rem;
    font-size: 0.875rem;
  }
}
/* =========================
   10) Footer (mejorado)
   ========================= */
.tez-footer {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: linear-gradient(165deg, rgba(244, 241, 235, 0.98), rgba(230, 225, 216, 0.96));
  border-top: 1px solid rgba(158, 124, 83, 0.15);
  box-shadow: 0 -8px 34px rgba(107, 79, 54, 0.09);
  margin-top: 4rem;
}
.tez-footer-intro {
  max-width: 54ch;
  line-height: 1.68;
}
.tez-footer-points {
  display: grid;
  gap: 0.6rem;
  max-width: 58ch;
}
.tez-footer-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--tez-muted);
  line-height: 1.45;
  font-size: 0.94rem;
}
.tez-footer-points i {
  color: var(--tez-text-heading);
  margin-top: 0.2rem;
}
.tez-footer-link {
  display: inline-flex;
  align-items: center;
  color: var(--tez-muted);
  font-weight: 600;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2rem;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.tez-footer-link:hover {
  color: var(--tez-text-heading);
  text-decoration-color: var(--tez-text-heading);
}
.tez-contact-card {
  background: linear-gradient(145deg, rgba(230, 138, 46, 0.1), rgba(212, 175, 122, 0.05));
  border: 1px solid rgba(158, 124, 83, 0.18);
  border-radius: 12px;
}
.tez-contact-card a.tez-footer-link:hover {
  transform: none;
}
/* =========================
   11) Responsive & Polish
   ========================= */
/* Mejoras responsive */
@media (max-width: 991.98px) {
  body {
    font-size: 15px;
  }
  .tez-navbar .navbar-nav {
    gap: 0;
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(158, 124, 83, 0.15);
  }
  .tez-navbar .navbar-nav .nav-link {
    padding: 0.8rem 1rem !important;
  }
  .tez-navbar .navbar-nav .nav-link.active::after {
    display: none;
  }
  h1,
  .h1 {
    font-size: 2rem;
  }
  h2,
  .h2 {
    font-size: 1.625rem;
  }
}
@media (max-width: 575.98px) {
  body {
    font-size: 14px;
  }
  .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.9rem;
  }
  .badge-tez {
    font-size: 0.68rem;
    padding: 0.38rem 0.58rem;
  }
  .tez-card {
    border-radius: 14px;
  }
}
/* Ratio images modo claro */
.ratio.bg-black {
  background: rgba(0, 0, 0, 0.08) !important;
}
.ratio.bg-dark {
  background: rgba(107, 79, 54, 0.12) !important;
}
.ratio img {
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.ratio:hover img {
  transform: scale(1.05);
}
/* Badge en cards */
.tez-card .badge-tez {
  background: rgba(230, 138, 46, 0.16);
  border-color: rgba(230, 138, 46, 0.35);
}
/* Scrollbar personalizada (webkit) modo claro */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: var(--tez-bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, rgba(212, 175, 122, 0.55), rgba(158, 124, 83, 0.55));
  border-radius: 999px;
  border: 2px solid var(--tez-bg);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, rgba(212, 175, 122, 0.75), rgba(158, 124, 83, 0.75));
}
/* Scrollbar Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(158, 124, 83, 0.45) var(--tez-bg);
}
/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate__animated {
    animation: none !important;
  }
  .tez-card:hover,
  .btn-tez:hover,
  .btn-outline-tez:hover,
  a:hover .tez-card {
    transform: none !important;
  }
}
/* Print styles */
@media print {
  .tez-topbar,
  .tez-navbar,
  .tez-footer,
  .btn,
  .badge {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
  }
  .tez-card {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
  }
}
/* =========================
   12) Extras (Nuevos)
   ========================= */
/* Números destacados (stats) */
.tez-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--tez-metal-1) 0%, var(--tez-metal-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}
/* Icons mejorados */
.fa-solid,
.fa-regular,
.fa-brands {
  vertical-align: -0.125em;
}
/* Loading states modo claro */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.tez-loading {
  background: linear-gradient(90deg, rgba(158, 124, 83, 0.06) 0%, rgba(212, 175, 122, 0.12) 50%, rgba(158, 124, 83, 0.06) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}
/* Text selection modo claro */
::selection {
  background: rgba(230, 138, 46, 0.3);
  color: #333333;
}
::-moz-selection {
  background: rgba(230, 138, 46, 0.3);
  color: #333333;
}
/* =========================
   13) Utilidades Gradiente Metálico
   ========================= */
/* Borde con gradiente metálico */
.border-metallic {
  border: 2px solid transparent;
  background: linear-gradient(var(--tez-surface), var(--tez-surface)) padding-box, linear-gradient(135deg, #D4AF7A, #9E7C53) border-box;
}
/* Iconos con gradiente metálico */
.icon-metallic {
  background: linear-gradient(135deg, #D4AF7A, #9E7C53);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* =========================
   14) Home Page
   ========================= */
.tez-home-hero {
  position: relative;
  overflow: hidden;
}
.tez-home-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -40% auto;
  width: 340px;
  height: 340px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(230, 138, 46, 0.14) 0%, rgba(230, 138, 46, 0) 72%);
  opacity: 0.75;
}
.tez-home-lead {
  max-width: 62ch;
}
.tez-hero-points {
  display: grid;
  gap: 0.55rem;
  max-width: 58ch;
}
.tez-hero-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  color: var(--tez-muted);
  line-height: 1.45;
  font-size: 0.94rem;
}
.tez-hero-points i {
  color: var(--tez-text-heading);
  margin-top: 0.15rem;
}
.tez-hero-cta-group {
  border: 1px solid rgba(158, 124, 83, 0.18);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(248, 246, 242, 0.92), rgba(238, 236, 231, 0.82));
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(107, 79, 54, 0.08);
}
.tez-section-head p {
  max-width: 64ch;
}
.tez-catalog-card p {
  max-width: 46ch;
}
.tez-catalog-actions .btn {
  flex: 1 1 auto;
}
.tez-product-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 168px;
}
.tez-product-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
/* =========================
   15) Home Promo
   ========================= */
.tez-promo-banner {
  background: linear-gradient(145deg, rgba(232, 230, 225, 0.95), rgba(244, 241, 235, 0.92));
  border: 1px solid rgba(158, 124, 83, 0.22);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(107, 79, 54, 0.08);
}
.tez-promo-image-wrap {
  position: relative;
  width: 100%;
  height: clamp(210px, 24vw, 285px);
  max-height: 300px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(107, 79, 54, 0.12);
}
.tez-promo-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.14) 100%);
}
.tez-promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  display: block;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.tez-promo-banner:hover .tez-promo-image {
  transform: scale(1.03);
}
.tez-promo-panel {
  display: flex;
  flex-direction: column;
  background: radial-gradient(120% 140% at 100% 0%, rgba(230, 138, 46, 0.13), transparent 62%), linear-gradient(165deg, rgba(248, 246, 242, 0.94), rgba(238, 236, 231, 0.9));
  border: 1px solid rgba(158, 124, 83, 0.18);
  border-radius: 14px;
  min-height: 100%;
}
.tez-promo-copy {
  max-width: 46ch;
  line-height: 1.66;
}
@media (max-width: 991.98px) {
  .tez-home-hero::after {
    width: 250px;
    height: 250px;
    inset: auto -12% -42% auto;
  }
  .tez-hero-cta-group {
    padding: 0.9rem;
  }
  .tez-catalog-actions .btn {
    flex: initial;
  }
  .tez-product-body {
    min-height: 156px;
  }
  .tez-promo-image-wrap {
    height: clamp(185px, 52vw, 235px);
    max-height: 235px;
  }
}
@media (max-width: 575.98px) {
  .tez-home-hero .badge-tez {
    font-size: 0.64rem;
  }
  .tez-hero-points li {
    font-size: 0.9rem;
  }
  .tez-product-body {
    min-height: auto;
  }
}
