/* Novedades - VisteHoy Page Specific Styles */
.hero-arrivals {
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-hover) 80%);
  color: #fff;
  padding: var(--space-12) 0 var(--space-8) 0;
  margin-bottom: var(--space-8);
  text-align: center;
}
.hero-arrivals .hero-title {
  margin-bottom: var(--space-3);
  font-size: var(--font-size-4xl);
  font-weight: 800;
}
.hero-arrivals .hero-subtitle {
  font-size: var(--font-size-lg);
  max-width: 650px;
  margin: 0 auto;
}

.arrivals-section {
  margin-bottom: var(--space-12);
}
.arrivals-section > .container {
  max-width: 1100px;
}
/* ------- Latest Trends Grid ------- */
.arrivals-grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: var(--space-6);
}
.product-card {
  background: var(--color-background);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}
.product-card img {
  border-bottom: 1px solid var(--color-gray-300);
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.product-card .card-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1 1 auto;
}
.product-title {
  font-size: var(--font-size-lg);
  margin-bottom: 0;
}
.product-desc {
  font-size: var(--font-size-sm);
  color: var(--color-gray-700);
}
.button.outline {
  background: none;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.button.outline:hover, .button.outline:focus {
  background: var(--color-primary);
  color: #fff;
}

/* ------- Exclusive Launches ------- */
.arrivals-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-6);
}
.product-high {
  flex: 1 1 350px;
  background: var(--color-gray-100);
  display: flex;
  gap: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.product-high img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-right: 1px solid var(--color-gray-300);
}
.product-high > div {
  padding: var(--space-4) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 800px) {
  .arrivals-list { flex-direction: column; gap: var(--space-4); }
  .product-high { flex-direction: column; align-items: center; }
  .product-high img { border-right: none; border-bottom: 1px solid var(--color-gray-300); width: 100%; height: 180px; }
  .product-high > div { padding: var(--space-3); }
}

/* ------- Limited Editions ------- */
.limited-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
}
.limited-grid li {
  background: var(--color-background);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: var(--space-4);
  text-align: center;
}
.limited-grid img {
  border-radius: var(--radius-sm);
  height: 160px;
  width: 100%;
  object-fit: cover;
  margin-bottom: var(--space-3);
}
.limited-grid h3 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-2);
}

/* ------- Customer Favorites Carousel ------- */
.favorites-carousel {
  display: flex;
  gap: var(--space-8);
  overflow-x: auto;
  margin-top: var(--space-6);
  scroll-snap-type: x proximity;
  padding-bottom: var(--space-4);
}
.favorite-item {
  background: var(--color-gray-100);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: var(--space-4);
  flex: 0 0 250px;
  scroll-snap-align: start;
  text-align: center;
}
.favorite-item img {
  margin-bottom: var(--space-3);
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.favorite-item .rating {
  font-size: var(--font-size-base);
  color: var(--color-warning);
  display: block;
  margin: var(--space-2) 0;
}
.button.small {
  font-size: var(--font-size-sm);
  padding: var(--space-1) var(--space-3);
}

/* ------- Behind the Design ------- */
.design-insight {
  margin-top: var(--space-6);
  display: flex;
  gap: var(--space-8);
  align-items: flex-start;
  flex-wrap: wrap;
}
.design-insight img {
  border-radius: var(--radius-lg);
  width: 320px;
  max-width: 90vw;
  height: 220px;
  object-fit: cover;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.insight-text {
  flex: 1 1 260px;
}
@media (max-width: 850px) {
  .design-insight { flex-direction: column; gap: var(--space-4); }
  .design-insight img { width: 100%; height: 180px; }
}

/* ------- Sneak Peeks Gallery ------- */
.sneak-gallery {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-6);
  flex-wrap: wrap;
  justify-content: flex-start;
}
.sneak-item {
  width: 210px;
  text-align: center;
}
.sneak-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: var(--space-2);
}
.sneak-caption {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
}
@media (max-width: 600px) {
  .sneak-gallery { flex-direction: column; gap: var(--space-3); }
  .sneak-item { width: 100%; }
}

/* ------- User Reviews ------- */
.review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
}
.review-card {
  background: var(--color-gray-100);
  padding: var(--space-4);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-style: italic;
  margin: 0;
}
.review-card footer {
  margin-top: var(--space-2);
  font-style: normal;
  font-size: var(--font-size-xs);
  color: var(--color-primary);
  display: flex;
  gap: var(--space-1);
  align-items: center;
}
.verified {
  color: var(--color-success);
  font-size: var(--font-size-base);
}

/* ------- Editor's Picks ------- */
.editors-picks-list {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-6);
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-left: 0;
  list-style: none;
}
.pick-item {
  display: flex;
  gap: var(--space-4);
  align-items: stretch;
  background: var(--color-background);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: var(--space-4);
  flex: 1 1 280px;
  min-width: 240px;
}
.pick-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius);
}
.pick-item h3 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-1);
}
@media (max-width: 700px) {
  .editors-picks-list { flex-direction: column; gap: var(--space-3); }
  .pick-item { flex-direction: row; min-width: 0; }
}

@media (max-width: 520px) {
  .arrivals-grid, .review-list, .editors-picks-list,
  .limited-grid, .favorites-carousel {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }
}
