.site-footer{
  margin-top:70px !important;
  background:#111 !important;
  color:#fff !important;
  padding:55px 0 35px !important;
}

.footer-wrap{
  width:min(1250px,90%) !important;
  margin:0 auto !important;
  display:grid !important;
  grid-template-columns:1.7fr 1fr 1fr !important;
  gap:60px !important;
  align-items:flex-start !important;
}

.footer-brand{
  display:flex !important;
  gap:30px !important;
  align-items:flex-start !important;
}

.footer-brand img{
  width:90px !important;
  height:90px !important;
  object-fit:contain !important;
  flex-shrink:0 !important;
}

.footer-brand h3,
.footer-newsletter h3{
  margin:0 0 12px !important;
  color:#fff !important;
  font-size:24px !important;
  line-height:1.35 !important;
}

.footer-brand p,
.footer-contact p{
  margin:0 0 8px !important;
  color:#e5e5e5 !important;
  font-size:16px !important;
  line-height:1.7 !important;
}

.footer-social{
  display:flex !important;
  gap:12px !important;
  flex-wrap:wrap !important;
}

.footer-social a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:90px !important;
  padding:9px 14px !important;
  border-radius:999px !important;
  background:#2b2b2b !important;
  color:#fff !important;
  text-decoration:none !important;
  font-size:14px !important;
  transition:.25s !important;
}

.footer-social a:hover{
  background:#7b001c !important;
}

.footer-line{
  width:min(1250px,90%) !important;
  height:1px !important;
  background:rgba(255,255,255,.15) !important;
  margin:40px auto 25px !important;
}

.footer-bottom{
  width:min(1250px,90%) !important;
  margin:0 auto !important;
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  gap:25px !important;
}

.footer-links{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:22px !important;
}

.footer-links a{
  color:#fff !important;
  text-decoration:none !important;
  font-size:15px !important;
  font-weight:600 !important;
}

.footer-links a:hover{
  color:#d4af37 !important;
}

.footer-copy{
    text-align:center !important;
    color:#d5d5d5;
    line-height:1.7;
}

.footer-copy p{
    margin:0 0 6px;
}

.footer-copy small{
    display:block;
    color:#bfbfbf;
    font-size:14px;
}

.footer-brand h3{
  font-size:22px !important;
  white-space:nowrap !important;
}

.footer-bottom{
  width:min(1250px,90%) !important;
  margin:0 auto !important;
  padding-top:8px !important;

  display:grid !important;
  grid-template-columns:1fr auto 1fr !important;
  align-items:start !important;
  gap:30px !important;
}

.footer-links{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:20px !important;
  align-items:flex-start !important;
}

.footer-copy{
  text-align:center !important;
  color:#d5d5d5 !important;
  line-height:1.75 !important;
  min-width:480px;
}

.footer-copy p{
  margin:0 !important;
  font-size:15px !important;
  font-weight:600 !important;
}

.footer-copy small{
  display:block !important;
  margin-top:4px !important;
  color:#bfbfbf !important;
  font-size:14px !important;
}

.footer-policy{
  display:flex !important;
  justify-content:flex-end !important;
  align-items:flex-start !important;
  gap:12px !important;
  flex-wrap:wrap !important;
  padding-top:0 !important;
}

.footer-policy a{
  color:#fff !important;
  text-decoration:none !important;
  font-size:15px !important;
}

.footer-policy span{
  opacity:.4 !important;
}



@media(max-width:900px){
  .footer-wrap{
    grid-template-columns:1fr !important;
    gap:35px !important;
  }

  .footer-brand{
    flex-direction:column !important;
  }

  .footer-bottom{
    grid-template-columns:1fr !important;
    text-align:center !important;
  }

  .footer-links,
  .footer-policy{
    justify-content:center !important;
  }

  .footer-copy{
    min-width:0 !important;
  }
}

/* ================= Cookie ================= */

.cookie-consent{

    position:fixed;

    left:20px;
    right:20px;
    bottom:20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;

    padding:22px 28px;

    background:rgba(36,36,36,.97);

    color:#fff;

    border-radius:16px;

    box-shadow:0 15px 45px rgba(0,0,0,.35);

    backdrop-filter:blur(12px);

    z-index:99999;

    transition:
        .45s ease;

}

.cookie-hidden{

    opacity:0;
    transform:translateY(120%);
    pointer-events:none;

}

.cookie-show{

    opacity:1;
    transform:translateY(0);

}

.cookie-text{

    flex:1;

    line-height:1.8;

    font-size:15px;

}

.cookie-text a{

    color:#fff;

    font-weight:bold;

    text-decoration:underline;

}

.cookie-btn{

    border:none;

    background:#a30032;

    color:#fff;

    padding:14px 34px;

    border-radius:10px;

    cursor:pointer;

    font-size:15px;

    font-weight:700;

    transition:.25s;

}

.cookie-btn:hover{

    background:#c4003c;

    transform:translateY(-2px);

}

@media(max-width:768px){

.cookie-consent{

    left:12px;
    right:12px;
    bottom:12px;

    flex-direction:column;
    align-items:stretch;

}

.cookie-btn{

    width:100%;

}

}