/**
 * Cookie Consent Banner Styles
 * Matches SimplifyX website design language
 */

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
  padding: 20px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 999999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  font-family: 'Lato', sans-serif;
  border-top: 1px solid #2d2d2d;
}

.cookie-consent-container {
  max-width: 1735px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 15px;
}

.cookie-consent-message {
  flex: 1;
  min-width: 300px;
  font-size: 14px;
  line-height: 1.7;
  color: #e6e6e6;
  font-weight: 400;
}

.cookie-consent-message a {
  color: #9f40a0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.cookie-consent-message a:hover {
  color: #ab40ff;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

#cookie-consent-accept {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  font-family: 'Lato', sans-serif;
  position: relative;
  overflow: hidden;
}

#cookie-consent-accept:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

#cookie-consent-accept:active {
  transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  #cookie-consent-banner {
    padding: 15px;
  }

  .cookie-consent-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent-message {
    min-width: 100%;
    font-size: 13px;
  }

  .cookie-consent-actions {
    width: 100%;
    justify-content: flex-start;
  }

  #cookie-consent-accept {
    width: 100%;
    padding: 14px 20px;
  }
}

@media screen and (max-width: 480px) {
  .cookie-consent-message {
    font-size: 12px;
  }

  #cookie-consent-accept {
    font-size: 13px;
  }
}
