/* ─── Footer ─────────────────────────────────────────────────────── */
.novishi-footer {
  background: #111827;
  color: #fff;
}

.novishi-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px 54px;
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr 1.35fr;
  gap: 56px;
  align-items: start;
}

/* Brand column */
.novishi-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.novishi-footer-logo {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
}
.novishi-footer-logo span { color: #4F46E5; }

.novishi-footer-brand p {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.7;
  max-width: 300px;
}

/* Social icons */
.novishi-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.novishi-footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s, background .25s;
}
.novishi-footer-socials a:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
}
.novishi-footer-socials img { display: block; }

/* Nav columns */
.novishi-footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.novishi-footer-column h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 4px;
}
.novishi-footer-column a {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  transition: color .25s, transform .25s;
  display: inline-block;
}
.novishi-footer-column a:hover {
  color: #fff;
  transform: translateX(2px);
}

/* Newsletter column */
.novishi-footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.novishi-footer-newsletter h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
}
.novishi-footer-newsletter p {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.6;
}

.novishi-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.novishi-newsletter-form input {
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .25s;
}
.novishi-newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.novishi-newsletter-form input:focus { border-color: rgba(255,255,255,.7); }
.novishi-newsletter-form button {
  height: 52px;
  background: #fff;
  color: #111827;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  transition: transform .25s, box-shadow .25s;
}
.novishi-newsletter-form button:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,255,255,.12); }

/* Bottom bar */
.novishi-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.novishi-footer-bottom p {
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

/* Payment icons */
.novishi-payments {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.novishi-payments span {
  min-width: 60px;
  height: 34px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.novishi-payments img { display: block; max-height: 20px; }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .novishi-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px 28px 44px;
  }
  .novishi-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .novishi-footer-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 36px;
  }
  .novishi-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}
