/* ── 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;
}

/* ── NEWSLETTER (store chrome: white band; dark only in .site-footer below) ── */
.newsletter-section {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.nl-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c2410c;
  background: #fff4ec;
  border: 1px solid rgba(255, 105, 0, 0.22);
}
.nl-kicker i {
  font-size: 0.65rem;
  opacity: 0.95;
  color: var(--orange);
}

.nl-heading {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0a0a0a;
}

.nl-lead {
  margin: 0 0 22px;
  max-width: 28rem;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #666;
}

.nl-perk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nl-perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
  background: #fafafa;
  border: 1.5px solid #ededed;
}
.nl-perk i {
  color: var(--orange);
  font-size: 0.75rem;
  width: 1em;
  text-align: center;
}

.nl-form-col {
  display: flex;
  justify-content: flex-end;
}

.nl-form-card {
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 16px;
  background: #fafafa;
  box-shadow: none;
  border: 1.5px solid #ededed;
}

.nl-form-title {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.02em;
}

.nl-form-sub {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 500;
  color: #888;
}

.nl-form-stars {
  color: #f59e0b;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.nl-field {
  margin-bottom: 14px;
}

.nl-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666;
}

.nl-input {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  font-size: 0.9rem;
  border-radius: 12px;
  border: 1.5px solid #e8e8e8;
  background: #fafafa;
  color: #111;
  outline: none;
  transition:
    border-color 0.18s,
    background 0.18s,
    box-shadow 0.18s;
}
.nl-input::placeholder {
  color: #aaa;
}
.nl-input:hover {
  border-color: #d0d0d0;
  background: #fff;
}
.nl-input:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.15);
}

.nl-submit {
  width: 100%;
  margin-top: 4px;
  padding: 15px 18px;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--orange);
  transition:
    transform 0.15s,
    box-shadow 0.2s,
    background 0.2s;
}
.nl-submit:hover {
  background: #e55e00;
  box-shadow: 0 8px 24px rgba(255, 105, 0, 0.3);
  transform: translateY(-1px);
}
.nl-submit:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.nl-submit:disabled {
  opacity: 0.85;
  transform: none;
  cursor: not-allowed;
}

.nl-msg {
  min-height: 1.25em;
  margin: 12px 0 0;
  font-size: 0.8rem;
  text-align: center;
}

.nl-disclaimer {
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.68rem;
  color: #aaa;
}
.nl-disclaimer i {
  font-size: 0.62rem;
  opacity: 0.85;
}

/* ── FOOTER ─────────────────────────────── */
.site-footer {
  margin-top: 0;
}

.footer-main {
  padding: clamp(44px, 6vw, 64px) 0 clamp(36px, 5vw, 48px);
  background: #06060d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.footer-logo {
  margin-bottom: 16px;
}
.footer-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.footer-logo-text {
  font-size: 1.65rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-tagline {
  margin: 0 0 22px;
  max-width: 22rem;
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.48);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.fs-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    color 0.15s,
    background 0.15s,
    border-color 0.15s,
    transform 0.15s;
}
.fs-btn:hover {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.fs-btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s;
}
a.footer-contact-line:hover {
  color: var(--orange);
}
.footer-contact-line i {
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
  font-size: 0.78rem;
  color: var(--orange);
  text-align: center;
}
.footer-contact-address {
  cursor: default;
}

.footer-col-title {
  margin: 0 0 16px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.footer-links-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.15s,
    padding-left 0.12s;
}
.footer-links-col a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-links-col a:focus-visible {
  outline: none;
  color: var(--orange);
  padding-left: 4px;
}

/* ── PAYMENTS ───────────────────────────── */
.footer-payments {
  padding: 16px 0;
  background: #04040a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-payments-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.fp-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}
.fp-label i {
  color: var(--orange);
  font-size: 0.72rem;
}

.fp-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.fp-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.fp-icon {
  font-size: 1.75rem;
  line-height: 1;
}
.fp-icon-visa {
  color: #1a1f71;
}
.fp-icon-mastercard {
  color: #eb001b;
}
.fp-icon-paypal {
  color: #003087;
}
.fp-icon-apple-pay {
  color: #000;
}
.fp-icon-stripe {
  color: #635bff;
}

.interac-card {
  padding: 0 12px;
}
.interac-logo {
  font-size: 0.66rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffb300;
}

/* ── FOOTER BOTTOM ─────────────────────── */
.footer-bottom {
  padding: 18px 0;
  background: #04040a;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.32);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.footer-bottom-links a {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.12s;
}
.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .nl-form-col {
    justify-content: stretch;
  }
  .nl-form-card {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .nl-form-col {
    justify-content: stretch;
  }
  .nl-lead {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer-payments-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  #chat-box {
    width: calc(100vw - 48px);
  }
}
