/* ===========================
   SYNK FOOD — list.css
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --black:      #111111;
  --white:      #ffffff;
  --light-gray: #f0f0f0;
  --mid-gray:   #d4d4d4;
  --text-gray:  #888888;
  --radius:     14px;
  --font:       'DM Sans', sans-serif;
}

body {
  font-family: var(--font) !important;
  background: var(--white);
  color: var(--black);
}

/* ===========================
   HERO BANNER
   =========================== */
.hero-banner {
  background: var(--black);
  color: var(--white);
  padding: 60px 0;
}

.hero-title {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: clamp(10px, 1.5vw, 13px);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
  line-height: 1.8;
}

/* ===========================
   CATEGORÍAS
   =========================== */
.categories-section {
  background: var(--white);
}

.category-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.category-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.category-card:hover .category-bg-img {
  opacity: 0.5;
}

.category-name {
  position: relative;
  z-index: 1;
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  padding: 0 16px;
}

/* ===========================
   SECCIÓN DE PRODUCTOS
   =========================== */
.products-section {
  border-top: 1px solid var(--mid-gray);
}

.category-section-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
}

/* ===========================
   TARJETA DE PRODUCTO
   =========================== */
.prod-card {
  cursor: pointer;
  transition: transform 0.2s;
}

.prod-card:hover {
  transform: translateY(-3px);
}

.prod-img-wrapper {
  background: var(--light-gray);
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.prod-card:hover .prod-img {
  transform: scale(1.06);
}

.prod-info {
  padding: 6px 4px 0;
}

.prod-name {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 2px;
}

.prod-weight {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 0;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .hero-banner {
    padding: 44px 0;
  }

  .category-card {
    aspect-ratio: 1 / 1;
  }

  .category-section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .prod-name {
    font-size: 9.5px;
  }

  .prod-weight {
    font-size: 9.5px;
  }
}
