/* ===== PARTNER PREFERENCES COMPONENT CSS ===== */

/* No local variable definitions. All theme variables come from global theme files. */

.partner-preferences-section {
  padding: 30px;
  position: relative;
}

@keyframes rotateIcon {
  0%, 100% { transform: translateY(-50%) rotate(-20deg); }
  50% { transform: translateY(-50%) rotate(20deg); }
}

/* ==================== PREFERENCES LIST ==================== */
.preferences-list {
  list-style: none;
  padding: 0;
}

.preferences-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  transition: transform 0.3s ease;
}

.preferences-list li:hover {
  transform: translateX(10px);
}

.preferences-list li::before {
  content: '✿';
  position: absolute;
  left: 0;
  color: var(--saffron);
  font-size: 1.2em;
  animation: bounce 2s ease-in-out infinite;
}

/* Dark theme for section background and text */
[data-theme="dark"] .partner-preferences-section {
  background: transparent;
  color: var(--text-primary);
}

[data-theme="dark"] .preferences-list li {
  color: var(--text-primary);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
  .partner-preferences-section {
    padding: 25px 20px;
  }

  .preferences-list li {
    padding: 10px 0;
    padding-left: 25px;
  }

  .preferences-list li::before {
    font-size: 1.1em;
  }
}
