/* ── CHATBOT ─────────────────────────────── */
#chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#chat-toggle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 105, 0, 0.4);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#chat-toggle:hover {
  transform: scale(1.1);
}
#chat-box {
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  max-height: 420px;
  overflow: hidden;
}
.chat-header {
  background: var(--orange);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px 14px 0 0;
}
.chat-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: white;
}
.chat-status {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.85);
}
.chat-minimize {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 260px;
}
.msg {
  display: flex;
}
.msg.user {
  justify-content: flex-end;
}
.msg-bubble {
  max-width: 75%;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.msg.bot .msg-bubble {
  background: #f5f5f5;
  color: var(--dark);
  border-radius: 4px 12px 12px 12px;
}
.msg.user .msg-bubble {
  background: var(--orange);
  color: white;
  border-radius: 12px 4px 12px 12px;
}
.chat-input-row {
  display: flex;
  border-top: 1px solid var(--border);
}
#chat-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 14px;
  font-size: 0.83rem;
}
#chat-send {
  background: var(--orange);
  color: white;
  border: none;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.82rem;
  transition: background 0.15s;
}
#chat-send:hover {
  background: #e55e00;
}

/* ── FOOTER TOP STRIP ────────────────────── */
.site-footer {
  margin-top: 0;
}
.footer-top-strip {
  background: var(--orange);
  padding: 10px 0;
}
.fts-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: var(--store-max-width, 1400px);
  margin: 0 auto;
  padding: 0 var(--store-gutter, 20px);
}
.fts-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: white;
  font-weight: 600;
}

/* ── FOOTER MAIN ─────────────────────────── */
.footer-main {
  background: #1a1a2e;
  padding: 48px 0 32px;
}
.footer-main .store-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.fs-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.15s,
    opacity 0.15s;
  text-decoration: none;
  flex-shrink: 0;
}
.fs-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Contact info */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact-info div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* Links columns */
.ni-footer {
  color: rgba(255, 255, 255, 0.35);
  width: 14px;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.footer-links-col h5 {
  font-size: 0.82rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  transition:
    color 0.12s,
    padding 0.1s;
  text-decoration: none;
}
.footer-links-col a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-links-col a:hover .ni-footer {
  color: var(--orange);
}

/* ── PAYMENT METHODS ─────────────────────── */
.footer-payments {
  background: #16162a;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-payments-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fp-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.fp-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.fp-card {
  background: white;
  border-radius: 6px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 36px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.interac-card {
  padding: 5px 10px;
}
.interac-logo {
  font-size: 0.72rem;
  font-weight: 900;
  color: #ffb300;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-style: italic;
}

/* ── FOOTER BOTTOM ───────────────────────── */
.footer-bottom {
  background: #111128;
  padding: 14px 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.12s;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--orange);
}
.footer-bottom-sep {
  color: rgba(255, 255, 255, 0.2);
}
.footer-copy {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .footer-main .store-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .footer-main .store-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-main {
    padding: 32px 0;
  }
  .fts-inner {
    gap: 14px;
  }
  .footer-bottom {
    padding: 8px 0;
  }
  .footer-payments {
    padding: 14px 0;
  }
  #chat-box {
    width: calc(100vw - 48px);
  }
}
