/* ======================================================================= */
/* SEARCH ANIMATIONS CSS - Animationen, Effekte & erweiterte Features     */
/* ======================================================================= */

/* ======================================================================= */
/* KEYFRAME ANIMATIONS                                                     */
/* ======================================================================= */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatingOrbs {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes morphShape {

  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg);
  }

  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    transform: rotate(90deg);
  }

  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    transform: rotate(180deg);
  }

  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: rotate(270deg);
  }
}

@keyframes subtleShimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes gentleGlow {
  0% {
    opacity: 0.2;
    transform: scale(1.05);
  }

  100% {
    opacity: 0.4;
    transform: scale(1.1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes countGlow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }

  100% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes countUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes likeAnimation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1.15);
  }
}

@keyframes modalFadeIn {
  0% {
    opacity: 0;
    backdrop-filter: blur(0px);
  }

  100% {
    opacity: 1;
    backdrop-filter: blur(10px);
  }
}

@keyframes modalSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes timerStroke {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 75.4;
  }
}

@keyframes dropdownSlide {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subcategorySlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* ======================================================================= */
/* ANIMATED BACKGROUND                                                     */
/* ======================================================================= */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(-45deg, #0a0a0a, #1a0a1a, #0a1a1a, #1a1a0a);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  animation-play-state: paused;
  will-change: background-position;
  pointer-events: none;
  /* FIX: Allow scrolling/clicking through */
}

.animated-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(199, 125, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
  animation: floatingOrbs 20s ease-in-out infinite;
  animation-play-state: paused;
}

.animated-bg.animate {
  animation-play-state: running;
}

.animated-bg.animate::before {
  animation-play-state: running;
}

/* ======================================================================= */
/* FLOATING PARTICLES                                                     */
/* ======================================================================= */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  animation: float 20s infinite linear;
  opacity: 0.6;
  box-shadow: 0 0 6px var(--primary);
}

/* ======================================================================= */
/* PARALLAX FLOATING SHAPES                                               */
/* ======================================================================= */
.parallax-element {
  position: absolute;
  pointer-events: none;
}

.floating-shape {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphShape 8s ease-in-out infinite;
  opacity: 0.1;
}

/* ======================================================================= */
/* NOTIFICATION POPUP                                                      */
/* ======================================================================= */
.notification-popup {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 320px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  z-index: 2000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-popup.show {
  opacity: 1;
  transform: translateX(0);
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.notification-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

.notification-close {
  position: relative;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.2rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  color: var(--text);
}

.close-timer svg {
  width: 28px;
  height: 28px;
  transform: rotate(-90deg);
  position: absolute;
  top: -2px;
  left: -2px;
}

.close-timer circle {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  r: 12;
  cx: 14;
  cy: 14;
  stroke-dasharray: 75.4;
  stroke-dashoffset: 0;
  animation: timerStroke 4s linear;
}

.notification-content {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9rem;
}

.notification-shortcuts {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.shortcut-hint {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.shortcut-hint:last-child {
  margin-bottom: 0;
}

.shortcut-keys {
  display: flex;
  gap: 0.25rem;
}

.shortcut-keys kbd {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.1rem 0.3rem;
  font-size: 0.7rem;
  font-family: monospace;
  color: var(--primary);
}

.shortcut-desc {
  color: var(--text-secondary);
}

/* ======================================================================= */
/* ADVANCED BRAND TITLE ANIMATIONS                                        */
/* ======================================================================= */
.brand-text {
  animation: subtleShimmer 3s ease-in-out infinite;
  position: relative;
}

.brand-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(199, 125, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(199, 125, 255, 0.2) 100%);
  filter: blur(20px);
  z-index: -1;
  animation: gentleGlow 4s ease-in-out infinite alternate;
}

.search-text {
  animation: subtleShimmer 3s ease-in-out infinite 0.5s;
}

.search-brand-subtitle {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.search-subtitle {
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* ======================================================================= */
/* PRODUCT CARD ANIMATIONS                                                */
/* ======================================================================= */
.product-card {
  animation: cardSlideIn 0.6s ease-out;
}

.like-btn.liked {
  animation: likeAnimation 0.6s ease-out;
}

/* ======================================================================= */
/* ENHANCED SUBCATEGORY SYSTEM ANIMATIONS                                 */
/* ======================================================================= */
.subcategory-container {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  animation: subcategorySlideIn 0.5s ease-out;
  overflow: hidden;
  position: relative;
}

.subcategory-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.8;
}

.subcategory-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.subcategory-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.subcategory-header h3::before {
  content: '▸';
  font-size: 1.2rem;
  color: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.subcategory-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.subcategory-btn {
  position: relative;
  padding: 0.65rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--bg-light);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  overflow: hidden;
}

.subcategory-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(199, 125, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 125, 255, 0.2);
}

.subcategory-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 125, 255, 0.4);
}

.all-subcategory {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: white;
  border: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(199, 125, 255, 0.3);
}

.all-subcategory:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(199, 125, 255, 0.5);
}

/* ======================================================================= */
/* FLOATING ACTION BUTTONS                                                */
/* ======================================================================= */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 500;
}

.floating-btn {
  width: 56px;
  height: 56px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(199, 125, 255, 0.4);
  position: relative;
  overflow: visible;
}

@media (max-width: 768px) {
  .floating-btn {
    width: 44px !important;
    /* Reduced from 56px */
    height: 44px !important;
    box-shadow: 0 4px 15px rgba(199, 125, 255, 0.3);
    /* Less shadow on mobile */
  }
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(199, 125, 255, 0.6);
}

.floating-btn .btn-icon {
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.btn-tooltip {
  position: fixed;
  left: 70px;
  bottom: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  min-width: 260px;
  max-width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  z-index: 1000;
  max-height: 60vh;
  overflow-y: auto;
  transform: translateX(-10px);
}

.floating-btn:hover .btn-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(10px);
}

.btn-tooltip h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.shortcuts-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.shortcut-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.shortcut-item .keys {
  display: flex;
  gap: 0.25rem;
}

.shortcut-item kbd {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  font-family: monospace;
  margin: 0 0.25rem;
}

.shortcut-item .desc {
  color: var(--text-secondary);
}

/* ======================================================================= */
/* DISCORD BUTTON ANIMATIONS                                              */
/* ======================================================================= */
.discord-btn {
  background: linear-gradient(45deg, #5865f2, #7289da);
  width: 48px;
  /* Desktop default, slightly smaller than others? Or match? */
  height: 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

@media (max-width: 768px) {
  .discord-btn {
    width: 44px !important;
    /* Mobile match */
    height: 44px !important;
  }
}

.discord-btn .btn-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 2;
}

.discord-btn:hover {
  width: 180px;
  border-radius: 24px;
  justify-content: flex-start;
  padding-left: 48px;
}

.discord-btn:hover .btn-icon {
  left: 24px;
  transform: translate(-50%, -50%);
}

.discord-tooltip {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}

.discord-btn:hover .discord-tooltip {
  opacity: 1;
}

/* ======================================================================= */
/* PRODUCT MODAL ANIMATIONS                                               */
/* ======================================================================= */
.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  animation: modalFadeIn 0.3s ease-out;
  align-items: center;
  justify-content: center;
}

.product-modal.show {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.product-modal-content {
  position: relative;
  background: var(--bg-card);
  border-radius: 20px;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.4s ease-out;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.product-modal-actions {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 10;
}

.product-modal-actions .product-action-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.product-modal-actions .like-btn {
  background: linear-gradient(45deg, var(--like-red), #ff6b9d);
  box-shadow: 0 6px 20px rgba(255, 71, 87, 0.5);
}

.product-modal-actions .like-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.7);
}

.product-modal-actions .like-btn.liked {
  background: linear-gradient(45deg, #ff3742, #ff4757);
  animation: likeAnimation 0.6s ease-out;
}

.product-modal-actions .report-btn {
  background: linear-gradient(45deg, var(--warning), #ff7675);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
}

.product-modal-actions .report-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.7);
}

.product-modal-actions .report-btn.reported {
  background: linear-gradient(45deg, var(--text-secondary), #636e72);
  cursor: not-allowed;
  opacity: 0.6;
}

.product-modal-actions .action-icon {
  font-size: 1.3rem;
  color: white;
  z-index: 1;
  position: relative;
}

.product-modal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.product-modal-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-light);
}

.modal-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-nav.prev {
  left: 1rem;
}

.modal-nav.next {
  right: 1rem;
}

.modal-nav:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.thumbnail-images {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.thumbnail-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.thumbnail-image:hover,
.thumbnail-image.active {
  opacity: 1;
  border-color: var(--primary);
}

.product-modal-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-modal-info h2 {
  font-size: 1.8rem;
  color: var(--text);
  margin: 0;
}

.modal-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.modal-price::before {
  content: ';

}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: var(--text-secondary);
}

.detail-value {
  color: var(--text);
  font-weight: 500;
}

.label-badge {
  background: linear-gradient(45deg, var(--accent), #ff4757);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.modal-btn {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.modal-btn.primary {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: white;
}

.modal-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 125, 255, 0.4);
}

.modal-btn.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.modal-btn.secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.modal-color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--border);
  margin-right: 0.25rem;
}

/* ======================================================================= */
/* REPORT MODAL ANIMATIONS                                                */
/* ======================================================================= */
.report-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease-out;
}

.report-modal.show {
  display: flex;
}

.report-modal-content {
  position: relative;
  background: var(--bg-card);
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  z-index: 2001;
  animation: modalSlideIn 0.4s ease-out;
}

.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem 0;
  margin-bottom: 1rem;
}

.report-header h3 {
  color: var(--warning);
  margin: 0;
  font-size: 1.4rem;
}

.report-body {
  padding: 0 1.5rem 1.5rem;
  text-align: center;
}

.report-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.report-body p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.report-product-info {
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.report-product-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.report-product-brand {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.report-actions {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.report-btn {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.report-btn.cancel {
  background: var(--text-secondary);
  color: var(--bg-dark);
}

.report-btn.cancel:hover {
  background: var(--text);
  transform: translateY(-1px);
}

.report-btn.confirm {
  background: linear-gradient(45deg, var(--warning), #ff7675);
  color: white;
}

.report-btn.confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* ======================================================================= */
/* ENHANCED SPINNER ANIMATION                                             */
/* ======================================================================= */
.spinner {
  animation: spin 1s linear infinite;
}

/* ======================================================================= */
/* ACTION BUTTON ENHANCED EFFECTS                                         */
/* ======================================================================= */
.action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.action-btn:hover::before {
  left: 100%;
}

#totalProductsCount::before {
  animation: countGlow 2s ease-in-out infinite alternate;
}

/* ======================================================================= */
/* NAV BUTTON SHINE EFFECT                                                */
/* ======================================================================= */
.nav-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(199, 125, 255, 0.3), transparent);
  transition: left 0.3s ease;
}

.nav-btn:hover .nav-shine {
  left: 100%;
}

.button-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(199, 125, 255, 0.2), transparent);
  transition: left 0.3s ease;
}

.filter-toggle:hover .button-shine {
  left: 100%;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(199, 125, 255, 0.2), transparent);
  transition: left 0.3s ease;
}

.category-btn:hover .btn-glow,
.subcategory-btn:hover .btn-glow {
  left: 100%;
}

/* ======================================================================= */
/* IMAGE NAVIGATION                                                       */
/* ======================================================================= */
.image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
}

.image-nav.prev {
  left: 10px;
}

.image-nav.next {
  right: 10px;
}

.product-card:hover .image-nav {
  opacity: 1;
}

.image-nav:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

/* ======================================================================= */
/* UTILITY ANIMATIONS                                                     */
/* ======================================================================= */
.loaded .feature-card {
  animation: cardSlideIn 0.8s ease-out forwards;
}

.loaded .feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.loaded .feature-card:nth-child(3) {
  animation-delay: 0.4s;
}

/* ======================================================================= */
/* RESPONSIVE ANIMATIONS                                                  */
/* ======================================================================= */
@media (max-width: 768px) {
  .floating-shape {
    display: none;
  }

  .notification-popup {
    top: 1rem;
    right: 1rem;
    max-width: 280px;
  }

  .subcategory-container {
    padding: 1.5rem;
  }

  .subcategory-buttons {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
  }

  .subcategory-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .floating-actions {
    bottom: 1rem;
    left: 1rem;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .discord-btn:hover {
    width: 140px;
  }

  .btn-tooltip {
    position: fixed;
    left: 70px;
    bottom: 1rem;
    min-width: 220px;
    max-width: calc(100vw - 90px);
    max-height: 50vh;
  }

  .product-modal-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .main-image-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .notification-popup {
    top: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
    max-width: none;
  }

  .btn-tooltip {
    position: fixed;
    left: 60px;
    bottom: 1rem;
    right: 1rem;
    min-width: auto;
    max-width: none;
    max-height: 40vh;
    transform: none;
  }

  .floating-btn:hover .btn-tooltip {
    transform: translateX(5px);
  }

  .discord-btn:hover {
    width: 120px;
  }

  .discord-tooltip {
    font-size: 0.75rem;
  }

  .subcategory-buttons {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }

  .main-image-container {
    height: 250px;
  }

  .product-modal-content {
    width: 95%;
    max-height: 95vh;
  }
}