.eci-consent-panel,
.eci-privacy-trigger {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.eci-privacy-trigger {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid #d4c8aa;
  border-radius: 4px;
  background: #fffdf7;
  color: #17362e;
  box-shadow: 0 5px 18px rgba(5, 25, 20, 0.16);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.eci-consent-panel {
  position: fixed;
  right: 18px;
  bottom: 70px;
  left: 18px;
  z-index: 9999;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  width: min(1040px, calc(100% - 36px));
  margin-left: auto;
  padding: 20px;
  border: 1px solid #cfc2a3;
  border-radius: 6px;
  background: #fffdf7;
  color: #17362e;
  box-shadow: 0 14px 45px rgba(5, 25, 20, 0.24);
}

.eci-consent-panel[hidden] {
  display: none;
}

.eci-consent-copy h2 {
  margin: 0 0 5px;
  color: #102f27;
  font: 700 20px/1.2 Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.eci-consent-copy p {
  max-width: 550px;
  margin: 0 0 7px;
  color: #4e5d57;
  font-size: 13px;
  line-height: 1.45;
}

.eci-consent-copy a {
  color: #126858;
  font-size: 12px;
  font-weight: 700;
}

.eci-consent-categories {
  display: grid;
  gap: 8px;
  min-width: 124px;
}

.eci-consent-category {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 28px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.eci-consent-category input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: #126858;
}

.eci-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 330px;
}

.eci-consent-actions button {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.eci-consent-primary {
  border: 1px solid #0b4539;
  background: #0b4539;
  color: #fff;
}

.eci-consent-secondary {
  border: 1px solid #cfc2a3;
  background: #fffdf7;
  color: #17362e;
}

.eci-consent-actions button:focus-visible,
.eci-privacy-trigger:focus-visible,
.eci-consent-category input:focus-visible,
.eci-consent-copy a:focus-visible {
  outline: 3px solid #d7a928;
  outline-offset: 2px;
}

@media (max-width: 820px) {
  .eci-consent-panel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .eci-consent-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eci-consent-actions {
    justify-content: stretch;
    max-width: none;
  }

  .eci-consent-actions button {
    flex: 1 1 130px;
  }
}

@media (max-width: 480px) {
  .eci-privacy-trigger {
    right: 10px;
    bottom: 10px;
  }

  .eci-consent-panel {
    right: 8px;
    bottom: 60px;
    left: 8px;
    width: calc(100% - 16px);
    max-height: calc(100vh - 76px);
    overflow: auto;
    padding: 16px;
  }

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

  .eci-consent-actions .eci-consent-primary {
    grid-column: 1 / -1;
  }
}
