/* ==========  WahKart Footer  ========== */
.wk-footer {
  background: #0f0f14;
  color: #d1d5db;
  padding: 64px 0 32px;
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.wk-footer .container-xxl {
  padding-left: 20px;
  padding-right: 20px;
}

.wk-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.wk-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.wk-footer-logo-text {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.wk-footer-tag {
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 0 20px;
}

.wk-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.wk-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #d1d5db;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
}
.wk-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.wk-social-fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.wk-social-tw:hover { background: #14171A; color: #fff; border-color: #333; }
.wk-social-ig:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; border-color: transparent; }
.wk-social-yt:hover { background: #FF0000; color: #fff; border-color: #FF0000; }
.wk-social-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.wk-social-li:hover { background: #0A66C2; color: #fff; border-color: #0A66C2; }
.wk-social-pin:hover { background: #E60023; color: #fff; border-color: #E60023; }

.wk-footer-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px;
}
.wk-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wk-footer-links a {
  color: #9ca3af;
  font-size: 12px;
  transition: color .2s ease;
}
.wk-footer-links a:hover { color: var(--wk-primary-light); }

.wk-footer-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 40px 0;
}

.wk-newsletter {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.wk-newsletter-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(139,92,246,.15);
  color: var(--wk-primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.wk-newsletter-title {
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 6px;
}
.wk-newsletter-sub {
  color: #9ca3af;
  font-size: 12px;
  margin: 0 0 20px;
}
.wk-newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.wk-newsletter-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: 340px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 12px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
  font-family: var(--wk-font);
}
.wk-newsletter-input::placeholder { color: #6b7280; }
.wk-newsletter-input:focus {
  border-color: var(--wk-primary-light);
  background: rgba(255,255,255,.06);
}

.wk-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #6b7280;
  font-size: 11px;
}
.wk-footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.wk-footer-legal a {
  color: #9ca3af;
  transition: color .2s ease;
}
.wk-footer-legal a:hover { color: #fff; }

@media (max-width: 991.98px) {
  .wk-footer { padding: 48px 0 28px; }
  .wk-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 575.98px) {
  .wk-footer { padding: 40px 0 28px; }
  .wk-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .wk-footer-divider { margin: 28px 0; }
  .wk-newsletter-form { flex-direction: column; }
  .wk-newsletter-input { max-width: none; font-size: 16px; }
  .wk-newsletter-form .wk-btn { width: 100%; justify-content: center; }
  .wk-footer-bottom { justify-content: center; text-align: center; }
  .wk-footer-legal { justify-content: center; gap: 16px; }
}
