/**
 * Lejos - Sistema de estilos LESS
 * Entry point principal - importa todos los parciales
 */
/**
 * Variables LESS - Sistema de diseño Lovable
 * Extraídas del repositorio pest-catalog-fast
 */
/**
 * Base LESS - Reset y estilos base
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}
h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
h2 {
  font-size: 1.875rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
p {
  margin-bottom: 1rem;
}
a {
  color: hsl(98, 55%, 20%);
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
a:hover {
  color: hsl(160, 60%, 45%);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
}
/**
 * Layout LESS - Sistema de grid, contenedores y estructura
 * Layout minimalista inspirado en Goodnature
 */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-fluid {
  width: 100%;
  padding: 0 2rem;
}
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.m-0 {
  margin: 0;
}
.m-1 {
  margin: 0.25rem;
}
.m-2 {
  margin: 0.5rem;
}
.m-3 {
  margin: 0.75rem;
}
.m-4 {
  margin: 1rem;
}
.m-5 {
  margin: 1.25rem;
}
.m-6 {
  margin: 1.5rem;
}
.m-8 {
  margin: 2rem;
}
.m-10 {
  margin: 2.5rem;
}
.m-12 {
  margin: 3rem;
}
.m-16 {
  margin: 4rem;
}
.m-20 {
  margin: 5rem;
}
.m-24 {
  margin: 6rem;
}
.m-32 {
  margin: 8rem;
}
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-24 {
  margin-top: 6rem;
}
.mt-32 {
  margin-top: 8rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.mb-24 {
  margin-bottom: 6rem;
}
.mb-32 {
  margin-bottom: 8rem;
}
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-12 {
  padding: 3rem;
}
.p-16 {
  padding: 4rem;
}
.p-20 {
  padding: 5rem;
}
.p-24 {
  padding: 6rem;
}
.p-32 {
  padding: 8rem;
}
.d-flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.align-center {
  align-items: center;
}
.align-baseline {
  align-items: baseline;
}
.align-stretch {
  align-items: stretch;
}
.flex-1 {
  flex: 1;
}
.flex-auto {
  flex: auto;
}
.flex-none {
  flex: none;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.position-fixed {
  position: fixed;
}
.position-sticky {
  position: sticky;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
.overflow-scroll {
  overflow: scroll;
}
.hidden {
  display: none;
}
.visible {
  display: block;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
/**
 * Sections LESS - Replicando estilos exactos de Lovable
 */
/**
 * Mixins LESS - Funciones reutilizables
 * Sistema de mixins para mantener consistencia
 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  background-color: hsl(0, 0%, 100%);
  color: hsl(120, 40%, 15%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}
.header {
  border-bottom: 1px solid hsl(140, 20%, 90%);
  background-color: hsl(0, 0%, 100%);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 0 0.5rem;
}
.header-logo {
  max-height: 60px;
  color: hsl(98, 55%, 20%);
}
.header-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(98, 55%, 20%);
  margin: 0;
}
.header-subtitle {
  text-align: center;
  color: hsl(120, 10%, 45%);
  font-size: 1rem;
}
.search-section {
  background-color: hsla(140, 30%, 95%, 0.3);
  padding: 3rem 0;
}
.search-wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.search-input-container {
  position: relative;
  display: flex;
  align-items: center;
  background: hsl(0, 0%, 100%);
  border: 2px solid hsl(140, 20%, 90%);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease-in-out;
}
.search-input-container:focus-within {
  border-color: hsl(98, 55%, 20%);
  box-shadow: 0 0 0 3px hsla(98, 55%, 20%, 0.1);
}
.search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  color: hsl(120, 40%, 15%);
}
.search-input::placeholder {
  color: hsl(120, 10%, 45%);
}
.search-icon {
  height: 1.25rem;
  width: 1.25rem;
  color: hsl(120, 10%, 45%);
  margin-right: 0.5rem;
}
.search-results-count {
  text-align: center;
  margin-top: 1rem;
  color: hsl(120, 10%, 45%);
}
.products-section {
  padding: 3rem 0;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.product-card {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 1px solid hsl(140, 20%, 90%);
  background: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.product-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: hsl(140, 30%, 95%);
  position: relative;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}
.product-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: hsl(120, 40%, 15%);
  transition: color 0.2s ease-in-out;
}
.product-card:hover .product-card-title {
  color: hsl(160, 60%, 45%);
}
.product-card-description {
  color: hsl(120, 10%, 45%);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-prices {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: auto;
  margin-bottom: 0.75rem;
}
.product-card-price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0.5rem;
  background: hsla(98, 55%, 20%, 0.03);
  border-radius: calc(0.75rem - 4px);
  font-size: 0.875rem;
}
.product-card-price-item .price-label {
  color: hsl(120, 10%, 45%);
  font-weight: 500;
  font-size: 0.75rem;
}
.product-card-price-item .price-value {
  color: hsl(98, 55%, 20%);
  font-weight: 700;
  font-size: 0.875rem;
}
.product-card-price-ml {
  border-left: 3px solid #ffdb00;
}
.product-card-price-shop {
  border-left: 3px solid hsl(98, 55%, 20%);
}
.product-card-price-whatsapp {
  border-left: 3px solid hsl(142, 70%, 49%);
}
.product-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(98, 55%, 20%);
  margin-top: auto;
  margin-bottom: 0;
  padding: 0.5rem 0.75rem;
  background: hsla(98, 55%, 20%, 0.05);
  border-radius: calc(0.75rem - 2px);
  text-align: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s ease-in-out;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  cursor: pointer;
  text-decoration: none;
}
.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.btn-primary {
  background-color: hsl(98, 55%, 20%);
  color: hsl(0, 0%, 100%);
}
.btn-primary:hover {
  background-color: hsl(98, 55%, 15%);
}
.btn-full {
  width: 100%;
}
.empty-state {
  text-align: center;
  padding: 4rem 0;
}
.empty-state-icon {
  height: 4rem;
  width: 4rem;
  color: hsl(120, 10%, 45%);
  margin: 0 auto 1rem;
}
.empty-state-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(120, 40%, 15%);
  margin-bottom: 0.5rem;
}
.empty-state-message {
  color: hsl(120, 10%, 45%);
}
.footer {
  border-top: 1px solid hsl(140, 20%, 90%);
  background-color: hsl(0, 0%, 100%);
  margin-top: 4rem;
}
.footer-content {
  padding: 2rem 0;
  text-align: center;
  color: hsl(120, 10%, 45%);
}
.product-detail-header {
  padding: 1rem 0;
}
.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  border: none;
  color: hsl(120, 40%, 15%);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  border-radius: calc(0.75rem - 2px);
}
.back-button svg {
  width: 16px;
  height: 16px;
}
.back-button:hover {
  background-color: hsla(160, 60%, 45%, 0.1);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .product-detail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.product-image-card {
  border-radius: 0.75rem;
  border: 1px solid hsl(140, 20%, 90%);
  background-color: hsl(0, 0%, 100%);
  overflow: hidden;
}
.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.product-gallery-thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.product-gallery-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid hsl(140, 20%, 90%);
  border-radius: calc(0.75rem - 2px);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.product-gallery-thumbnail.active,
.product-gallery-thumbnail:hover {
  border-color: hsl(98, 55%, 20%);
  transform: scale(1.05);
}
.product-gallery-thumbnail:active {
  transform: scale(0.95);
}
.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-detail-header-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 1px solid transparent;
  width: fit-content;
  margin-bottom: 0.75rem;
}
.product-badge-success {
  background-color: hsl(142, 71%, 45%);
  color: hsl(0, 0%, 100%);
}
.product-detail-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(120, 40%, 15%);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .product-detail-title {
    font-size: 2.25rem;
  }
}
.product-detail-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(98, 55%, 20%);
  margin-bottom: 1rem;
}
.product-detail-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-detail-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(120, 40%, 15%);
  margin-bottom: 0;
}
.product-detail-description {
  color: hsl(120, 10%, 45%);
  line-height: 1.75;
  margin-bottom: 0;
}
.product-detail-description:last-child {
  margin-bottom: 0;
}
.product-detail-description strong {
  font-weight: 600;
  color: hsl(120, 40%, 15%);
}
.product-detail-description ul,
.product-detail-description ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.product-detail-description ul li,
.product-detail-description ol li {
  margin-bottom: 0.5rem;
}
.product-description-collapsed {
  max-height: 125px;
  overflow: hidden;
  position: relative;
}
.product-description-collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, hsl(0, 0%, 100%));
}
.btn-toggle-description {
  background: transparent;
  border: none;
  color: hsl(98, 55%, 20%);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 0;
  text-decoration: underline;
  transition: color 0.15s ease-in-out;
}
.btn-toggle-description:hover {
  color: hsl(160, 60%, 45%);
}
.product-detail-description-container {
  margin-bottom: 0.5rem;
}
.product-detail-actions-message {
  color: hsl(120, 10%, 45%);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-align: center;
}
.product-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.btn-large {
  height: 2.75rem;
  padding: 0 2rem;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-large svg {
  width: 20px;
  height: 20px;
}
.btn-whatsapp {
  background-color: hsl(142, 70%, 49%);
  color: hsl(0, 0%, 100%);
  border: 1px solid hsl(142, 70%, 49%);
}
.btn-whatsapp:hover {
  background-color: hsl(142, 70%, 44%);
}
.btn-mercadolibre {
  background-color: #ffdb00;
  color: #000;
  border: 1px solid #ffdb00;
}
.btn-mercadolibre:hover {
  background-color: #e6c500;
}
.btn-icon {
  height: 20px;
  width: auto;
  object-fit: contain;
}
.btn-icon-puraire {
  height: 20px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.btn-price {
  font-weight: 700;
  font-size: 1rem;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: calc(0.75rem - 2px);
}
.product-detail-contact {
  padding-top: 1rem;
  border-top: 1px solid hsl(140, 20%, 90%);
}
.product-detail-contact p {
  font-size: 0.875rem;
  color: hsl(120, 10%, 45%);
  margin: 0;
}
/**
 * Components LESS - Componentes básicos
 */
.logo-lejos {
  max-height: 100px;
}
