svg {
  display: inline-block;
}


/* ==========================================================================
   LAYOUT GENERAL & CABECERA
   ========================================================================== */
/* .page-archive {
  padding-top: 100px;
} */

.page-archive-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #333;
}

.page-archive-header-title-color {
  color: var(--accent-orange);
}

.archive-layout-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 40px 0;
  position: relative;
}

/* ==========================================================================
   ESTILOS DE LA LISTA DE TOURES (CARD HORIZONTAL)
   ========================================================================== */
.tours-list-view {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tours-list-item {
  margin-bottom: 30px;
  background: #ffffff;
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f1f1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tours-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* Re-estructuración del contenido interno de parts/tours/card-tour */
.product-card-link {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.product-card-image {
  width: 260px;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.product-card-message {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px 10px;
  background: #fff;
  border-radius: 5px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-card-message svg {
  stroke-width: 1.5;
  padding: 2px;
}


.product-card-actions {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
}

.btn-action-like {
  border: unset;
  background: unset;
  display: inline-flex;
  background-color: #ffffff50;
  backdrop-filter: blur(5px);
  padding: 5px;
  border-radius: 5px;
  color: #444;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s, transform 0.15s;
}

.btn-action-like:hover {
  color: #dc2626;
}

.btn-action-like:active {
  transform: scale(0.9);
}

.btn-action-like.active {
  color: #dc2626;
  background-color: #ffffffaa;
}

.btn-action-like.active svg {
  fill: currentColor;
}

.btn-action-like.loading {
  opacity: 0.5;
  pointer-events: none;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.tours-list-item:hover .product-card-image img {
  transform: scale(1.05);
}

/* Detalles del Tour en la fila */
.product-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-card-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin: 0;
  color: #222;
}

.product-card-footer-content,
.product-card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.product-card-footer-content-category {
  display: inline-block;
  color: #fff;
  background: #581c78;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
}

.product-card-content-excerpt {
  font-size: 0.9rem;
  color: #666;
}

/* Elementos opcionales que tenga tu card-tour (precio, info, etc.) */
.product-card-footer-meta {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
  color: #666;
}

.product-card-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-orange);
}

/* ==========================================================================
   RESPONSIVE (Alineación móvil)
   ========================================================================== */
@media (max-width: 992px) {
  .archive-layout-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .product-card-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .product-card-image {
    width: 100%;
    height: 200px;
  }

  .page-archive-header h1 {
    font-size: 1.8rem;
  }
}








/* h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-archive {
  padding-top: 100px;
}

.page-archive-header {}

.page-archive-header-title-color {
  color: var(--accent-orange);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.product-card-link {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
}

.product-card-image {
  overflow: hidden;
  border-radius: 30px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */