/* ============================================================
   TargetWeb — footer.css
   4-column layout matching reference screenshot
   All colors use CSS variables from functions.php
   ============================================================ */

/* ── Main footer area ─────────────────────────────────────── */
.tw-footer {
  background: var(--footer-bg, #2a2a2a);
  color: var(--footer-text, #cccccc);
  font-family: var(--font-body, "Inter", sans-serif);
}




.tw-footer__main {
  padding: 60px 0 48px;
}

/* ── 4 column grid ────────────────────────────────────────── */
.tw-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

/* ── Column shared styles ─────────────────────────────────── */
.tw-footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tw-footer__heading {
  font-family: var(--font-heading, "Oswald", sans-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--footer-heading, #ffffff);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

/* ── Column 1: Store details ──────────────────────────────── */
.tw-footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: var(--footer-text, #cccccc);
  margin: 0;
  max-width: 320px;
}

.tw-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tw-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--footer-text, #cccccc);
}

.tw-footer__contact-list li svg {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.6;
}

.tw-footer__contact-list a {
  color: var(--footer-link, #cccccc);
  text-decoration: none;
  transition: color 0.2s;
}

.tw-footer__contact-list a:hover {
  color: var(--footer-link-hover, #e63030);
}

/* Hours */
.tw-footer__hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tw-footer__hours-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tw-footer__hours p {
  font-size: 13px;
  color: var(--footer-text, #cccccc);
  margin: 0;
  line-height: 1.6;
}

.tw-footer__hours strong {
  color: #ffffff;
  font-weight: 600;
	display:none !important;
}

/* ── Columns 2 & 3: Nav menus ─────────────────────────────── */
.tw-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tw-footer__menu li a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: var(--footer-link, #cccccc);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    color 0.18s,
    padding-left 0.18s;
  position: relative;
}

.tw-footer__menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 12px;
  height: 2px;
  background: var(--color-primary, #e63030);
  border-radius: 1px;
  transition: transform 0.18s ease;
  transform-origin: left center;
}

.tw-footer__menu li a:hover {
  color: var(--footer-link-hover, #ffffff);
  padding-left: 18px;
}

.tw-footer__menu li a:hover::before {
  transform: translateY(-50%) scaleX(1);
}

/* ── Column 4: Map ────────────────────────────────────────── */
.tw-footer__map {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tw-footer__map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
}

/* ── Column 4: Newsletter ─────────────────────────────────── */
.tw-footer__newsletter-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--footer-text, #cccccc);
  margin: 0;
}

.tw-newsletter__input-wrap {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.tw-newsletter__input {
  flex: 1;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 14px;
  color: #ffffff;
  font-family: var(--font-body, "Inter", sans-serif);
  transition: background 0.2s;
}

.tw-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.tw-newsletter__input:focus {
  background: rgba(255, 255, 255, 0.12);
}

.tw-newsletter__btn {
  height: 46px;
  padding: 0 20px;
  background: var(--color-primary, #e63030);
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body, "Inter", sans-serif);
  white-space: nowrap;
  transition: opacity 0.18s;
  flex-shrink: 0;
}

.tw-newsletter__btn:hover {
  opacity: 0.88;
}

/* Social icons under newsletter */
.tw-footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.tw-footer__social {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--footer-text, #cccccc);
  text-decoration: none;
  transition:
    background 0.18s,
    color 0.18s;
}

.tw-footer__social:hover {
  background: var(--color-primary, #e63030);
  color: #ffffff;
}

/* ══════════════════════════════════════════════════════════
   BOTTOM BAR
   ══════════════════════════════════════════════════════════ */
.tw-footer__bar {
  background: var(--footer-bar-bg, #e63030);
  color: var(--footer-bar-text, #ffffff);
}

.tw-footer__bar-inner {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tw-footer__copyright {
  font-size: 13px;
  color: var(--footer-bar-text, #ffffff);
  margin: 0;
  line-height: 1.4;
}

.tw-footer__copyright strong {
  font-weight: 700;
}

.tw-footer__copyright a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.15s;
}

.tw-footer__copyright a:hover {
  opacity: 0.75;
}

/* Bar right side — Text Us + Logo */
.tw-footer__bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Powered by text link — inline in copyright */
.tw-footer__powered-text-link {
  color: var(--footer-bar-text, #ffffff);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.15s;
}

.tw-footer__powered-text-link:hover {
  opacity: 0.75;
}

/* Logo link — far right */
.tw-footer__powered-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.tw-footer__powered-logo-link:hover {
  opacity: 0.8;
}

.tw-footer__powered-logo {
  height: 20px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.15s;
}

.tw-footer__powered-link:hover .tw-footer__powered-logo {
  opacity: 1;
}

/* ── Fix white space below footer ─────────────────────────── */
html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.tw-page-wrap {
  flex: 1;
}

#tw-footer {
  margin-top: 0;
}

/* Text Us Now button */
.tw-footer__text-us {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--footer-btn-bg, #ffffff);
  color: var(--footer-btn-text, #e63030);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.18s;
  font-family: var(--font-body, "Inter", sans-serif);
}

.tw-footer__text-us:hover {
  opacity: 0.9;
}

.tw-footer__text-us svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .tw-footer__bar-inner {
    padding: 14px 10px !important;
  }
}
/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tw-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .tw-footer__col4 {
    grid-column: span 2;
  }
  .tw-footer__map iframe {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .tw-footer__main {
    padding: 40px 0 32px;
  }
  .tw-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .tw-footer__store {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .tw-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tw-footer__store,
  .tw-footer__col4 {
    grid-column: span 1;
  }
  /* Bottom bar — stack vertically on mobile */
  .tw-footer__bar-inner {
    height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  /* Copyright takes full width */
  .tw-footer__copyright {
    font-size: 12px;
    line-height: 1.6;
    width: 100%;
  }
  /* Right side — stack logo and button */
  .tw-footer__bar-right {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  /* Logo smaller on mobile */
  .tw-footer__powered-logo {
    height: 18px;
  }
  /* Text Us button smaller */
  .tw-footer__text-us {
    padding: 7px 14px;
    font-size: 12px;
  }
  .tw-newsletter__input-wrap {
    flex-direction: column;
    border-radius: 4px;
  }
  .tw-newsletter__input,
  .tw-newsletter__btn {
    width: 100%;
    border-radius: 0;
  }
  .tw-newsletter__btn {
    height: 42px;
  }
}

/* Extra small — 360px */
@media (max-width: 360px) {
  .tw-footer__bar-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
