/* ================================================================
   Thrifty UK Deals — Footer Widgets CSS  (footer-widgets.css)
   Covers:
     .tdw-footer*  → Footer Widget v1  (class-footer-widget.php)
     .fp-*         → Footer Pro Widget (class-footer-pro-widget.php)
     .fg-*         → Footer Glow Widget (class-footer-glow-widget.php)
   ================================================================ */

/* ----------------------------------------------------------------
   SHARED RESETS & TOKENS
---------------------------------------------------------------- */
.tdw-footer *, .fp-wrap *, .fg-wrap * {
  box-sizing: border-box;
}

/* ================================================================
   FOOTER GLOW WIDGET  (.fg-*)
   Dark gradient · glassmorphism panels · glowing socials
   ================================================================ */

/* ---- CSS vars ---- */
.fg-wrap {
  --fg-or:  #F97316;
  --fg-am:  #FBBF24;
  --fg-bg1: #0A0400;
  --fg-bg2: #1A0800;
  --fg-sur: rgba(255,255,255,0.04);
  --fg-bdr: rgba(255,255,255,0.08);
  --fg-txt: rgba(255,255,255,0.85);
  --fg-muted: rgba(255,255,255,0.45);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* ---- TICKER ---- */
.fg-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--fg-bg1);
  border-bottom: 1px solid var(--fg-bdr);
  overflow: hidden;
  height: 38px;
}

.fg-ticker-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  background: var(--fg-or);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  height: 100%;
  white-space: nowrap;
  flex-shrink: 0;
}

.fg-ticker-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: fg-blink 1.2s ease-in-out infinite;
}

@keyframes fg-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.fg-ticker-overflow {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.fg-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: fg-ticker 28s linear infinite;
  will-change: transform;
}

.fg-ticker-track:hover { animation-play-state: paused; }

@keyframes fg-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.fg-ticker-item {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  padding: 0 8px;
}

.fg-ticker-sep {
  color: var(--fg-or);
  font-size: 10px;
  padding: 0 6px;
  opacity: 0.6;
}

/* ---- NEWSLETTER BAND ---- */
.fg-nl-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7C1902 0%, var(--fg-or) 50%, #B45309 100%);
  padding: 52px 32px;
}

.fg-nl-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.fg-nl-glow1 {
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.12);
  top: -100px; left: -80px;
}
.fg-nl-glow2 {
  width: 250px; height: 250px;
  background: rgba(251,191,36,0.2);
  bottom: -80px; right: -60px;
}

.fg-nl-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.fg-nl-left { flex: 1; min-width: 260px; }

.fg-nl-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.fg-nl-heading {
  font-family: 'Syne', 'DM Sans', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin: 0 0 10px;
}

.fg-nl-sub {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin: 0;
}

.fg-nl-right {
  flex: 1;
  min-width: 280px;
  max-width: 440px;
}

.fg-nl-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.fg-nl-input-wrap {
  flex: 1;
  position: relative;
}

.fg-nl-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  pointer-events: none;
}

.fg-nl-input {
  width: 100%;
  padding: 13px 14px 13px 40px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  backdrop-filter: blur(8px);
  transition: border-color .2s, background .2s;
}
.fg-nl-input::placeholder { color: rgba(255,255,255,0.6); }
.fg-nl-input:focus {
  border-color: #fff;
  background: rgba(255,255,255,0.22);
}

.fg-nl-btn {
  padding: 13px 22px;
  border-radius: 10px;
  border: none;
  background: #fff;
  color: var(--fg-or);
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}
.fg-nl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.fg-nl-fine {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.fg-nl-success {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin-top: 8px;
}

/* ---- TRUST BADGES ---- */
.fg-trust-row {
  background: #111007;
  border-top: 1px solid rgba(249,115,22,.15);
  border-bottom: 1px solid rgba(249,115,22,.15);
  padding: 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.fg-trust-row::-webkit-scrollbar { display: none; }

.fg-trust-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.fg-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  flex: 1;
  white-space: nowrap;
  min-width: 160px;
  transition: background .15s;
}
.fg-trust-badge:hover { background: rgba(249,115,22,.06); }
.fg-trust-badge:last-child { border-right: none; }

.fg-trust-ico { font-size: 20px; flex-shrink: 0; }

.fg-trust-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
}
.fg-trust-sub {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.3;
}

/* ---- MAIN FOOTER ---- */
.fg-footer {
  background: linear-gradient(160deg, var(--fg-bg1, #0A0400) 0%, var(--fg-bg2, #1A0800) 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 32px 0;
}

/* Decorative orbs */
.fg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.fg-orb1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,.12), transparent 70%);
  top: -100px; left: -100px;
}
.fg-orb2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(251,191,36,.07), transparent 70%);
  bottom: 60px; right: -60px;
}
.fg-orb3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(249,115,22,.06), transparent 70%);
  top: 40%; left: 50%;
  transform: translateX(-50%);
}

.fg-footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
}

/* ---- GLASS PANELS ---- */
.fg-panel {
  background: var(--fg-sur);
  border: 1px solid var(--fg-bdr);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ---- BRAND PANEL ---- */
.fg-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 18px;
}

.fg-logo-img { max-height: 48px; width: auto; }

.fg-logo-box {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--fg-or), #EA6B00);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(249,115,22,.4);
}

.fg-logo-glyph {
  font-family: 'Syne', 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.fg-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.fg-logo-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.fg-logo-text span {
  font-size: 10px;
  color: var(--fg-or);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fg-about {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0 0 22px;
}

/* ---- SOCIAL ICONS ---- */
.fg-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.fg-soc-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all .18s;
}
.fg-soc-btn svg { width: 16px; height: 16px; }
.fg-soc-btn:hover {
  background: var(--sc, var(--fg-or));
  border-color: var(--sc, var(--fg-or));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--sc, var(--fg-or)) 50%, transparent);
}

/* ---- AMAZON CTA ---- */
.fg-amazon-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,153,0,.1);
  border: 1px solid rgba(255,153,0,.25);
  border-radius: 10px;
  text-decoration: none;
  transition: all .18s;
  color: inherit;
}
.fg-amazon-btn:hover {
  background: rgba(255,153,0,.18);
  border-color: rgba(255,153,0,.45);
  transform: translateY(-1px);
}

.fg-amazon-icon { font-size: 20px; }

.fg-amazon-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.fg-amazon-text strong { font-size: 13px; font-weight: 600; color: #FF9900; }
.fg-amazon-text em     { font-size: 11px; color: rgba(255,255,255,.4); font-style: normal; }

.fg-amazon-arrow { color: #FF9900; font-size: 16px; }

/* ---- LINK PANELS ---- */
.fg-col-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 18px;
}

.fg-col-heading-bar {
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--fg-or), var(--fg-am));
  flex-shrink: 0;
}

.fg-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fg-link-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 13px;
  transition: all .15s;
  border: 1px solid transparent;
}
.fg-link-item a:hover {
  color: #fff;
  background: rgba(249,115,22,.1);
  border-color: rgba(249,115,22,.2);
  padding-left: 12px;
}

.fg-link-ico {
  font-size: 14px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  opacity: .7;
  transition: opacity .15s;
}
.fg-link-item a:hover .fg-link-ico { opacity: 1; }

.fg-link-lbl { flex: 1; }

.fg-link-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--fg-or);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  flex-shrink: 0;
}

/* ---- WAVE DIVIDER ---- */
.fg-wave {
  position: relative;
  z-index: 1;
  height: 40px;
  margin: 0;
}
.fg-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- BOTTOM BAR ---- */
.fg-bottom {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,.4);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0 32px;
}

.fg-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0;
}

.fg-bottom-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.fg-copy { font-size: 12px; color: rgba(255,255,255,.35); }
.fg-bottom-sep { color: rgba(255,255,255,.2); }

.fg-bottom-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.fg-bottom-nav a {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .15s;
}
.fg-bottom-nav a:hover { color: var(--fg-or); }

.fg-bottom-right { display: flex; align-items: center; gap: 12px; }

/* Back to top */
.fg-btt {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 8px;
  color: var(--fg-or);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}
.fg-btt svg { width: 14px; height: 14px; }
.fg-btt:hover {
  background: var(--fg-or);
  border-color: var(--fg-or);
  color: #fff;
}

.fg-disclosure {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 16px;
  line-height: 1.5;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.fg-disclosure-icon { flex-shrink: 0; }

/* ---- RESPONSIVE ---- */
@media ( max-width: 1024px ) {
  .fg-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .fg-panel-brand { grid-column: 1 / -1; }
}

@media ( max-width: 640px ) {
  .fg-footer-inner { grid-template-columns: 1fr; }
  .fg-footer { padding: 40px 18px 0; }
  .fg-bottom { padding: 0 18px; }
  .fg-nl-band { padding: 36px 18px; }
  .fg-nl-row  { flex-direction: column; }
  .fg-nl-btn  { width: 100%; justify-content: center; }
  .fg-trust-inner { min-width: max-content; }
  .fg-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ================================================================
   FOOTER PRO WIDGET  (.fp-*)
   Black · orange wave band · clean glassmorphism
   ================================================================ */

.fp-wrap {
  --fp-or:  #F97316;
  --fp-am:  #FBBF24;
  --fp-dk:  #0F0700;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* Ticker */
.fp-ticker-bar {
  display: flex;
  align-items: center;
  background: var(--fp-dk);
  border-bottom: 1px solid rgba(249,115,22,.2);
  height: 36px;
  overflow: hidden;
}
.fp-ticker-label {
  padding: 0 14px;
  background: var(--fp-or);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: .08em;
  flex-shrink: 0;
}
.fp-ticker-track-wrap { flex: 1; overflow: hidden; display: flex; align-items: center; height: 100%; }
.fp-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: fp-tick 30s linear infinite;
}
.fp-ticker-track:hover { animation-play-state: paused; }
@keyframes fp-tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.fp-ticker-item { font-size: 12px; color: rgba(255,255,255,.6); padding: 0 10px; }
.fp-ticker-sep  { color: var(--fp-or); font-size: 9px; padding: 0 4px; opacity: .5; }

/* Newsletter Band */
.fp-nl-band {
  position: relative;
  background: var(--fp-or);
  overflow: hidden;
  padding: 48px 32px;
}
.fp-nl-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}
.fp-nl-blob1 { width: 260px; height: 260px; background: rgba(255,255,255,.1);  top: -80px; left: -60px; }
.fp-nl-blob2 { width: 200px; height: 200px; background: rgba(251,191,36,.2); bottom: -60px; right: -40px; }
.fp-nl-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.fp-nl-text { flex: 1; min-width: 220px; }
.fp-nl-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 11px; font-weight: 700;
  color: #fff; letter-spacing: .05em;
  margin-bottom: 10px;
}
.fp-nl-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px,3vw,30px);
  font-weight: 800; color: #fff;
  margin: 0 0 8px; letter-spacing: -.3px;
}
.fp-nl-sub { color: rgba(255,255,255,.8); font-size: 14px; margin: 0; }
.fp-nl-form { flex: 1; max-width: 400px; }
.fp-nl-builtin { display: flex; gap: 8px; margin-bottom: 8px; }
.fp-nl-input {
  flex: 1; padding: 11px 14px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 9px;
  background: rgba(255,255,255,.15);
  color: #fff; font-size: 13px; font-family: inherit;
  outline: none; backdrop-filter: blur(8px);
}
.fp-nl-input::placeholder { color: rgba(255,255,255,.55); }
.fp-nl-input:focus { border-color: #fff; background: rgba(255,255,255,.22); }
.fp-nl-btn {
  padding: 11px 20px;
  border-radius: 9px; border: none;
  background: #fff; color: var(--fp-or);
  font-size: 13px; font-weight: 700; font-family: inherit;
  cursor: pointer; white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}
.fp-nl-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.fp-nl-fine { font-size: 11px; color: rgba(255,255,255,.6); margin: 0; }
.fp-nl-success {
  background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.4);
  border-radius: 8px; padding: 10px 14px; font-size: 13px; color: #fff; margin-top: 8px;
}

/* Trust row */
.fp-trust-row {
  background: #0D0500;
  border-bottom: 1px solid rgba(249,115,22,.12);
  overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none;
}
.fp-trust-row::-webkit-scrollbar { display: none; }
.fp-trust-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-right: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
}
.fp-trust-icon { font-size: 20px; }
.fp-trust-text { display: flex; flex-direction: column; }
.fp-trust-text strong { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.9); }
.fp-trust-text span   { font-size: 11px; color: rgba(255,255,255,.4); }

/* Main Footer */
.fp-footer {
  background: var(--fp-dk);
  padding: 56px 32px 0;
}

.fp-footer-body {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Brand col */
.fp-col-brand { }

.fp-logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.fp-logo-img  { max-height: 44px; }
.fp-logo-mark { display: flex; align-items: center; gap: 10px; }
.fp-logo-badge {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--fp-or); display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; color: #fff;
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
.fp-logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.fp-logo-text strong { font-size: 15px; font-weight: 700; color: #fff; }
.fp-logo-text em     { font-size: 10px; color: var(--fp-or); font-style: normal; letter-spacing: .06em; text-transform: uppercase; }

.fp-about { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; margin: 0 0 20px; }

.fp-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.fp-social {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); text-decoration: none;
  transition: all .18s;
}
.fp-social svg { width: 15px; height: 15px; }
.fp-social:hover {
  background: var(--sc, var(--fp-or)); border-color: var(--sc, var(--fp-or));
  color: #fff; transform: translateY(-2px);
}

.fp-amazon-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 9px;
  background: rgba(255,153,0,.1); border: 1px solid rgba(255,153,0,.25);
  text-decoration: none; color: #FF9900; font-size: 13px; font-weight: 600;
  transition: all .15s;
}
.fp-amazon-cta:hover { background: rgba(255,153,0,.2); border-color: rgba(255,153,0,.45); }

/* Link cols */
.fp-col-heading {
  display: flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.45);
  margin: 0 0 16px;
}
.fp-col-heading-line {
  width: 3px; height: 14px; border-radius: 2px;
  background: linear-gradient(to bottom, var(--fp-or), var(--fp-am));
  flex-shrink: 0;
}

.fp-link-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.fp-link-item a {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 8px; border-radius: 7px;
  text-decoration: none; color: rgba(255,255,255,.45); font-size: 13px;
  transition: all .15s;
}
.fp-link-item a:hover { color: #fff; background: rgba(249,115,22,.1); padding-left: 12px; }
.fp-link-icon { font-size: 13px; opacity: .6; width: 18px; text-align: center; flex-shrink: 0; transition: opacity .15s; }
.fp-link-item a:hover .fp-link-icon { opacity: 1; }
.fp-link-label { flex: 1; }
.fp-fcol-new {
  font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px;
  background: var(--fp-or); color: #fff; text-transform: uppercase; letter-spacing: .04em;
}

.fp-footer-divider { height: 40px; }
.fp-footer-divider svg { width: 100%; height: 100%; display: block; }

/* Bottom */
.fp-footer-bottom { background: rgba(0,0,0,.5); padding: 0 32px; }
.fp-footer-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; padding: 20px 0;
}
.fp-footer-bottom-left { flex: 1; }
.fp-footer-copy { font-size: 12px; color: rgba(255,255,255,.3); margin: 0 0 4px; }
.fp-footer-disclosure { font-size: 11px; color: rgba(255,255,255,.2); line-height: 1.5; margin: 0; max-width: 560px; }
.fp-footer-bottom-right { display: flex; align-items: center; gap: 12px; }
.fp-footer-amazon-link {
  display: flex; align-items: center; gap: 3px; text-decoration: none;
  opacity: .55; transition: opacity .15s;
}
.fp-footer-amazon-link:hover { opacity: 1; }
.fp-footer-amazon-text { font-size: 11px; color: #FF9900; font-weight: 700; }

.fp-bottom-nav { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.fp-bottom-nav a { font-size: 11px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .15s; }
.fp-bottom-nav a:hover { color: var(--fp-or); }

.fp-back-to-top {
  display: flex; align-items: center; gap: 4px;
  padding: 7px 12px; border-radius: 7px;
  background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.25);
  color: var(--fp-or); font-size: 12px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: all .15s;
}
.fp-back-to-top svg { width: 13px; height: 13px; }
.fp-back-to-top:hover { background: var(--fp-or); border-color: var(--fp-or); color: #fff; }

/* Responsive – Pro */
@media (max-width: 900px) {
  .fp-footer-body { grid-template-columns: 1fr 1fr; }
  .fp-col-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .fp-footer-body { grid-template-columns: 1fr; }
  .fp-footer { padding: 40px 18px 0; }
  .fp-nl-band { padding: 36px 18px; }
  .fp-nl-builtin { flex-direction: column; }
  .fp-footer-bottom { padding: 0 18px; }
  .fp-footer-bottom-inner { flex-direction: column; }
}

/* ================================================================
   FOOTER WIDGET v1  (.tdw-footer*)
   Original dark footer styles
   ================================================================ */

.tdw-footer {
  --tdw-or:  #F97316;
  --tdw-am:  #FBBF24;
  background: #1C1001;
  color: rgba(255,255,255,.65);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* Stats strip */
.tdw-footer-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: var(--tdw-or);
  padding: 14px 24px;
  gap: 8px;
}
.tdw-fstat {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 12px;
}
.tdw-fstat-icon { font-size: 18px; }
.tdw-fstat-num  { font-family: 'Syne',sans-serif; font-size: 18px; font-weight: 800; color: #fff; }
.tdw-fstat-label{ font-size: 11px; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .06em; }

/* Newsletter */
.tdw-footer-newsletter {
  background: #2A1200;
  border-top: 1px solid rgba(249,115,22,.2);
  border-bottom: 1px solid rgba(249,115,22,.2);
  padding: 36px 32px;
}
.tdw-fn-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.tdw-fn-text { flex: 1; min-width: 200px; }
.tdw-fn-heading { font-family: 'Syne',sans-serif; font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 6px; }
.tdw-fn-sub     { font-size: 14px; color: rgba(255,255,255,.5); margin: 0; }
.tdw-fn-form    { flex: 1; max-width: 380px; }
.tdw-fn-builtin { display: flex; gap: 8px; margin-bottom: 8px; }
.tdw-fn-input {
  flex: 1; padding: 10px 14px;
  border: 1px solid rgba(249,115,22,.35); border-radius: 8px;
  background: rgba(255,255,255,.06); color: #fff; font-size: 13px; font-family: inherit;
  outline: none;
}
.tdw-fn-input::placeholder { color: rgba(255,255,255,.35); }
.tdw-fn-input:focus { border-color: var(--tdw-or); }
.tdw-fn-btn {
  padding: 10px 18px; border-radius: 8px; border: none;
  background: var(--tdw-or); color: #fff; font-size: 13px; font-weight: 700;
  font-family: inherit; cursor: pointer; white-space: nowrap; transition: background .15s;
}
.tdw-fn-btn:hover { background: #EA6B00; }
.tdw-fn-fine { font-size: 11px; color: rgba(255,255,255,.35); margin: 0; }

/* Body grid */
.tdw-footer-body { padding: 48px 32px; max-width: 1200px; margin: 0 auto; }
.tdw-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3,1fr);
  gap: 32px;
}

/* Logo */
.tdw-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.tdw-footer-logo-badge {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--tdw-or); display: flex; align-items: center; justify-content: center;
  font-family: 'Syne',sans-serif; font-size: 15px; font-weight: 800; color: #fff;
}
.tdw-footer-logo-text { line-height: 1.25; font-size: 14px; font-weight: 700; color: #fff; }
.tdw-footer-logo-text span { display: block; font-size: 10px; color: var(--tdw-or); font-weight: 400; text-transform: uppercase; letter-spacing: .06em; }
.tdw-footer-logo-img { max-height: 44px; }

.tdw-footer-about { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; margin: 0 0 16px; }

.tdw-footer-affil-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.25);
  font-size: 11px; font-weight: 600; color: var(--tdw-or);
  margin-bottom: 16px;
}

.tdw-footer-socials { display: flex; flex-wrap: wrap; gap: 7px; }
.tdw-fsocial {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); text-decoration: none; transition: all .16s;
}
.tdw-fsocial svg { width: 15px; height: 15px; }
.tdw-fsocial:hover {
  background: var(--sc, var(--tdw-or)); border-color: var(--sc, var(--tdw-or));
  color: #fff; transform: translateY(-2px);
}

/* Link cols */
.tdw-fcol-heading {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.4);
  margin: 0 0 14px;
}
.tdw-fcol-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.tdw-fcol-links a {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 6px; border-radius: 6px;
  text-decoration: none; color: rgba(255,255,255,.42); font-size: 13px;
  transition: all .14s;
}
.tdw-fcol-links a:hover { color: #fff; background: rgba(249,115,22,.1); padding-left: 10px; }
.tdw-fcol-new {
  font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 4px;
  background: var(--tdw-or); color: #fff; margin-left: 4px; text-transform: uppercase;
}

/* Bottom bar */
.tdw-footer-bottom { background: #110A00; padding: 0 32px; }
.tdw-footer-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding: 18px 0;
}
.tdw-footer-copy { font-size: 12px; color: rgba(255,255,255,.25); margin: 0 0 4px; }
.tdw-footer-disclosure { font-size: 11px; color: rgba(255,255,255,.18); line-height: 1.5; margin: 0; }
.tdw-footer-amazon-link {
  display: inline-flex; align-items: center; gap: 3px;
  text-decoration: none; opacity: .45; transition: opacity .14s;
}
.tdw-footer-amazon-link:hover { opacity: 1; }
.tdw-footer-amazon-text { font-size: 11px; color: #FF9900; font-weight: 700; }

/* Responsive v1 */
@media (max-width: 900px) {
  .tdw-footer-grid { grid-template-columns: 1fr 1fr; }
  .tdw-fcol-brand  { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .tdw-footer-grid { grid-template-columns: 1fr; }
  .tdw-footer-body { padding: 36px 18px; }
  .tdw-footer-newsletter { padding: 28px 18px; }
  .tdw-fn-builtin { flex-direction: column; }
  .tdw-footer-bottom { padding: 0 18px; }
}
