/* PawWellCare Footer CSS */

.pwc-footer { margin-top: 0; }
.pwc-footer-main {
  background: var(--pwc-navy);
  padding: clamp(56px,8vw,96px) 0 clamp(48px,6vw,72px);
}
.pwc-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: clamp(32px,4vw,56px);
  align-items: start;
}

/* Brand */
.pwc-footer-brand { padding-right: 16px; }
.pwc-footer-logo-link { display: inline-block; margin-bottom: 20px; }
.pwc-footer-logo { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.pwc-footer-tagline {
  font-size: .9375rem; line-height: 1.7;
  color: rgba(253,246,236,.7); margin-bottom: 24px;
}
.pwc-footer-trust { display: flex; flex-direction: column; gap: 10px; }
.pwc-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .8125rem; color: rgba(253,246,236,.6); font-weight: 500;
}
.pwc-trust-icon {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(224,122,95,.15);
  border-radius: 50%; flex-shrink: 0;
  color: var(--pwc-coral-lt);
}

/* Social */
.pwc-footer-social { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.pwc-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(224,122,95,.15);
  border-radius: 50%; flex-shrink: 0;
  color: var(--pwc-coral-lt);
  transition: all var(--t-fast);
}
.pwc-social-icon:hover {
  background: var(--pwc-coral-lt);
  color: var(--pwc-navy);
  transform: translateY(-2px);
}

/* Columns */
.pwc-footer-col-title {
  font-family: var(--pwc-body) !important;
  font-size: .8125rem !important; font-weight: 700 !important;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(253,246,236,.5) !important; margin-bottom: 20px !important;
}
.pwc-footer-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.pwc-footer-links a {
  font-size: .9375rem; color: rgba(253,246,236,.72);
  font-weight: 400; transition: all var(--t-fast);
  display: inline-flex; align-items: center; gap: 6px;
}
.pwc-footer-links a:hover { color: var(--pwc-cream); transform: translateX(4px); }

/* Newsletter */
.pwc-footer-nl-text {
  font-size: .9375rem; line-height: 1.65;
  color: rgba(253,246,236,.7); margin-bottom: 16px;
}
.pwc-nl-input-wrap { margin-bottom: 12px; }
.pwc-nl-input {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md);
  font-family: var(--pwc-body); font-size: .9375rem;
  color: var(--pwc-white); outline: none;
  transition: all var(--t-fast);
}
.pwc-nl-input::placeholder { color: rgba(255,255,255,.4); }
.pwc-nl-input:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--pwc-coral-lt);
  box-shadow: 0 0 0 3px rgba(224,122,95,.2);
}
.pwc-nl-note {
  display: flex; align-items: center; gap: 6px;
  font-size: .8125rem; color: rgba(253,246,236,.45);
  margin: 10px 0 0;
}
.pwc-nl-note svg { flex-shrink: 0; }

/* Footer Bottom */
.pwc-footer-bottom {
  background: var(--pwc-navy-dk);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.pwc-footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.pwc-footer-copy {
  font-size: .875rem; color: rgba(253,246,236,.45);
  margin: 0; font-family: var(--pwc-body);
}
.pwc-legal-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.pwc-legal-list a {
  font-size: .8125rem; color: rgba(253,246,236,.4);
  transition: color var(--t-fast);
}
.pwc-legal-list a:hover { color: rgba(253,246,236,.8); }

/* Astra footer override */
#colophon, .ast-footer-overlay { display: none !important; }

/* Responsive */
@media (max-width: 1100px) {
  .pwc-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pwc-footer-brand { grid-column: 1 / -1; padding-right: 0; }
  .pwc-footer-trust { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .pwc-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .pwc-footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pwc-legal-list { gap: 12px; }
}
