/* Iconos SVG profesionales */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-md {
  width: 24px;
  height: 24px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.icon-xl {
  width: 40px;
  height: 40px;
}

/* Iconos específicos */
.icon-cart {
  color: var(--text);
}

.icon-menu {
  color: var(--text);
}

.icon-close {
  color: var(--text);
}

.icon-add {
  color: white;
}

.icon-remove {
  color: var(--danger);
}

.icon-star {
  color: #fbbf24;
}

.icon-star-empty {
  color: #4b5563;
}

.icon-restaurant {
  color: var(--accent);
}

.icon-delivery {
  color: var(--accent-2);
}

.icon-time {
  color: var(--accent-2);
}

.icon-phone {
  color: var(--accent-2);
}

.icon-location {
  color: var(--accent-2);
}

.icon-check {
  color: var(--ok);
}

.icon-warning {
  color: var(--warn);
}

.icon-error {
  color: var(--danger);
}

/* Contenedor de iconos SVG hidden */
.icons-svg {
  display: none;
}