/* ==========================================
   MENU DESTACADOS
========================================== */

.sitio-web-menu-destacados-section {
  padding: 60px 24px;
}

.sitio-web-menu-destacados-header {
  text-align: center;
  margin-bottom: 32px;
}

.sitio-web-menu-destacados-subtitle {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #7da33b;
  margin-bottom: 6px;
}

.sitio-web-menu-destacado-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  min-height: 48px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sitio-web-menu-destacados-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sitio-web-menu-destacados-track {
  flex: 1;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.sitio-web-menu-destacados-track::-webkit-scrollbar {
  display: none;
}

/* ==========================================
   CARD
========================================== */

.sitio-web-menu-destacado-card {
  flex: 0 0 280px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.sitio-web-menu-destacado-card {
  flex: 0 0 220px;
}

.sitio-web-menu-destacado-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ==========================================
   IMAGEN
========================================== */

.sitio-web-menu-destacado-image-wrapper {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.sitio-web-menu-destacado-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================
   BADGE
========================================== */

.sitio-web-menu-destacado-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #7da33b;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 2;
}

.sitio-web-menu-destacado-badge-new {
  background: #2563eb;
}
/* ==========================================
   CONTENIDO
========================================== */

.sitio-web-menu-destacado-content {
  padding: 12px;
}

.sitio-web-menu-destacado-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
  min-height: 44px;
}

.sitio-web-menu-destacado-description {
  font-size: 13px;
  line-height: 1.4;
  color: #6b7280;
  min-height: 54px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
}

.sitio-web-menu-destacado-price {
  font-size: 28px;
  font-weight: 800;
  color: #7da33b;
  margin-bottom: 12px;
}

/* ==========================================
   ACCIONES
========================================== */

.sitio-web-menu-destacado-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sitio-web-menu-destacado-actions-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* reutilizamos estilos ya existentes */
.sitio-web-menu-card-btn-minus,
.sitio-web-menu-card-btn-plus {
  width: 32px;
  height: 32px;
}

.sitio-web-menu-card-btn-cart {
  width: 36px;
  height: 36px;
}

.sitio-web-menu-card-qty {
  min-width: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.sitio-web-menu-destacados-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sitio-web-menu-destacados-arrow:hover {
  background: #f8fafc;
}

.sitio-web-menu-destacados-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.sitio-web-menu-destacados-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
}

.sitio-web-menu-destacados-dot.active {
  background: #7da33b;
}

.sitio-web-menu-destacado-etiquetas {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  min-height: 22px;
}

.sitio-web-menu-destacado-etiqueta {
  font-size: 16px;
  cursor: help;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {
  .sitio-web-menu-destacados-title {
    font-size: 32px;
  }

  .sitio-web-menu-destacados-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }

  .sitio-web-menu-destacado-image-wrapper {
    height: 120px;
  }

  .sitio-web-menu-destacado-price {
    font-size: 22px;
  }
}
