.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  color: #1f2937;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 99999;
  transform: translateY(120%);
  transition: transform 0.3s ease;
  font-family: "Poppins", sans-serif;
}

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

.cookie-consent-container {
  max-width: 100%;
}

.cookie-simple-view,
.cookie-detailed-view {
  position: relative;
}

.cookie-consent-header {
  margin-bottom: 16px;
  position: relative;
}

.cookie-consent-back {
  position: absolute;
  top: 0;
  left: -8px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #082c28;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s;
}

.cookie-consent-back:hover {
  background: #f0fe9e;
}

.cookie-consent-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #082c28;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
}

.cookie-consent-description {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.cookie-privacy-link {
  color: #082c28;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #082c28;
  transition: all 0.2s;
  display: inline-block;
  margin-left: 2px;
}

.cookie-privacy-link:hover {
  color: #0a3530;
  border-bottom-color: #0a3530;
}

.cookie-consent-categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.cookie-category {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
  transition: all 0.2s;
}

.cookie-category:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.cookie-category-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.cookie-category-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #082c28;
}

.cookie-category-checkbox:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-category-name {
  font-size: 14px;
  font-weight: 500;
  flex: 1;
  color: #374151;
  font-family: "Poppins", sans-serif;
}

.cookie-category-required {
  display: inline-block;
  font-size: 10px;
  background: #082c28;
  color: #f0fe9e;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cookie-consent-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Poppins", sans-serif;
  flex: 1;
  min-width: 0;
}

.cookie-consent-btn-accept {
  background: #082c28;
  color: white;
}

.cookie-consent-btn-accept:hover {
  background: #0a3530;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(8, 44, 40, 0.2);
}

.cookie-consent-btn-manage {
  background: transparent;
  color: #082c28;
  border: 2px solid #082c28;
}

.cookie-consent-btn-manage:hover {
  background: #082c28;
  color: white;
  transform: translateY(-1px);
}

.cookie-consent-btn-selected {
  background: #f0fe9e;
  color: #082c28;
}

.cookie-consent-btn-selected:hover {
  background: #e5f77d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 254, 158, 0.3);
}

.cookie-consent-btn-reject {
  background: transparent;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

.cookie-consent-btn-reject:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #374151;
}

.cookie-settings-trigger {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  color: #082c28;
  border: 2px solid #082c28;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 99998;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-settings-trigger:hover {
  background: #082c28;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(8, 44, 40, 0.25);
}

.cookie-settings-trigger.hidden {
  display: none;
}

@media (max-width: 768px) {
  .cookie-consent-banner {
    bottom: 10px;
    left: 10px;
    right: 10px;
    max-width: none;
    padding: 20px;
    border-radius: 12px;
  }

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

  .cookie-consent-description {
    font-size: 13px;
    line-height: 1.5;
  }

  .cookie-consent-categories {
    margin: 12px 0;
    gap: 8px;
  }

  .cookie-category {
    padding: 10px;
  }

  .cookie-category-name {
    font-size: 13px;
  }

  .cookie-consent-actions {
    margin-top: 12px;
    gap: 8px;
  }

  .cookie-consent-btn {
    padding: 11px 16px;
    font-size: 13px;
  }

  .cookie-settings-trigger {
    bottom: 12px;
    left: 12px;
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}
