:root {
  --ink: #281f1a;
  --brown: #5e4a3d;
  --copper: #b7733f;
  --copper-dark: #95592f;
  --cream: #f3ede5;
  --paper: #fbf8f3;
  --line: #ded2c6;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 243, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(40, 31, 26, 0.03);
}
section,
footer {
  scroll-margin-top: 110px;
}
@media (max-width: 600px) {
  section,
  footer {
    scroll-margin-top: 80px;
  }
}
.nav {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo {
  width: 224px;
  height: 92px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.menu {
  display: flex;
  gap: 34px;
  align-items: center;
  color: var(--brown);
  font-size: 0.94rem;
}
.menu a {
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width 0.3s ease;
}
.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}
.menu a:hover,
.menu a.active {
  color: var(--copper);
}
.hamburger {
  display: none;
}
.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--copper);
  background: var(--copper);
  color: white;
  text-transform: uppercase;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.045em;
}
.button:hover {
  background: var(--copper-dark);
}
.button.outline {
  background: transparent;
  color: var(--ink);
  border-color: #ccb9a8;
}

/* HERO */
.hero {
  background: var(--cream);
}
.hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: 46% 54%;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px 48px 0;
}
.eyebrow {
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 21px;
}
.hero h1 {
  max-width: 510px;
  font-size: clamp(3.1rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin-bottom: 23px;
}
.hero h1 em {
  font-style: normal;
  color: var(--copper);
}
.hero p {
  max-width: 515px;
  color: var(--brown);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 29px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-photo {
  min-height: 520px;
  position: relative;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}
.hero-photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    rgba(243, 237, 229, 0.72) 15%,
    rgba(243, 237, 229, 0.18) 34%,
    transparent 51%
  );
}
.hero-photo::after {
  content: "RECETAS · EXPERIENCIA · CRECIMIENTO";
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 25px;
  color: white;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* SEGUNDA SECCIÓN: MISMO ANCHO QUE EL HERO */
/* SEGUNDA SECCIÓN: MISMO ANCHO QUE EL HERO */
.values-section {
  background: var(--paper);
  padding: 0 0 42px;
}

.values-layout {
  display: grid;
  grid-template-columns: 44% 56%;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--paper);
  align-items: stretch;
}

/* Slider (Left Column) */
.values-slider-wrapper {
  padding: 16px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fcf8f3;
}

.values-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(74, 50, 32, 0.08);
  border: 1px solid rgba(183, 115, 63, 0.15);
}

.values-slider .slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.values-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.03);
}

.values-slider .slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.values-slider .slide picture,
.values-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 18px;
  background: linear-gradient(to top, rgba(35, 23, 14, 0.82) 0%, rgba(35, 23, 14, 0) 100%);
  color: #ffffff;
  pointer-events: none;
}

.slide-caption span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.3px;
  color: #f8f0e7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(183, 115, 63, 0.25);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.slider-arrow:hover {
  background: #ffffff;
  color: var(--copper);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.slider-arrow.prev {
  left: 12px;
}

.slider-arrow.next {
  right: 12px;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--copper);
  width: 22px;
  border-radius: 6px;
}

/* Values Section (Full Width 4 Columns) */
.values-section {
  background: var(--paper);
  padding: 0 0 42px;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--paper);
}

.value {
  min-height: 200px;
  padding: 30px 28px 27px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.value:last-child {
  border-right: 0;
}

.value-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(183, 115, 63, 0.25);
  border-radius: 50%;
  background: rgba(183, 115, 63, 0.08);
  color: var(--copper);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value:hover .value-icon {
  transform: translateY(-3px) scale(1.05);
  background: rgba(183, 115, 63, 0.15);
  border-color: rgba(183, 115, 63, 0.45);
  box-shadow: 0 4px 12px rgba(183, 115, 63, 0.18);
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  margin-bottom: 8px;
  text-align: center;
  width: 100%;
}

.value p {
  color: var(--brown);
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: center;
  max-width: 260px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    order: 3;
  }
  .nav > .button {
    order: 2;
  }
  .hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--ink);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--paper);
    border-left: 1px solid var(--line);
    padding: 120px 40px 40px;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
    box-shadow: -10px 0 30px rgba(40, 31, 26, 0.05);
  }
  .menu.active {
    right: 0;
  }
  .menu a {
    font-size: 1.2rem;
    font-weight: 600;
    width: fit-content;
  }
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(40, 31, 26, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
    z-index: 990;
  }
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-right: 0;
  }
  .hero-photo {
    min-height: 420px;
  }
  .values {
    grid-template-columns: repeat(2, 1fr);
  }
  .value:nth-child(2) {
    border-right: 0;
  }
  .value:nth-child(1),
  .value:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .nav > .button {
    display: none;
  }
  .logo {
    width: 176px;
    height: 76px;
  }
  .hero-copy {
    padding: 46px 0 38px;
  }
  .hero h1 {
    font-size: 3.35rem;
  }
  .hero-photo {
    min-height: 360px;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .value {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .value:last-child {
    border-bottom: 0;
  }
}

/* SECCIÓN: NUESTRA RAZÓN DE SER */
.purpose-section {
  background: #ffffff;
  padding: 78px 0 86px;
}
.purpose-grid {
  display: grid;
  grid-template-columns: 54% 46%;
  gap: 64px;
  align-items: center;
}
.purpose-visual {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background: var(--brown);
}
.purpose-visual::before {
  content: "";
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  z-index: 5;
  pointer-events: none;
}
.purpose-visual::after {
  content: "OFICIO";
  position: absolute;
  right: -42px;
  bottom: 200px;
  color: rgba(255, 255, 255, 0.26);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.5rem;
  letter-spacing: 0.06em;
  transform: rotate(-90deg);
  transform-origin: center;
  z-index: 5;
  pointer-events: none;
}

/* Purpose Slider inside Purpose Visual */
.purpose-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.purpose-slider .slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.purpose-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}
.purpose-slider .slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.purpose-slider .slide picture,
.purpose-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.purpose-slider .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(183, 115, 63, 0.52), rgba(73, 49, 37, 0.88));
  z-index: 3;
  pointer-events: none;
}

/* Purpose Slider Controls */
.purpose-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251, 248, 243, 0.88);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.purpose-slider .slider-arrow:hover {
  background: #ffffff;
  color: var(--copper);
  transform: translateY(-50%) scale(1.08);
}
.purpose-slider .slider-arrow.prev {
  left: 16px;
}
.purpose-slider .slider-arrow.next {
  right: 16px;
}
.purpose-slider .slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.purpose-slider .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.purpose-slider .dot.active {
  background: #ffffff;
  width: 24px;
  border-radius: 5px;
}
.purpose-kicker {
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.purpose-title {
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4.7vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.purpose-text {
  max-width: 650px;
  color: var(--brown);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 26px;
}
.purpose-quote {
  max-width: 650px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.34;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .purpose-visual {
    min-height: 420px;
  }
}
@media (max-width: 600px) {
  .purpose-section {
    padding: 58px 0 64px;
  }
  .purpose-visual {
    min-height: 340px;
  }
  .purpose-visual::before {
    inset: 28px;
  }
  .purpose-visual::after {
    font-size: 4rem;
    right: -30px;
  }
  .purpose-title {
    font-size: 3.2rem;
  }
  .purpose-quote {
    font-size: 1.35rem;
  }
}

/* PRODUCTOS */
.products-section {
  background: var(--cream);
  padding: 88px 0 96px;
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}
.section-heading h2 {
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  line-height: 1;
  margin-bottom: 18px;
}
.section-heading p {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
}
.section-rule {
  width: 60px;
  height: 1px;
  background: var(--copper);
  margin: 18px auto 0;
}
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.category-tab {
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--brown);
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
}
.category-tab.active {
  background: var(--copper);
  border-color: var(--copper);
  color: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  min-height: 410px;
  display: flex;
  flex-direction: column;
}
.product-media {
  min-height: 245px;
  display: grid;
  place-items: center;
  position: relative;
  background: linear-gradient(180deg, #fcfaf7 0%, #f5f1eb 100%);
  padding: 24px 16px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.product-media img {
  max-width: 90%;
  max-height: 210px;
  object-fit: contain;
  display: block;
  cursor: pointer;
  filter: drop-shadow(0 8px 14px rgba(60, 40, 20, 0.12));
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.35s ease;
}
.product-media img:hover {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 14px 20px rgba(60, 40, 20, 0.20));
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--copper-dark);
  background: #fffaf5;
  padding: 7px 10px;
  border-radius: 999px;
  z-index: 2;
}
.product-art {
  width: 112px;
  height: 135px;
  border-radius: 12px 12px 20px 20px;
  background: linear-gradient(160deg, #d7b28a, #aa7146);
  position: relative;
  box-shadow: 0 18px 24px rgba(63, 42, 29, 0.12);
}
.product-art::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}
.product-art::after {
  content: "HARINA";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  text-align: center;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}
.product-art.jar {
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(160deg, #9a6c42, #5f3d2b);
}
.product-art.oil {
  width: 82px;
  border-radius: 16px 16px 12px 12px;
  background: linear-gradient(160deg, #f2c45f, #d69324);
}
.product-art.box {
  width: 130px;
  height: 110px;
  border-radius: 8px;
  background: linear-gradient(160deg, #d7c4a5, #9e7f58);
}
.product-art.box::after {
  content: "PREMEZCLA";
}
.product-card-body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.product-card p {
  color: var(--brown);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 20px;
}
.product-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.product-format {
  font-size: 0.78rem;
  background: #f3eee8;
  padding: 7px 10px;
  border-radius: 5px;
}
.product-link {
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* IDEAS */
.ideas-section {
  background: var(--paper);
  padding: 92px 0;
}
.ideas-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 42px;
}
.ideas-kicker {
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.ideas-intro h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.91;
  letter-spacing: -0.045em;
}
.ideas-intro p {
  color: var(--brown);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 530px;
}
.ideas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.idea-card {
  border: 1px solid var(--line);
  background: #fff;
}
.idea-image {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}
.idea-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.idea-card:hover .idea-image img {
  transform: scale(1.05);
}
.idea-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #fff;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--copper-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}
.idea-body {
  padding: 26px;
}
.idea-time {
  font-size: 0.76rem;
  color: var(--brown);
  margin-bottom: 16px;
}
.idea-body h3 {
  font-size: 1.55rem;
  line-height: 1.15;
  margin-bottom: 14px;
}
.idea-body p {
  color: var(--brown);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* EQUIPO */
.team-section {
  background: #fff;
  padding: 92px 0 84px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.team-card {
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}
.team-card.team-jose {
  background-image: url("../img/jose_suarez.webp");
  background-position: center 15%;
}
.team-card.team-angel {
  background-image: url("../img/angel_brandan.webp");
  background-position: center 15%;
}
.team-card.team-agustin {
  background-image: url("../img/agustin_fleitas.webp");
  background-position: center 15%;
}
.team-card.team-martin {
  background-image: url("../img/martin.webp");
  background-position: center 10%;
}
.team-card.team-estefy {
  background-image: url("../img/estefy.webp");
  background-position: center 10%;
}
.team-card::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(to top, rgba(24, 18, 15, 0.95) 0%, rgba(24, 18, 15, 0.6) 60%, transparent 100%);
  transition: opacity 0.3s ease;
}
.team-info {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
}
.team-role {
  color: #d69a63;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.team-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

/* TEAM CONTACTS & SOCIAL BUTTONS */
.team-contacts {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.team-contact-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-contact-btn:hover {
  transform: translateY(-3px) scale(1.08);
}
.team-contact-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}
.team-contact-btn.email:hover {
  background: #d69a63;
  border-color: #d69a63;
  color: #fff;
  box-shadow: 0 4px 12px rgba(214, 154, 99, 0.4);
}
.team-contact-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}
.team-contact-btn.linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.4);
}
.team-values {
  border-top: 1px solid var(--line);
  margin-top: 54px;
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 50px;
}
.team-value {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}
.team-value-icon {
  color: var(--copper);
  font-size: 1.5rem;
}
.team-value strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 6px;
}
.team-value p {
  color: var(--brown);
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-footer {
  background: #1d1816;
  color: #d9cec5;
  padding: 60px 0 28px;
  border-top: 2px solid var(--copper);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 36px;
  align-items: stretch;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.footer-col-header {
  margin-bottom: 4px;
}
.footer-col-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-col-header h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}
.footer-logo {
  width: 250px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 0 8px;
  background: #f7f1e9;
  padding: 12px 18px;
  border-radius: 6px;
}
.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.fiscal-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fiscal-info-list li {
  font-size: 0.88rem;
  color: #b7a79c;
  background: rgba(255, 255, 255, 0.03);
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.4;
}
.fiscal-info-list li strong {
  color: #ffffff;
  font-weight: 600;
}
.fiscal-info-list li a {
  color: var(--copper);
  text-decoration: none;
  transition: color 0.2s ease;
}
.fiscal-info-list li a:hover {
  color: #ffffff;
}
.contact-whatsapp-action {
  margin-top: 4px;
}
.whatsapp-button {
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.whatsapp-button:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}
.whatsapp-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}
.socials-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-card:hover {
  background: rgba(183, 115, 63, 0.15);
  border-color: var(--copper);
  color: var(--copper);
  transform: translateY(-2px);
}

/* ==========================================================================
   Instagram Reel Card Component
   ========================================================================== */
.instagram-reel-preview {
  margin-top: 14px;
  width: 100%;
}
.reel-card-link {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  background: #191412;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.reel-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 48, 108, 0.6);
  box-shadow: 0 14px 32px rgba(225, 48, 108, 0.3);
}
.reel-thumbnail-wrapper {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
}
.reel-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease;
  filter: brightness(0.8);
}
.reel-card-link:hover .reel-bg-img {
  transform: scale(1.06);
  filter: brightness(0.92);
}
.reel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.85) 100%
  );
  pointer-events: none;
}
.reel-header-badge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ig-avatar-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
  border: 1px solid #111;
}
.ig-user-info {
  display: flex;
  flex-direction: column;
}
.ig-username {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}
.ig-reel-tag {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.reel-play-btn svg {
  margin-left: 3px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.reel-card-link:hover .reel-play-btn {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  transform: translate(-50%, -50%) scale(1.12);
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(225, 48, 108, 0.55);
}
.reel-footer-info {
  position: relative;
  z-index: 2;
}
.reel-caption {
  font-size: 0.78rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}
.reel-stats {
  display: flex;
  gap: 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.reel-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: filter 0.2s ease;
}
.reel-card-link:hover .reel-action-bar {
  filter: brightness(1.1);
}
.reel-action-bar .arrow-icon {
  transition: transform 0.25s ease;
}
.reel-card-link:hover .reel-action-bar .arrow-icon {
  transform: translateX(4px);
}
.socials-secondary {
  margin-top: 10px;
}
.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #b7a79c;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.social-chip:hover {
  background: rgba(24, 119, 242, 0.15);
  border-color: #1877f2;
  color: #ffffff;
}
.footer-map-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.map-iframe-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1d1714;
}
.map-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-socials-col {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-socials-col {
    grid-column: span 1;
  }
  .footer-logo {
    width: 220px;
  }
}
.footer-logo {
  width: 330px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 0 22px;
  background: #f7f1e9;
  padding: 18px 24px;
  border-radius: 2px;
}
.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.footer-brand p {
  max-width: 420px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #b7a79c;
}
.footer-title {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  margin-bottom: 20px;
}
.footer-list {
  list-style: none;
  display: grid;
  gap: 13px;
  color: #b7a79c;
  font-size: 0.86rem;
  line-height: 1.5;
}
.footer-list a:hover {
  color: #fff;
}
.socials {
  display: flex;
  gap: 11px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.social {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  transition: 0.2s ease;
}
.social svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.social:hover {
  color: #fff;
  border-color: var(--copper);
  background: rgba(183, 115, 63, 0.14);
  transform: translateY(-1px);
}
.social.whatsapp {
  background: #2f8f5b;
  border-color: #2f8f5b;
}
.social.whatsapp:hover {
  background: #27794c;
  border-color: #27794c;
}
.footer-cta {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}
.footer-cta p {
  color: #b7a79c;
  font-size: 0.86rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.whatsapp-button {
  min-height: 48px;
  width: 100%;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #2f8f5b;
  color: #fff;
  font-size: 0.79rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: 0.2s ease;
}
.whatsapp-button:hover {
  background: #27794c;
}
.whatsapp-button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 26px;
  color: #7f726a;
  font-size: 0.75rem;
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bottom a:hover {
  color: #cbbdb4;
}
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-logo {
    width: 280px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* RESPONSIVE LAYOUT ADDITIONS FOR GRIDS */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .ideas-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ideas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .ideas-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* RICH PRODUCT DETAIL MODAL STYLES */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background-color: rgba(24, 18, 15, 0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  padding: 20px;
  overflow-y: auto;
}
.modal.active {
  display: flex;
  opacity: 1;
}
.modal-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 36px 32px;
}
.modal.active .modal-card {
  transform: scale(1);
}
.modal-card .modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.05);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
  border: none;
  z-index: 10;
}
.modal-card .modal-close:hover {
  background: var(--copper);
  color: #fff;
  transform: scale(1.08);
}
.modal-card-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}
.modal-card-media {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}
.modal-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.modal-card-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  color: var(--ink);
  margin: 10px 0 6px;
  line-height: 1.25;
}
.modal-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 12px;
}
.modal-divider {
  height: 1px;
  background: var(--line);
  margin: 14px 0 18px;
}
.modal-description {
  color: var(--brown);
  font-size: 0.96rem;
  line-height: 1.68;
  margin-bottom: 22px;
}
.modal-actions {
  display: flex;
  gap: 12px;
}

@media (max-width: 640px) {
  .modal-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .modal-card {
    padding: 24px 18px;
  }
}

/* ==========================================================================
   PRODUCT PAGINATION STYLES
   ========================================================================== */
.products-pagination-wrapper {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pagination-info {
  font-size: 0.92rem;
  color: var(--brown);
  font-weight: 500;
}

.products-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-btn,
.pagination-num {
  min-width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background-color: #ffffff;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(40, 31, 26, 0.04);
}

.pagination-btn:hover:not(:disabled),
.pagination-num:hover:not(.active) {
  background-color: var(--cream);
  border-color: var(--copper);
  color: var(--copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(183, 115, 63, 0.15);
}

.pagination-num.active {
  background-color: var(--copper);
  color: #ffffff;
  border-color: var(--copper);
  box-shadow: 0 4px 12px rgba(183, 115, 63, 0.3);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #f7f5f1;
  border-color: var(--line);
  box-shadow: none;
}

.pagination-numbers {
  display: flex;
  gap: 8px;
}

@media (max-width: 600px) {
  .products-pagination-wrapper {
    margin-top: 32px;
  }
  .pagination-btn,
  .pagination-num {
    min-width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   PRODUCTS TOOLBAR & SEARCH BAR STYLES
   ========================================================================== */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.products-toolbar .category-tabs {
  margin-bottom: 0;
}

.product-search-box {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 260px;
  max-width: 360px;
  width: 100%;
}

.product-search-box input {
  width: 100%;
  padding: 10px 38px 10px 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background-color: #ffffff;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(40, 31, 26, 0.04);
}

.product-search-box input::placeholder {
  color: #9e8e82;
  font-style: italic;
}

.product-search-box input:focus {
  border-color: var(--copper);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(183, 115, 63, 0.15);
}

svg {
  max-width: 100%;
}

.product-search-box .search-icon,
svg.search-icon {
  position: absolute;
  left: 14px;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  color: var(--copper);
  pointer-events: none;
}

.search-clear-btn {
  position: absolute;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background-color: var(--line);
  color: var(--brown);
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s ease;
}

.search-clear-btn:hover {
  background-color: var(--copper);
  color: #ffffff;
}

/* NO PRODUCTS FOUND STATE */
.no-products-message {
  text-align: center;
  padding: 56px 24px;
  background-color: #ffffff;
  border: 1px dashed var(--line);
  border-radius: 16px;
  margin-bottom: 36px;
  animation: fadeIn 0.3s ease-in-out;
}

.no-products-icon svg {
  width: 48px;
  height: 48px;
  color: var(--copper);
  opacity: 0.8;
  margin-bottom: 12px;
}

.no-products-message h3 {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.no-products-message p {
  color: var(--brown);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 768px) {
  .products-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .product-search-box {
    max-width: 100%;
  }
}

/* BRANDS SECTION ("TRABAJAMOS CON") */
.brands-section {
  background: linear-gradient(180deg, #1d1714 0%, #281f1a 100%);
  padding: 48px 0;
  border-top: 1px solid rgba(183, 115, 63, 0.25);
  border-bottom: 1px solid rgba(183, 115, 63, 0.25);
  position: relative;
  overflow: hidden;
}

.brands-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}

.brands-line {
  flex: 1;
  height: 1px;
  max-width: 160px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.brands-title {
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--copper);
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.brands-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 28px;
  min-width: 170px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  user-select: none;
  cursor: pointer;
}

.brand-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--copper);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Logo image cards */
.brand-logo-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(183, 115, 63, 0.15);
  border-radius: 12px;
  padding: 16px 28px;
  min-width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(8px);
  user-select: none;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(118, 8, 8, 0.15);
}

.brand-logo-card:hover {
  background: #ffffff;
  border-color: var(--copper);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(138, 41, 41, 0.3), 0 0 0 1px rgba(183, 115, 63, 0.4);
}

.brand-logo-card img {
  max-height: 58px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none;
  transition: filter 0.3s ease;
}

.brand-text {
  color: #fbf8f3;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.brand-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  opacity: 0.8;
  line-height: 1;
}

/* Individual Brand Logos Custom Typography */
.brand-gelbrix .brand-text {
  font-family: Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  color: #ffffff;
}

.brand-arcor .brand-text {
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #f8fafc;
}

.brand-levex-main .brand-text {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #e2e8f0;
}

.brand-basile .brand-text,
.brand-pehuajo .brand-text,
.brand-santa-margarita .brand-text {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #f3ede5;
}

.brand-rolidar .brand-text {
  font-weight: 800;
  letter-spacing: 2.5px;
  font-size: 1.1rem;
  color: #ffffff;
}

.brand-instant .brand-text {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
}

.brand-frutos .brand-text,
.brand-polcon .brand-text,
.brand-rekord .brand-text,
.brand-levina .brand-text {
  font-weight: 700;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .brands-section {
    padding: 36px 0;
  }
  .brands-header {
    margin-bottom: 24px;
  }
  .brands-line {
    max-width: 60px;
  }
  .brands-title {
    font-size: 0.85rem;
    letter-spacing: 2.5px;
  }
  .brand-card {
    min-width: 140px;
    height: 64px;
    padding: 10px 20px;
  }
}

/* MAPA GOOGLE MAPS EN SECCION CONTACTO */
.footer-map-container {
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-map-header {
  margin-bottom: 20px;
}

.footer-map-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-map-header h3 {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}






