/* xl - DESKTOP STYLES */ 
/* PRODUCTES SECTION */
.productes-section {
  padding: 100px 80px;
  background: var(--warm-white);
}

.productes-header {
  margin-bottom: 64px;
}

.label-tag {
  font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--brown-light); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.label-tag::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: var(--brown-light);
}

.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300; line-height: 1.1;
  color: var(--charcoal); margin-bottom: 16px;
}
.section-headline em { font-style: italic; color: var(--brown-corp); }

.section-body {
  font-size: 15px; line-height: 1.75;
  color: #6b5c4e; max-width: 500px;
}

/* GRID */
.productes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
}



.producte-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  border: 1px solid rgba(0,0,0,0.08);
}

.producte-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 600px;
}
.producte-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.producte-card:hover .producte-img { transform: scale(1.06); }

.producte-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(58,35,18,0.90) 0%,
    rgba(58,35,18,0.2) 60%,
    transparent 100%
  );
}

.producte-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  transform: translateY(8px);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.producte-card:hover .producte-info { transform: translateY(0); }

.producte-cat {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--brown-pale); margin-bottom: 6px;
}

.producte-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  color: var(--cream); margin-bottom: 8px;
}

.producte-desc {
  font-size: 13px; line-height: 1.6;
  color: rgba(196,168,130,0.75); max-width: 280px;
  opacity: 0; transform: translateY(6px);
  transition: all 0.4s 0.05s cubic-bezier(0.22,1,0.36,1);
}
.producte-card:hover .producte-desc { opacity: 1; transform: translateY(0); }

.producte-arrow {
  position: absolute; top: 28px; right: 28px;
  width: 36px; height: 36px;
  border: 1px solid rgba(196,168,130,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--sand); font-size: 16px;
  opacity: 0; transform: translateY(-6px);
  transition: all 0.3s;
}
.producte-card:hover .producte-arrow { opacity: 1; transform: translateY(0); }

/* TABLET */
@media (max-width: 1024px) {
  .productes-section {
    padding: 80px 48px;
  }
  .producte-card:first-child {
    min-height: 480px;
  }
}

/* MÒBIL */
@media (max-width: 768px) {
  .productes-section {
    padding: 60px 24px;
  }
  .productes-header {
    margin-bottom: 40px;
  }
  .productes-grid {
    grid-template-columns: 1fr;
  }
  .producte-card:first-child {
    grid-row: span 1;
    min-height: auto;
    aspect-ratio: 4/3;
  }
  .producte-info {
    padding: 20px 20px;
    transform: translateY(0);
  }
  .producte-desc {
    opacity: 1;
    transform: translateY(0);
  }
  .producte-arrow {
    opacity: 1;
    transform: translateY(0);
  }
}

