
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px 24px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 107, 53, 0.3);
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

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

.cookie-banner-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.cookie-banner-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.cookie-banner-text a {
  color: #ff6b35;
  text-decoration: none;
}

.cookie-banner-text a:hover {
  text-decoration: underline;
}

.cookie-banner-text a:focus-visible {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  min-width: 300px;
}

.cookie-banner button {
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-banner button:focus-visible {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

.cookie-banner .btn-accept {
  background-color: #ff6b35;
  color: #1a1a1a;
}

.cookie-banner .btn-accept:hover {
  background-color: #ff5a2a;
}

.cookie-banner .btn-reject {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner .btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-banner .btn-customize {
  background-color: transparent;
  color: #ff6b35;
  border: 1px solid #ff6b35;
}

.cookie-banner .btn-customize:hover {
  background-color: #ff6b35;
  color: #1a1a1a;
}

.cookie-customize {
  display: none;
  position: absolute;
  bottom: 100%;
  right: 24px;
  background-color: #ffffff;
  color: #1a1a1a;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  min-width: 300px;
  margin-bottom: 12px;
  z-index: 1001;
}

.cookie-customize.show {
  display: block;
}

.cookie-customize h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-category input[type="checkbox"] {
  margin-top: 2px;
  cursor: pointer;
  accent-color: #ff6b35;
}

.cookie-category label {
  font-size: 13px;
  color: #666666;
  cursor: pointer;
  flex: 1;
}

.cookie-category-name {
  font-weight: 500;
  color: #1a1a1a;
  display: block;
}

.cookie-category-description {
  font-size: 12px;
  color: #999999;
  display: block;
  margin-top: 2px;
}

.cookie-customize-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  border-top: 1px solid #e8e8e8;
  padding-top: 16px;
}

.cookie-customize-actions button {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-customize-actions button:focus-visible {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

.cookie-customize-actions .btn-apply {
  background-color: #ff6b35;
  color: #1a1a1a;
}

.cookie-customize-actions .btn-apply:hover {
  background-color: #ff5a2a;
}

.cookie-customize-actions .btn-close {
  background-color: #f5f5f5;
  color: #1a1a1a;
  border: 1px solid #e8e8e8;
}

.cookie-customize-actions .btn-close:hover {
  background-color: #e8e8e8;
}

.cookie-policy-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #999999;
  margin-top: 12px;
  border-top: 1px solid #e8e8e8;
  padding-top: 12px;
}

.cookie-policy-link a {
  color: #ff6b35;
  text-decoration: none;
}

.cookie-policy-link a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }

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

  .cookie-customize {
    position: fixed;
    bottom: 80px;
    left: 12px;
    right: 12px;
    min-width: auto;
    max-height: 60vh;
    overflow-y: auto;
  }
}

.cookie-banner .btn-accept:hover { color: #ffffff !important; }
.cookie-banner .btn-reject:hover { color: #111111 !important; }
.cookie-customize-actions .btn-apply:hover { color: #ffffff !important; }
.cookie-customize-actions .btn-close:hover { color: #111111 !important; }


/* wh-contrast-fix */
/* Auto-injected: text color did not meet 4.5:1 against declared background. */
.cookie-banner .btn-accept:hover { color: #ffffff !important; }
.cookie-banner .btn-reject:hover { color: #111111 !important; }
.cookie-customize-actions .btn-apply:hover { color: #ffffff !important; }
.cookie-customize-actions .btn-close:hover { color: #111111 !important; }
