/* 
=============================
  FAVORITES WIDGET STYLES
=============================
*/

.favorites-widget {
  border: 2px solid var(--accent-cyan);
}

.favorites-widget .widget-title {
  color: var(--accent-cyan);
  border-bottom-color: var(--accent-cyan);
}

/* Two Column Grid Layout */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

/* Individual Category Sections */
.favorite-category {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.favorite-category h4 {
  color: var(--accent-cyan);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  padding-bottom: var(--spacing-xs);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

/* List Styling */
.favorite-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.favorite-category li {
  color: var(--text-primary);
  font-size: 0.9rem;
  padding-left: var(--spacing-sm);
  position: relative;
  line-height: 1.4;
}

/* Custom Bullet Points */
.favorite-category li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

/* Hover Effect */
.favorite-category li:hover {
  color: var(--accent-cyan);
  transform: translateX(2px);
  transition: all 0.2s ease;
}

/* Responsive - Stack on Mobile */
@media (max-width: 768px) {
  .favorites-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* Responsive - Smaller Mobile */
@media (max-width: 480px) {
  .favorite-category h4 {
    font-size: 0.85rem;
  }
  
  .favorite-category li {
    font-size: 0.85rem;
  }
}
