/* ============================================================
   CROIRE SHOP — footer.css
   ============================================================ */

footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.5);
  padding: 4rem 6vw 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── BRAND COL ── */
.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 0.8rem;
}

.footer-brand .logo-text {
  color: var(--gold-light);
  font-size: 1.4rem;
}

.footer-brand .logo-mark {
  background: rgba(191, 161, 106, 0.2);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-address {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  font-style: normal;
}

/* ── NAVIGATION COLS ── */
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.6rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--gold-light);
}

/* ── SOCIAL LINKS ── */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  transition: border-color var(--transition-mid), color var(--transition-mid), background var(--transition-mid);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(191, 161, 106, 0.1);
}

.social-link svg {
  width: 14px;
  height: 14px;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
