.dcc-consent-panel {
  position: fixed;
  z-index: 10000;
  right: 16px;
  bottom: 20px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(255, 217, 140, 0.72);
  border-radius: 7px;
  background: #11110f;
  color: #fff8e8;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.58);
  font: 15px/1.4 "Inter", "Segoe UI", Arial, sans-serif;
}

.dcc-consent-copy {
  min-width: 0;
  max-width: 620px;
}

.dcc-consent-copy strong {
  display: block;
  margin-bottom: 3px;
  color: #fff8e8;
  font-size: 16px;
  line-height: 1.25;
}

.dcc-consent-copy p {
  margin: 0 0 3px;
  color: #eee7d7;
}

.dcc-consent-copy a {
  color: #ffd98c;
  font-weight: 700;
}

.dcc-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.dcc-consent-button,
.dcc-privacy-settings {
  appearance: none;
  border: 1px solid rgba(255, 190, 62, 0.72);
  border-radius: 5px;
  cursor: pointer;
  font: 800 13px/1 "Inter", "Segoe UI", Arial, sans-serif;
}

.dcc-consent-button {
  min-height: 40px;
  padding: 0 14px;
}

.dcc-consent-allow {
  background: #f3b323;
  color: #18130a;
}

.dcc-consent-decline {
  background: transparent;
  color: #fff4db;
}

.dcc-consent-button:hover,
.dcc-consent-button:focus-visible,
.dcc-privacy-settings:hover,
.dcc-privacy-settings:focus-visible {
  outline: 2px solid #fff2c7;
  outline-offset: 2px;
}

.site-footer .dcc-privacy-settings {
  padding: 0;
  border: 0;
  background: transparent;
  color: #e8c878;
}

.dcc-privacy-settings-floating {
  position: fixed;
  z-index: 9999;
  right: 14px;
  bottom: 14px;
  min-height: 36px;
  padding: 0 12px;
  background: #161711;
  color: #f2cf7a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.dcc-privacy-settings[hidden] {
  display: none !important;
}

@media (max-width: 680px) {
  .dcc-consent-panel {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    bottom: 12px;
    padding: 15px;
  }

  .dcc-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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