/* Eyevertise cookie consent — shared client sites */
.ev-cookie-consent-layer[hidden] {
  display: none !important;
}

.ev-cookie-consent-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(11, 35, 64, 0.55);
  pointer-events: auto;
}

.ev-cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 100000;
  width: min(560px, calc(100vw - 32px));
  padding: 24px 28px;
  background: #fff;
  color: #0b2340;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.ev-cookie-consent__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #0b2340;
}

.ev-cookie-consent__text {
  margin: 0 0 18px;
}

.ev-cookie-consent__text a {
  color: #2f80ff;
  text-decoration: underline;
}

.ev-cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ev-cookie-consent__btn {
  flex: 1 1 120px;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

.ev-cookie-consent__btn--accept {
  background: #1a6b5c;
  color: #fff;
}

.ev-cookie-consent__btn--accept:hover {
  background: #155a4d;
}

.ev-cookie-consent__btn--decline {
  background: #fff;
  color: #0b2340;
  border: 1px solid #c5d0dc;
}

.ev-cookie-consent__btn--decline:hover {
  background: #f4f7fa;
}

.ev-cookie-consent-fab[hidden] {
  display: none !important;
}

.ev-cookie-consent-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99990;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #1a6b5c;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ev-cookie-consent-fab:hover {
  background: #155a4d;
}

.ev-cookie-consent-fab svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.ev-cookie-consent-fab svg path {
  fill: currentColor;
}

@media (max-width: 600px) {
  .ev-cookie-consent {
    bottom: 16px;
    padding: 20px;
  }

  .ev-cookie-consent__actions {
    flex-direction: column;
  }

  .ev-cookie-consent__btn {
    width: 100%;
  }
}
