/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
  padding: 25px 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #ff69b4;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ff69b4;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner-text h3 i {
  font-size: 24px;
}

.cookie-banner-text p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: #ff69b4;
  text-decoration: underline;
  transition: color 0.2s;
}

.cookie-banner-text a:hover {
  color: #ff31c5;
}

.cookie-banner-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #ff60b5, #ff89c8);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.cookie-btn-decline {
  background: #f0f0f0;
  color: #666;
}

.cookie-btn-decline:hover {
  background: #e0e0e0;
  color: #333;
}

.cookie-btn-settings {
  background: transparent;
  color: #ff69b4;
  border: 2px solid #ff69b4;
}

.cookie-btn-settings:hover {
  background: rgba(255, 105, 180, 0.1);
  border-color: #ff31c5;
  color: #ff31c5;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.cookie-settings-modal.show {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cookie-settings-content {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.cookie-settings-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ff69b4;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-settings-header h3 i {
  font-size: 26px;
}

.cookie-settings-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-settings-close:hover {
  color: #ff69b4;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 10px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-category-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #ff60b5, #ff89c8);
}

.cookie-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active .cookie-toggle-slider {
  transform: translateX(24px);
}

.cookie-category-description {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.cookie-settings-actions {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.cookie-settings-actions .cookie-btn {
  flex: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px 15px;
  }
  
  .cookie-banner-content {
    gap: 20px;
  }
  
  .cookie-banner-text {
    min-width: 100%;
  }
  
  .cookie-banner-text h3 {
    font-size: 18px;
  }
  
  .cookie-banner-text p {
    font-size: 13px;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  .cookie-settings-content {
    padding: 20px;
    max-height: 90vh;
  }
  
  .cookie-settings-header h3 {
    font-size: 20px;
  }
  
  .cookie-settings-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .cookie-banner-text h3 {
    font-size: 16px;
  }
  
  .cookie-banner-text h3 i {
    font-size: 20px;
  }
  
  .cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
