/* ============================================
   beautycompare — Footer
   ============================================ */

.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.85);
  padding-top: 48px;
}

/* ---- Social Row ---- */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

/* ---- App Buttons ---- */
.footer-apps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius-md);
  color: white;
  font-size: .85rem;
  transition: all var(--transition);
  text-decoration: none;
}
.app-btn:hover { border-color: var(--accent); background: rgba(212,163,115,.1); }
.app-btn-icon { font-size: 1.4rem; }
.app-btn-text small {
  display: block;
  font-size: .65rem;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.app-btn-text strong { font-size: .9rem; }

/* ---- Footer Columns ---- */
.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
}
.footer-col-title {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: .01em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links a:hover { color: var(--accent); }

/* Newsletter col */
.footer-newsletter { display: flex; flex-direction: column; gap: 12px; }
.footer-newsletter p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: white;
  font-family: var(--font-sans);
  font-size: .83rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-btn {
  padding: 10px 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-btn:hover { background: var(--accent-dark); }

/* ---- Footer Bottom ---- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }
.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.footer-legal {
  display: flex;
  gap: 16px;
}
.footer-legal a {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--accent); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-apps { flex-direction: column; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

/* ---- Plusbrands Banner + Copyright ---- */
.footer-banner-wrap {
  padding-bottom: 40px;
}

.footer-copy-small {
  font-size: 11px;
  color: rgba(255,255,255,.28);
  margin: 24px 0 14px;
  text-align: center;
}

.footer-banner-plusbrands {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #faf6f0;
  padding: 22px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-banner-plusbrands:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

.fbp-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  min-width: 0;
}
.fbp-wordmark {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  font-size: 26px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: .06em;
  line-height: 1;
  white-space: nowrap;
}
.fbp-divider {
  display: inline-block;
  width: 1px;
  height: 32px;
  background: #d4a373;
  opacity: .4;
  flex-shrink: 0;
}
.fbp-tagline {
  font-family: var(--font-sans, "Inter", system-ui, sans-serif);
  font-size: 12px;
  color: #6a6660;
  line-height: 1.5;
}
.fbp-cta {
  display: inline-block;
  padding: 11px 26px;
  background: #1a1a1a;
  color: #faf6f0;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-banner-plusbrands:hover .fbp-cta {
  background: #d4a373;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .footer-banner-plusbrands {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 22px 20px;
  }
  .fbp-left {
    flex-direction: column;
    gap: 12px;
  }
  .fbp-divider {
    width: 32px;
    height: 1px;
  }
  .fbp-tagline { text-align: center; }
}

/* ── Footer Cleanup ──────────────────────────────────────────────────────────── */

.footer-copy-small {
  font-size: 11px;
  color: rgba(255,255,255,.28);
  margin: 24px 0 14px;
  text-align: center;
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
}
.footer-links-inline a {
  display: inline;
  font-size: 12px;
  color: #9a9690;
  text-decoration: none;
  line-height: 1.8;
}
.footer-links-inline a:not(:last-child)::after {
  content: ' · ';
  color: #5a5650;
  padding: 0 3px;
}
.footer-links-inline a:hover { color: #d4a373; }

/* ── Cinema Banner ───────────────────────────────────────────────────────────── */

.footer-cinema-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: #faf6f0;
  padding: 26px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 8px;
}
.footer-cinema-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
}

.fcb-brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.fcb-wordmark {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}
.fcb-tagline {
  font-size: 11px;
  color: #6a6660;
  line-height: 1.4;
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
}

.fcb-screen {
  position: relative;
  height: 160px;
  background: #ffffff;
  border: 1px solid #ebe6dc;
  border-radius: 2px;
  overflow: hidden;
}

.fcb-deal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fcb-deal.active { opacity: 1; }

.fcb-deal-img {
  width: 100px;
  height: 130px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 2px;
  background: #f5ede1;
}
.fcb-deal-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fcb-deal-brand {
  font-size: 12px;
  color: #9a9690;
  letter-spacing: 0.1em;
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.fcb-deal-name {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  font-size: 17px;
  color: #1a1a1a;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}
.fcb-deal-discount {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  font-size: 42px;
  font-weight: 500;
  color: #d4a373;
  flex-shrink: 0;
  line-height: 1;
}
.fcb-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #b8b3ab;
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
}

.fcb-cta {
  display: inline-block;
  padding: 11px 24px;
  background: #1a1a1a;
  color: #faf6f0;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.footer-cinema-banner:hover .fcb-cta {
  background: #d4a373;
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .footer-cinema-banner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
    padding: 20px 18px;
  }
  .fcb-brand { align-items: center; }
  .fcb-cta { align-self: center; }
}
