body {
    background-color: #ff0000 !important;
}
/*
 * Theme Name:  Tractipartes Child
 * Theme URI:   https://tudominio.com
 * Description: Tema hijo para tienda de tractipartes industriales. Estilo "Minimalismo Industrial".
 * Author:      Tu Nombre
 * Author URI:  https://tudominio.com
 * Template:    storefront
 * Version:     1.0.0
 * License:     GNU General Public License v2 or later
 * Text Domain: tractipartes
 */

/* ================================================================
   0. DESIGN TOKENS
   Edita SOLO esta sección para cambiar toda la paleta y tipografía.
   El resto del CSS consume estas variables — nada está "hardcodeado".
   ================================================================ */
:root {
  /* --- Paleta de color --- */
  --tp-navy:        #0D1B2A;   /* Azul marino profundo — fondo header/footer */
  --tp-navy-mid:    #152741;   /* Variante media — fondo subnavegación */
  --tp-blue:        #1A6FC4;   /* Acento azul industrial — CTAs y highlights */
  --tp-blue-light:  #2A8BE0;   /* Hover del acento azul */
  --tp-steel:       #8C96A0;   /* Gris acero — texto secundario, bordes medios */
  --tp-silver:      #CDD3D9;   /* Plata clara — bordes de cards y dividers */
  --tp-surface:     #F2F4F7;   /* Fondo de secciones alternas (no blanco puro) */
  --tp-white:       #FFFFFF;
  --tp-text:        #111827;   /* Texto principal — negro casi puro */
  --tp-text-muted:  #6B7280;   /* Texto secundario — gris neutro */

  /* --- Tipografía --- */
  /* Barlow Condensed: display técnico, carácter industrial sin ser agresivo */
  --tp-font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --tp-font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --tp-font-mono:    'JetBrains Mono', 'Courier New', monospace; /* Para SKUs / referencias */

  /* --- Layout y espaciado --- */
  --tp-container:   1320px;
  --tp-gap:         1.5rem;
  --tp-section-py:  4rem;
  --tp-header-h:    76px;
  --tp-subnav-h:    44px;

  /* --- Bordes --- */
  --tp-radius:      4px;
  --tp-radius-pill: 50px;
  --tp-radius-card: 6px;

  /* --- Sombras --- */
  --tp-shadow-sm:    0 1px 4px rgba(13, 27, 42, 0.06);
  --tp-shadow-card:  0 2px 12px rgba(13, 27, 42, 0.08);
  --tp-shadow-hover: 0 8px 32px rgba(13, 27, 42, 0.14);

  /* --- Transiciones --- */
  --tp-transition:   0.2s ease;
  --tp-transition-s: 0.12s ease;
}


/* ================================================================
   1. RESET BASE
   Mínimo necesario. No reinventamos la rueda — solo corregimos
   lo que Storefront define y nosotros queremos distinto.
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--tp-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--tp-text);
  background: var(--tp-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; padding: 0; margin: 0; }

/* Sobreescribir el color de selección de texto */
::selection {
  background: var(--tp-blue);
  color: var(--tp-white);
}


/* ================================================================
   2. TIPOGRAFÍA BASE
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--tp-font-display);
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: 1.2;
}


/* ================================================================
   3. CONTENEDOR CENTRALIZADO
   Reutilizable en toda la página. Aplica max-width y padding lateral.
   ================================================================ */
.tp-container {
  width: 100%;
  max-width: var(--tp-container);
  margin-inline: auto;
  padding-inline: var(--tp-gap);
}


/* ================================================================
   4. HEADER PRINCIPAL
   Estructura Flexbox de 3 columnas: Logo | Búsqueda | Acciones
   El header es sticky para que la búsqueda siempre sea accesible.
   ================================================================ */
.site-header,
.tp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--tp-navy);
  height: var(--tp-header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  /* Anula el header de Storefront */
  padding: 0 !important;
  border-bottom: none !important;
}

.tp-header__inner {
  width: 100%;
  max-width: var(--tp-container);
  margin-inline: auto;
  padding-inline: var(--tp-gap);
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* 4.1 Logo — flex-shrink:0 evita que se comprima */
.tp-header__logo {
  flex: 0 0 auto;
}

.tp-header__logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* Logo tipográfico de fallback cuando no hay imagen configurada */
.tp-logo-text {
  font-family: var(--tp-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tp-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.tp-logo-text em {
  font-style: normal;
  color: var(--tp-blue);
}

/* 4.2 Búsqueda — flex:1 hace que ocupe todo el espacio disponible */
.tp-header__search {
  flex: 1 1 auto;
  min-width: 0; /* Crucial: evita overflow en flex */
}


/* ================================================================
   5. BARRA DE BÚSQUEDA — PILL
   El elemento más importante del diseño. Versión header (48px)
   y versión hero (58px) — misma base, distinto tamaño.
   ================================================================ */
.tp-search-pill {
  display: flex;
  align-items: center;
  background: var(--tp-white);
  border: 2px solid transparent;
  border-radius: var(--tp-radius-pill);
  height: 48px;
  overflow: hidden;
  transition: border-color var(--tp-transition), box-shadow var(--tp-transition);
}

/* Resalte al enfocar — accesibilidad y feedback visual */
.tp-search-pill:focus-within {
  border-color: var(--tp-blue);
  box-shadow: 0 0 0 3px rgba(26, 111, 196, 0.20);
}

.tp-search-pill input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 1.25rem;
  font-family: var(--tp-font-body);
  font-size: 0.9rem;
  color: var(--tp-text);
  min-width: 0;
}

.tp-search-pill input[type="search"]::placeholder {
  color: var(--tp-text-muted);
}

/* Limpiar UI nativa de Safari para input search */
.tp-search-pill input[type="search"]::-webkit-search-decoration,
.tp-search-pill input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* Separador entre selector de categoría e input */
.tp-search-pill__cat-select {
  border: none;
  outline: none;
  background: transparent;
  padding: 0 0.75rem 0 1rem;
  font-size: 0.82rem;
  font-family: var(--tp-font-body);
  color: var(--tp-text-muted);
  border-right: 1.5px solid var(--tp-silver);
  height: 100%;
  cursor: pointer;
  min-width: 130px;
  max-width: 160px;
  white-space: nowrap;
}

/* Botón de búsqueda dentro de la píldora */
.tp-search-pill__btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--tp-blue);
  border: none;
  color: var(--tp-white);
  padding: 0 1.5rem;
  height: 100%;
  font-family: var(--tp-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background var(--tp-transition-s);
  white-space: nowrap;
}

.tp-search-pill__btn:hover {
  background: var(--tp-blue-light);
}

.tp-search-pill__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* 4.3 Íconos de acción (Cuenta / Carrito) */
.tp-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.tp-header__action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.5rem 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--tp-radius);
  transition: color var(--tp-transition-s), background var(--tp-transition-s);
  position: relative;
  cursor: pointer;
  background: transparent;
  border: none;
}

.tp-header__action-btn:hover {
  color: var(--tp-white);
  background: rgba(255, 255, 255, 0.08);
}

.tp-header__action-btn svg {
  width: 22px;
  height: 22px;
}

.tp-header__action-btn .tp-action-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Badge contador del carrito */
.tp-cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--tp-blue);
  color: var(--tp-white);
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}


/* ================================================================
   6. SUBNAVEGACIÓN — Menú de categorías
   Franja delgada bajo el header. Texto ALL CAPS, small.
   El borde inferior azul indica ítem activo — efecto underline.
   ================================================================ */
.tp-subnav {
  background: var(--tp-navy-mid);
  height: var(--tp-subnav-h);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: var(--tp-header-h);
  z-index: 999;
}

.tp-subnav__inner {
  height: 100%;
  max-width: var(--tp-container);
  margin-inline: auto;
  padding-inline: var(--tp-gap);
  display: flex;
  align-items: center;
}

/* Restar estilos que Storefront aplica al nav */
.tp-subnav .tp-subnav__list,
.tp-subnav ul {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 0;
}

.tp-subnav ul li {
  height: 100%;
  display: flex;
  align-items: center;
}

.tp-subnav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color var(--tp-transition-s), border-color var(--tp-transition-s), background var(--tp-transition-s);
}

.tp-subnav ul li a:hover,
.tp-subnav ul li.current-menu-item > a,
.tp-subnav ul li.current-cat > a {
  color: var(--tp-white);
  border-bottom-color: var(--tp-blue);
  background: rgba(255, 255, 255, 0.05);
}


/* ================================================================
   7. HERO — Sección de búsqueda principal
   Firma visual del diseño: textura de puntos tipo plano técnico.
   Comunica "precisión" sin imágenes pesadas.
   ================================================================ */
.tp-hero {
  background: var(--tp-navy);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

/* Textura de fondo: grid de puntos sutiles — patrón de ingeniería */
.tp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.tp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

/* Eyebrow label — pequeño, acento azul, CAPS */
.tp-hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-blue);
  margin-bottom: 0.75rem;
}

/* Título principal — display condensado, grande pero contenido */
.tp-hero__title {
  font-family: var(--tp-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--tp-white);
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* Buscador hero — mismo componente, versión agrandada */
.tp-hero__search {
  max-width: 700px;
  margin-inline: auto;
}

.tp-hero__search .tp-search-pill {
  height: 58px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}

.tp-hero__search .tp-search-pill input[type="search"] {
  font-size: 1rem;
  padding: 0 1.5rem;
}

.tp-hero__search .tp-search-pill__btn {
  padding: 0 2rem;
  font-size: 0.95rem;
}


/* ================================================================
   8. CHIPS DE CATEGORÍAS
   Grid responsivo auto-fill. Borde outline que se activa en hover.
   Íconos opcionales en emoji para carga cero.
   ================================================================ */
.tp-categories {
  padding: 2.5rem 0;
  background: var(--tp-white);
  border-bottom: 1px solid var(--tp-silver);
}

.tp-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
}

.tp-category-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  border: 1.5px solid var(--tp-silver);
  border-radius: var(--tp-radius-card);
  color: var(--tp-text);
  text-align: center;
  transition: border-color var(--tp-transition), box-shadow var(--tp-transition), color var(--tp-transition);
}

.tp-category-chip:hover {
  border-color: var(--tp-blue);
  color: var(--tp-blue);
  box-shadow: var(--tp-shadow-sm);
}

.tp-category-chip__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.tp-category-chip__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}


/* ================================================================
   9. SECCIÓN DE PRODUCTOS
   Contenedor de las secciones de productos. Alterna superficie
   y fondo blanco para crear ritmo visual sin fricciones.
   ================================================================ */
.tp-products-section {
  padding: var(--tp-section-py) 0;
  background: var(--tp-surface);
}

.tp-products-section--white {
  background: var(--tp-white);
}

/* Encabezado de sección: título izquierda, "ver todos" derecha */
.tp-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--tp-silver);
}

.tp-section-title {
  font-family: var(--tp-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--tp-navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tp-section-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tp-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--tp-transition-s);
}

.tp-section-link:hover {
  color: var(--tp-blue-light);
}


/* ================================================================
   10. TARJETAS DE PRODUCTO — WooCommerce Overrides
   Todos los selectores llevan !important para ganar al CSS de
   Storefront sin necesidad de aumentar la especificidad con nesting.
   ================================================================ */

/* 10.1 — Grid de WooCommerce: de float a CSS Grid */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.25rem !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: both !important;
}

/* 10.2 — Tarjeta individual: columna flex para empujar botón al fondo */
.woocommerce ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  background: var(--tp-white) !important;
  border: 1.5px solid var(--tp-silver) !important;
  border-radius: var(--tp-radius-card) !important;
  overflow: hidden !important;
  box-shadow: var(--tp-shadow-card) !important;
  transition: box-shadow var(--tp-transition), border-color var(--tp-transition), transform var(--tp-transition) !important;
  margin: 0 !important;
  padding: 0 0 1rem !important;
  float: none !important;
  width: auto !important;
  text-align: left !important;
}

/* Elevación y border en hover de la card */
.woocommerce ul.products li.product:hover {
  box-shadow: var(--tp-shadow-hover) !important;
  border-color: var(--tp-steel) !important;
  transform: translateY(-3px) !important;
}

/* 10.3 — Imagen del producto: fondo superficie, altura fija, contain */
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
  width: 100% !important;
  height: 200px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: var(--tp-surface) !important;
  padding: 1rem !important;
  transition: transform var(--tp-transition) !important;
  border-radius: 0 !important;
}

/* Zoom sutil de imagen en hover — 3% es suficiente */
.woocommerce ul.products li.product:hover a img {
  transform: scale(1.04) !important;
}

/* 10.4 — Título del producto */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  padding: 0.75rem 1rem 0 !important;
  font-family: var(--tp-font-body) !important;
  font-size: 0.87rem !important;
  font-weight: 600 !important;
  color: var(--tp-text) !important;
  line-height: 1.4 !important;
  margin-bottom: 0.2rem !important;
  /* Limitar a 2 líneas con ellipsis */
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* 10.5 — SKU / referencia debajo del título */
.woocommerce ul.products li.product .tp-sku {
  padding: 0 1rem !important;
  display: block !important;
}

/* 10.6 — Precio */
.woocommerce ul.products li.product .price {
  display: block !important;
  padding: 0.25rem 1rem !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--tp-navy) !important;
  margin: 0 0 auto !important;
  line-height: 1.3 !important;
}

.woocommerce ul.products li.product .price del {
  color: var(--tp-steel) !important;
  font-weight: 400 !important;
  font-size: 0.82rem !important;
  margin-right: 0.4rem !important;
  opacity: 0.8 !important;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none !important;
}

/* 10.7 — Botón "Agregar al carrito" — outline style
   Sin relleno hasta hover. Refleja precisión: solo lo justo. */
.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product .button {
  display: block !important;
  width: calc(100% - 2rem) !important;
  margin: 1rem 1rem 0 !important;
  padding: 0.6rem 1rem !important;
  background: transparent !important;
  color: var(--tp-navy) !important;
  border: 1.5px solid var(--tp-navy) !important;
  border-radius: var(--tp-radius) !important;
  font-family: var(--tp-font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: background var(--tp-transition-s), color var(--tp-transition-s) !important;
  box-shadow: none !important;
  line-height: 1.4 !important;
}

/* Fill completo al hover — inversión de colores */
.woocommerce ul.products li.product .button.add_to_cart_button:hover,
.woocommerce ul.products li.product .button:hover {
  background: var(--tp-navy) !important;
  color: var(--tp-white) !important;
}

/* Estado "ya añadido" — acento azul */
.woocommerce ul.products li.product .button.added,
.woocommerce ul.products li.product .added_to_cart {
  background: var(--tp-blue) !important;
  color: var(--tp-white) !important;
  border-color: var(--tp-blue) !important;
}

/* Ocultar estrellas en el loop — demasiado ruido visual */
.woocommerce ul.products li.product .star-rating {
  display: none !important;
}

/* Ocultar etiqueta "sale" default de WooCommerce — la redefinimos nosotros */
.woocommerce ul.products li.product .onsale {
  display: none !important;
}


/* ================================================================
   11. UTILITIES
   ================================================================ */

/* SKU/referencia — fuente monospace para distinción tipográfica */
.tp-sku {
  font-family: var(--tp-font-mono);
  font-size: 0.72rem;
  color: var(--tp-text-muted);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 0.1rem;
}

/* Línea de acento — separador de sección */
.tp-accent-line {
  width: 36px;
  height: 2px;
  background: var(--tp-blue);
  margin-bottom: 1rem;
}


/* ================================================================
   12. FOOTER
   ================================================================ */
.tp-footer {
  background: var(--tp-navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 3.5rem 0 2rem;
}

.tp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.tp-footer__brand-logo {
  font-family: var(--tp-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--tp-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.tp-footer__brand-logo em {
  font-style: normal;
  color: var(--tp-blue);
}

.tp-footer__desc {
  font-size: 0.84rem;
  line-height: 1.75;
  max-width: 260px;
}

.tp-footer__col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-white);
  margin-bottom: 1rem;
}

.tp-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tp-footer__links a,
.tp-footer__links li {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--tp-transition-s);
}

.tp-footer__links a:hover {
  color: var(--tp-white);
}

.tp-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.77rem;
  gap: 1rem;
}


/* ================================================================
   13. RESPONSIVE
   ================================================================ */

/* Tablet landscape — 3 columnas de productos */
@media (max-width: 1100px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .tp-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  :root {
    --tp-header-h:    60px;
    --tp-section-py:  2.5rem;
  }

  .tp-logo-text { font-size: 1.2rem; }

  /* Ocultar label de botones de acción para ahorrar espacio */
  .tp-header__action-btn .tp-action-label { display: none; }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .tp-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tp-subnav ul li a {
    font-size: 0.7rem;
    padding: 0 0.6rem;
  }

  /* El selector de categorías ocupa demasiado en mobile */
  .tp-hero__search .tp-search-pill__cat-select {
    display: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .tp-header__inner { gap: 0.75rem; }
  .tp-logo-text { font-size: 1rem; }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .woocommerce ul.products li.product a img {
    height: 160px !important;
  }

  .tp-hero { padding: 2rem 0 1.5rem; }
  .tp-hero__title { font-size: 1.4rem; }

  .tp-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tp-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tp-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .tp-section-header {
    flex-direction: column;
    gap: 0.5rem;
  }
}
