.glow-effect {
  filter: drop-shadow(0 0 20px rgba(66, 103, 214, 0.5));
}

.nav-link {
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 8px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--text-primary) !important;
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-icon {
    filter: drop-shadow(0 0 8px var(--shadow-primary));
    transition: var(--transition-smooth);
}

.nav-link:hover .nav-icon {
    filter: drop-shadow(0 0 12px var(--shadow-primary));
}
.product-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-select {
  appearance: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7ce5' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 48px;
}

.custom-select:focus {
  outline: none;
  border-color: #4267d6;
  box-shadow: 0 0 0 3px rgba(66, 103, 214, 0.1);
}

.custom-select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.custom-select option {
  background: #1f2937;
  color: white;
  padding: 8px;
}

.image-container {
  background: linear-gradient(135deg, rgba(66, 103, 214, 0.1) 0%, rgba(107, 124, 229, 0.05) 100%);
  border: 2px dashed rgba(66, 103, 214, 0.3);
  transition: all 0.3s ease;
  min-height: 300px;
}

.image-container.has-image {
  border-style: solid;
  border-color: rgba(66, 103, 214, 0.5);
  background: transparent;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.section-title {
  background: linear-gradient(135deg, #4267d6 0%, #6b7ce5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: linear-gradient(45deg, #4267d6, #6b7ce5);
  border-radius: 50%;
  opacity: 0.4;
  animation: particle-float 8s ease-in-out infinite;
}

@keyframes particle-float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.4; 
  }
  50% { 
    transform: translateY(-30px) rotate(180deg); 
    opacity: 0.8; 
  }
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from { 
    box-shadow: 0 0 20px rgba(66, 103, 214, 0.3); 
  }
  to { 
    box-shadow: 0 0 30px rgba(66, 103, 214, 0.6); 
  }
}

.custom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.custom-icon svg {
  width: 24px;
  height: 24px;
}

.icon-lg svg {
  width: 32px;
  height: 32px;
}

.icon-xl svg {
  width: 48px;
  height: 48px;
}

.icon-gradient svg {
  fill: url(#blue-gradient);
}

.select-option-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.select-option-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}