/* Footer overrides (matches screenshot target) */
.site-footer{
  background:#4a4a4a;
  color:#fff;
  padding: 22px 0;
}

/* Layout */
.site-footer .footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 30px;
  flex-wrap:wrap;
  padding-bottom: 14px;
}

.site-footer .footer-title{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Newsletter form */
.site-footer .footer-form{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}

.site-footer .footer-input{
  width: 560px;
  max-width: 100%;
  height: 44px;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 0 16px;
  background: #d9d9d9;
  color: #222;
  font-size: 16px;
}

.site-footer .footer-submit{
  height: 44px;
  border: none;
  border-radius: 8px;
  padding: 0 26px;
  background: #d66a6a;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.site-footer .footer-submit:hover{
  background:#c85a5a;
}

/* Social icons */
.site-footer .footer-icons{
  display:flex;
  align-items:center;
  gap: 18px;
}

.site-footer .footer-icons a{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size: 20px;
}
.site-footer .footer-icons a:hover{
  background:#000;
}

/* Bottom row */
.site-footer .footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 14px;
  font-size: 18px;
}

.site-footer .footer-links{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
}

.site-footer .footer-links a{
  color: #f2a2a2;
  font-weight: 600;
  text-decoration: none;
}
.site-footer .footer-links a:hover{
  text-decoration: underline;
}

.site-footer .footer-links span{
  color: rgba(255,255,255,0.55);
}

/* Mobile */
@media (max-width: 768px){
  .site-footer .footer-title{ font-size: 18px; }
  .site-footer .footer-bottom{ font-size: 16px; }
}