/**
 * Cookie Consent Banner Styles
 * Matches Figma design specifications
 */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #f9fbfd;
  border: 1px solid #e4edf9;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -10px 25px -5px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  padding: 16px 42px;
  box-sizing: border-box;
  overflow: hidden;
}

.cookie-consent-ellipse {
  width: 714px;
  height: 412px;
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;

  background: #c2cae8;
  filter: blur(100px);
}

.cookie-consent-ellipse-11 {
  bottom: -300px;
  right: -357px;
}

.cookie-consent-ellipse-12 {
  bottom: -300px;
  left: -357px;
}

.cookie-consent-content {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cookie-consent-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #666666;
  cursor: pointer;
  padding: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.cookie-consent-close:hover {
  color: #333333;
}

.cookie-consent-title-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-consent-title-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
}

.cookie-consent-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}

.cookie-consent-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
}

.cookie-consent-text a {
  color: #0066cc;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #0052a3;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-consent-button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s;
  min-width: 100px;
}

.cookie-consent-button:hover {
  opacity: 0.9;
}

.cookie-consent-button:active {
  opacity: 0.8;
}

.cookie-consent-accept {
  background-color: #1e3a8a;
  color: #ffffff;
  border: none;
}

.cookie-consent-accept:hover {
  background-color: #1e40af;
}

.cookie-consent-reject {
  background-color: #ffffff;
  color: #666666;
  border: 1px solid #cccccc;
}

.cookie-consent-reject:hover {
  background-color: #f5f5f5;
  border-color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-consent-banner {
    padding: 16px 20px;
  }

  .cookie-consent-content {
    gap: 12px;
  }

  .cookie-consent-title {
    font-size: 16px;
  }

  .cookie-consent-text {
    font-size: 13px;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    padding: 16px 15px;
  }

  .cookie-consent-title {
    font-size: 15px;
  }

  .cookie-consent-text {
    font-size: 12px;
  }
}
