/* Cookie Popup Styles - Following Gutter Gleam Style Guide */

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px -4px 19.5px 0px rgba(0, 0, 0, 0.15);
  padding: 24px 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  max-width: 100%;
}

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

.cookie-popup-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-popup-text {
  flex: 1;
  min-width: 250px;
}

.cookie-popup-title {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: rgba(0, 0, 0, 1);
  margin: 0 0 8px 0;
}

.cookie-popup-description {
  font-family: ABeeZee, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(90, 96, 121, 1);
  margin: 0;
}

.cookie-popup-description a {
  color: rgba(87, 201, 255, 1);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-popup-description a:hover {
  color: rgba(255, 192, 0, 1);
}

.cookie-popup-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-popup-button {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  padding: 11px 30px;
  border-radius: 53px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-popup-button-accept {
  background-color: rgba(255, 192, 0, 1);
  color: rgba(255, 255, 255, 1);
}

.cookie-popup-button-accept:hover {
  background-color: rgba(255, 200, 20, 1);
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px 0px rgba(255, 192, 0, 0.4);
}

.cookie-popup-button-decline {
  background-color: transparent;
  color: rgba(90, 96, 121, 1);
  border: 2px solid rgba(90, 96, 121, 1);
}

.cookie-popup-button-decline:hover {
  background-color: rgba(90, 96, 121, 1);
  color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 767px) {
  .cookie-popup {
    padding: 20px 15px;
  }

  .cookie-popup-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-popup-text {
    min-width: 100%;
  }

  .cookie-popup-title {
    font-size: 16px;
    line-height: 22px;
  }

  .cookie-popup-description {
    font-size: 13px;
    line-height: 18px;
  }

  .cookie-popup-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-popup-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .cookie-popup {
    padding: 16px 12px;
  }

  .cookie-popup-title {
    font-size: 15px;
    line-height: 20px;
  }

  .cookie-popup-description {
    font-size: 12px;
    line-height: 16px;
  }

  .cookie-popup-button {
    font-size: 14px;
    padding: 10px 18px;
  }
}
