/* ═════════════════════════════════════════════════════════════
   Footer style variants — .footer-simple & .footer-dark
   Applied on the storefront based on company.footer_style
   ═════════════════════════════════════════════════════════════ */

/* ── SIMPLE — minimal single-row footer ── */
.footer-simple { background: #fff; border-top: 1px solid #e5e7eb; padding: 20px 0 12px; margin-top: 40px; color: #4b5563; font-size: 13px; }
.footer-simple .fs-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-simple .fs-brand { display: inline-flex; align-items: center; gap: 10px; }
.footer-simple .fs-brand img { height: 32px; width: auto; object-fit: contain; }
.footer-simple .fs-brand span { font-weight: 700; color: #111827; }
.footer-simple .fs-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-simple .fs-links a { color: #6b7280; text-decoration: none; transition: color .15s; }
.footer-simple .fs-links a:hover { color: var(--app-color, #6366f1); }
/* Rights row (matches the rich footer's copyright block) */
.footer-simple .fs-rights { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 12px; margin-top: 12px; border-top: 1px solid #f3f4f6; font-size: 12px; color: #6b7280; }
.footer-simple .fs-rights p { margin: 0; }
.footer-simple .fs-credit { color: #6b7280; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.footer-simple .fs-credit i { color: #ef4444; }
.footer-simple .fs-credit:hover { color: var(--app-color, #6366f1); }
.footer-simple .fs-payments { display: inline-flex; gap: 8px; align-items: center; }
.footer-simple .fs-payments img { height: 22px; width: auto; opacity: .8; }
@media (max-width: 640px) {
    .footer-simple .fs-inner { flex-direction: column; text-align: center; gap: 12px; }
    .footer-simple .fs-links { justify-content: center; gap: 14px; }
    .footer-simple .fs-rights { justify-content: center; text-align: center; }
}

/* ── DARK — brand-focused dark footer ── */
.footer-dark { background: linear-gradient(180deg,#111827,#030712); color: #d1d5db; padding: 44px 0 20px; margin-top: 40px; }
.footer-dark .fd-brand { text-align: center; margin-bottom: 22px; }
.footer-dark .fd-brand img { max-height: 60px; width: auto; margin-bottom: 10px; }
.footer-dark .fd-name { font-size: 22px; font-weight: 800; letter-spacing: 2px; color: #fff; margin: 6px 0 8px; text-transform: uppercase; }
.footer-dark .fd-tag { font-size: 13px; color: #9ca3af; max-width: 560px; margin: 0 auto; line-height: 1.6; }
.footer-dark .fd-socials { display: flex; justify-content: center; gap: 12px; padding: 0; margin: 0 0 22px; list-style: none; }
.footer-dark .fd-socials a { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--app-color, #6366f1) 15%, transparent); border: 1px solid color-mix(in srgb, var(--app-color, #6366f1) 35%, transparent); color: var(--app-color, #fbbf24); font-size: 15px; text-decoration: none; transition: all .18s; }
.footer-dark .fd-socials a:hover { background: var(--app-color, #6366f1); color: #fff; transform: translateY(-2px); }
.footer-dark .fd-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 22px; margin-bottom: 20px; font-size: 13px; }
.footer-dark .fd-links a { color: #9ca3af; text-decoration: none; padding: 4px 0; transition: color .15s; }
.footer-dark .fd-links a:hover { color: var(--app-color, #fbbf24); }
.footer-dark .fd-divider { height: 1px; background: color-mix(in srgb, var(--app-color, #6366f1) 20%, transparent); margin: 0 auto 14px; max-width: 400px; }
.footer-dark .fd-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: #6b7280; padding-top: 4px; }
.footer-dark .fd-rights-line { margin: 0; }
.footer-dark .fd-bottom .fd-credit { color: #9ca3af; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.footer-dark .fd-bottom .fd-credit i { color: #ef4444; }
.footer-dark .fd-bottom .fd-credit:hover { color: var(--app-color, #fbbf24); }
.footer-dark .fd-payments { display: inline-flex; gap: 8px; align-items: center; }
.footer-dark .fd-payments img { height: 24px; width: auto; opacity: .7; filter: brightness(1.1); }
@media (max-width: 640px) {
    .footer-dark { padding: 30px 0 16px; }
    .footer-dark .fd-name { font-size: 18px; }
    .footer-dark .fd-links { gap: 4px 14px; }
    .footer-dark .fd-bottom { justify-content: center; text-align: center; }
    .footer-dark .fd-socials a { width: 36px; height: 36px; font-size: 14px; }
}
