.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 30, 98, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 40px rgba(0, 30, 98, 0.28);
  color: #fff;
}

.whatsapp-float svg {
  display: block;
}

.cookie-notice {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9997;
  max-width: 520px;
  margin: 0 auto;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 30, 98, 0.28);
  padding: 24px 28px;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-notice__text {
  color: var(--C0);
  margin: 0;
}

.cookie-notice__text a {
  color: var(--yellow-2);
  font-weight: 600;
  border-bottom: 2px solid var(--yellow);
  transition: color 0.2s ease;
}

.cookie-notice__text a:hover {
  color: var(--yellow);
}

.cookie-notice__btn {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

@media screen and (min-width: 640px) {
  .cookie-notice__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .cookie-notice__btn {
    flex-shrink: 0;
  }
}

@media screen and (orientation: portrait) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .cookie-notice {
    left: 16px;
    right: 16px;
    bottom: 84px;
    padding: 20px;
  }
}
