/* Cookie Policy Page Specific Styles */

.cookie-main {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 40px 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-header {
  text-align: center;
  margin-bottom: 80px;
  padding-top: 60px;
}

.cookie-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cookie-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}

.cookie-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 120px;
}

.cookie-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.cookie-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s ease;
}

.cookie-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cookie-card:hover::before {
  left: 100%;
}

.cookie-details {
  margin-top: 20px;
}

.cookie-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

  .cookie-list li {
    font-size: 13px;
    padding: 6px 0 6px 20px;
  }

  .cookie-card {
    padding: 20px;
  }
}

.highlight-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.8s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.contact-card:hover::before {
  left: 100%;
}

.contact-info {
  margin: 24px 0 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info p {
  margin: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.contact-info strong {
  color: white;
  font-weight: 600;
}

.contact-button {
  background: white;
  color: #0a0a0a;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.contact-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.contact-button.secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  color: white;
  text-decoration: underline;
}

.preference-controls {
  margin-top: 24px;
}

.cookie-category {
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.category-header h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: rgba(255, 255, 255, 0.4);
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.always-on {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.preference-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.save-preferences, .accept-all, .reject-optional {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.save-preferences:hover, .accept-all:hover, .reject-optional:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.accept-all {
  background: white;
  color: #0a0a0a;
}

.accept-all:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.provider-info {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.provider-item {
  margin-bottom: 12px;
}

.provider-item h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.provider-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 4px 0;
  line-height: 1.4;
}

.important-note {
  margin-top: 16px;
  padding: 12px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  color: rgba(255, 193, 7, 0.9);
  font-size: 13px;
}

.ai-processing-info {
  margin-top: 16px;
}

.retention-info, .legal-basis {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 8px 0;
}

.retention-info strong, .legal-basis strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.cookie-details {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 24px 20px;
  }
}

.cookie-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
}

.cookie-list li strong {
  color: white;
  font-weight: 600;
}

.browser-links {
  margin-top: 20px;
}

.browser-links h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.browser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.browser-link {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  backdrop-filter: blur(10px);
}

.browser-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: white;
}

/* Cookie Policy Responsive Design */
@media (max-width: 768px) {
  .cookie-main {
    padding: 24px 24px 0;
  }
  
  .cookie-header {
    margin-bottom: 60px;
    padding-top: 40px;
  }
  
  .cookie-title {
    font-size: clamp(28px, 8vw, 40px);
  }
  
  .cookie-subtitle {
    font-size: 16px;
  }
  
  .cookie-content {
    gap: 60px;
    margin-bottom: 80px;
  }
  
  .cookie-card {
    padding: 24px;
  }
  
  .browser-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .cookie-main {
    padding: 16px 16px 0;
  }
  
  .cookie-header {
    margin-bottom: 40px;
    padding-top: 24px;
  }
  
  .cookie-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .cookie-card {
    padding: 20px;
  }
  
  .cookie-list li {
    font-size: 13px;
    padding: 6px 0 6px 20px;
  }
}