/* cookie-consent.css */

.cookie-consent-overlay{
  position:fixed;
  inset:0;
  background:rgba(20,25,22,.42);
  z-index:99997;
}

.cookie-consent-box{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  width:min(calc(100% - 32px), 860px);
  background:#fff;
  color:#1d1c19;
  border:1px solid rgba(29,28,25,.14);
  border-radius:28px;
  box-shadow:0 22px 70px rgba(0,0,0,.22);
  z-index:99998;
  overflow:hidden;
  font-family:Georgia,"Times New Roman",serif;
}

.cookie-consent-inner{
  display:grid;
  grid-template-columns:96px 1fr;
  gap:18px;
  padding:28px;
}

.cookie-consent-logo{
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.cookie-consent-logo img{
  width:74px;
  height:74px;
  object-fit:contain;
}

.cookie-consent-content h2{
  margin:0 0 10px;
  font-size:1.55rem;
  font-weight:500;
  line-height:1.15;
}

.cookie-consent-content p{
  margin:0 0 16px;
  color:#6b665e;
  line-height:1.55;
}

.cookie-consent-options{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin:18px 0;
}

.cookie-option{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border:1px solid rgba(29,28,25,.14);
  border-radius:18px;
  padding:14px;
  background:linear-gradient(180deg,#fff,#fbfaf7);
  cursor:pointer;
  font-family:Arial,Helvetica,sans-serif;
}

.cookie-option input{
  margin-top:3px;
  accent-color:#ed1010;
}

.cookie-option strong{
  display:block;
  color:#23372f;
  font-size:.95rem;
  margin-bottom:4px;
}

.cookie-option small{
  display:block;
  color:#6b665e;
  line-height:1.35;
}

.cookie-option-disabled{
  opacity:.78;
  cursor:default;
}

.cookie-consent-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.cookie-btn{
  min-height:44px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid transparent;
  cursor:pointer;
  font-family:Arial,Helvetica,sans-serif;
  font-size:.94rem;
  transition:.25s;
}

.cookie-btn-primary{
  background:#ed1010;
  border-color:#ed1010;
  color:#fff;
}

.cookie-btn-primary:hover{
  background:#c70c0c;
  border-color:#c70c0c;
  transform:translateY(-1px);
}

.cookie-btn-secondary{
  background:#fff;
  border-color:rgba(29,28,25,.18);
  color:#23372f;
}

.cookie-btn-secondary:hover{
  background:#f7f4ee;
  transform:translateY(-1px);
}

.cookie-consent-links{
  margin-top:14px !important;
  font-family:Arial,Helvetica,sans-serif;
  font-size:.9rem;
}

.cookie-consent-links a,
.cookie-link-button{
  color:#ed1010;
  text-decoration:underline;
  text-underline-offset:3px;
  background:transparent;
  border:0;
  padding:0;
  font:inherit;
  cursor:pointer;
}

.cookie-link-button{
  margin-left:14px;
}

.cookie-settings-button{
  position:fixed;
  left:14px;
  bottom:14px;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(29,28,25,.14);
  background:#fff;
  color:#23372f;
  box-shadow:0 8px 22px rgba(0,0,0,.12);
  z-index:99990;
  font-family:Arial,Helvetica,sans-serif;
  cursor:pointer;
}

.cookie-settings-button:hover{
  color:#ed1010;
}

@media (max-width:720px){
  .cookie-consent-box{
    bottom:12px;
    width:calc(100% - 24px);
    max-height:calc(100vh - 24px);
    overflow:auto;
    border-radius:24px;
  }

  .cookie-consent-inner{
    grid-template-columns:1fr;
    padding:22px;
  }

  .cookie-consent-logo{
    justify-content:flex-start;
  }

  .cookie-consent-logo img{
    width:58px;
    height:58px;
  }

  .cookie-consent-options{
    grid-template-columns:1fr;
  }

  .cookie-consent-actions{
    flex-direction:column;
  }

  .cookie-btn{
    width:100%;
  }
}
