/* Cordless Diagramas Interactivos */

.cordless-diagrama-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header */
.cd-header { text-align: center; margin-bottom: 20px; }
.cd-header h2 { font-size: 24px; color: #1a1a1a; margin: 0 0 5px; }
.cd-header p { color: #666; margin: 0; font-size: 14px; }

/* Buscador */
.cd-buscador { position: relative; margin-bottom: 20px; }
.cd-buscar-input {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.cd-buscar-input:focus { border-color: #00a651; }

.cd-resultados-busqueda {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 10px 10px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.cd-resultados-busqueda.visible { display: block; }

.cd-resultado-item {
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
}
.cd-resultado-item:hover { background: #f5fff5; }
.cd-resultado-item:last-child { border-bottom: none; }
.cd-resultado-codigo { font-weight: 700; color: #00a651; font-size: 14px; }
.cd-resultado-nombre { flex: 1; margin: 0 15px; font-size: 14px; color: #333; }
.cd-resultado-precio { font-weight: 600; white-space: nowrap; }
.cd-resultado-dispo-ok { color: #00a651; font-size: 12px; }
.cd-resultado-dispo-no { color: #e53935; font-size: 12px; }

/* Diagrama */
.cd-diagrama-wrapper {
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa;
}
.cd-diagrama-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: crosshair;
}

/* Hotspots clickeables */
.cd-hotspots { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.cd-hotspot {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 166, 81, 0.15);
  border: 2px solid rgba(0, 166, 81, 0.4);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  z-index: 5;
}
.cd-hotspot:hover, .cd-hotspot.active {
  background: rgba(0, 166, 81, 0.7);
  border-color: #00a651;
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow: 0 0 8px rgba(0, 166, 81, 0.5);
  z-index: 10;
}
.cd-diagrama-img { cursor: pointer; }

/* Lista de piezas */
.cd-lista-piezas { margin-top: 20px; }
.cd-lista-piezas h3 { font-size: 18px; margin-bottom: 15px; }
.cd-piezas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }

.cd-pieza-card {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cd-pieza-card:hover {
  border-color: #00a651;
  box-shadow: 0 2px 8px rgba(0,166,81,0.15);
  transform: translateY(-1px);
}
.cd-pieza-pos {
  background: #00a651;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.cd-pieza-info { flex: 1; min-width: 0; }
.cd-pieza-codigo { font-weight: 700; color: #00a651; font-size: 13px; }
.cd-pieza-nombre { font-size: 13px; color: #555; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cd-pieza-precio { font-weight: 600; font-size: 14px; }
.cd-pieza-btn {
  background: #00a651;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.cd-pieza-btn:hover { background: #008c44; }

/* Popup */
.cd-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cd-popup-overlay.visible { display: flex; }

.cd-popup {
  background: #fff;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.cd-popup-cerrar {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  z-index: 1;
  line-height: 1;
}
.cd-popup-cerrar:hover { color: #333; }

.cd-popup-content { padding: 30px; }
.cd-popup-imagen {
  text-align: center;
  margin-bottom: 20px;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
}
.cd-popup-imagen img {
  max-width: 200px;
  max-height: 200px;
}

.cd-popup-posicion {
  display: inline-block;
  background: #00a651;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cd-popup-info h3 { margin: 0 0 8px; font-size: 18px; color: #1a1a1a; }
.cd-popup-codigo { color: #00a651; font-weight: 700; font-size: 16px; margin: 0 0 8px; }
.cd-popup-precio { font-size: 24px; font-weight: 700; color: #1a1a1a; margin: 0 0 5px; }
.cd-popup-dispo { font-size: 14px; margin: 0 0 20px; }
.cd-popup-dispo.disponible { color: #00a651; }
.cd-popup-dispo.agotado { color: #e53935; }

.cd-popup-acciones {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.cd-cantidad {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.cd-cantidad button {
  background: #f5f5f5;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 18px;
}
.cd-cantidad button:hover { background: #e8e8e8; }
.cd-cantidad input {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 16px;
  padding: 8px 0;
}

.cd-btn-carrito {
  flex: 1;
  background: #00a651;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cd-btn-carrito:hover { background: #008c44; }
.cd-btn-carrito.agregado { background: #333; }

.cd-link-tienda {
  display: block;
  text-align: center;
  color: #00a651;
  text-decoration: none;
  font-size: 14px;
}
.cd-link-tienda:hover { text-decoration: underline; }

/* Carrito flotante */
.cd-carrito-flotante {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00a651;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0,166,81,0.4);
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.2s;
}
.cd-carrito-flotante:hover { transform: scale(1.1); }
.cd-carrito-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e53935;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .cd-piezas-grid { grid-template-columns: 1fr; }
  .cd-popup { margin: 10px; }
  .cd-popup-acciones { flex-direction: column; }
  .cd-btn-carrito { width: 100%; }
}