.cookie-banner{
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 1040;
  width: min(1120px, calc(100vw - 2rem));
  transform: translateX(-50%);
}

.cookie-banner.is-hidden{
  display: none;
}

.cookie-banner-card{
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,246,242,.96));
  color: #304657;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 2.25rem;
  box-shadow: 0 18px 48px rgba(16, 12, 9, .18);
  padding: 1.2rem 1.45rem;
  backdrop-filter: blur(10px);
}

.cookie-banner-btn:focus-visible,
.cookie-banner-text a:focus-visible{
  outline: 3px solid rgba(196,122,42,.26);
  outline-offset: 2px;
}

.cookie-banner-figure{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd88d 0%, #ffb743 100%);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.38),
    0 10px 26px rgba(201, 131, 34, .28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cookie-banner-figure img{
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
}

.cookie-banner-copy{
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 1rem;
}

.cookie-banner-title{
  margin: 0 0 .35rem;
  color: #3f5568;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -.01em;
}

.cookie-banner-text{
  margin: 0;
  color: #3f5568;
  line-height: 1.6;
  font-size: clamp(.93rem, 1.1vw, 1rem);
}

.cookie-banner-text a{
  color: #1779b8;
  text-decoration: none;
  border-bottom: 1px dashed rgba(23,121,184,.45);
}

.cookie-banner-text a:hover{
  color: #0f679c;
  border-bottom-color: rgba(15,103,156,.7);
}

.cookie-banner-actions{
  display: flex;
  align-items: center;
  gap: .85rem;
  flex: 0 0 auto;
}

.cookie-banner-btn{
  border: 0;
  border-radius: 999px;
  min-height: 82px;
  min-width: 270px;
  padding: 1rem 1.6rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 10px 24px rgba(191, 116, 39, .26);
}

.cookie-banner-btn:hover{
  transform: translateY(-1px);
}

.cookie-banner-btn-primary{
  background: linear-gradient(180deg, #d88c37 0%, #bf7427 100%);
  color: #fff8f1;
}

.cookie-banner-btn-primary:hover{
  color: #fff;
  background: linear-gradient(180deg, #e19744 0%, #c97c2e 100%);
}

@media (max-width: 767.98px){
  .cookie-banner{
    bottom: .75rem;
    width: calc(100vw - 1.5rem);
  }

  .cookie-banner-card{
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.6rem;
  }

  .cookie-banner-figure{
    width: 76px;
    height: 76px;
  }

  .cookie-banner-figure img{
    width: 40px;
    height: 40px;
  }

  .cookie-banner-copy{
    padding-right: 0;
  }

  .cookie-banner-actions{
    flex-direction: column;
    align-items: stretch;
    gap: .7rem;
  }

  .cookie-banner-btn{
    min-width: 0;
    min-height: 56px;
    width: 100%;
  }
}
