/** Shopify CDN: Minification failed

Line 605:3 Unexpected "/"

**/
/* /* ============================================================
   footer-style3-custom.css
   Premium Footer V3 — fully CSS-variable driven
   ============================================================ */

/* ── Reset helpers ── */


.footer-v3__col--links a,
.footer-v3__menu-link {
  font-weight: 400 !important;
  font-size: var(--footer-link-size, 13px) !important;
}
.footer-v3 *,
.footer-v3 *::before,
.footer-v3 *::after {
  box-sizing: border-box;
}
.footer-v3 ul,
.footer-v3 ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-v3 a {
  text-decoration: none;
}
.footer-v3 address {
  font-style: normal;
}

/* ── Root container ── */
.footer-v3 {
  position: relative;
  overflow: hidden;
  color: var(--footer-text);
  padding-top: var(--footer-padding-top, 60px);
  padding-bottom: var(--footer-padding-bottom, 40px);
}

/* ── Background image overlay ── */
.footer-v3__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.footer-v3__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

/* ── Inner wrapper ── */
.footer-v3__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--footer-row-gap, 32px);
}

/* ── Divider ── */
.footer-v3__divider {
  border: none;
  border-top: 1px solid var(--footer-divider);
  margin: 0;
}

/* ============================================================
   TOP SECTION
   ============================================================ */
.footer-v3__top {
  display: grid;
  gap: var(--footer-col-gap, 32px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media screen and (min-width: 750px) {
  .footer-v3__top {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* ── Logo ── */
.footer-v3__logo-link {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-v3__logo-link img {
  display: block;
}
.footer-v3__tagline {
  font-size: 0.8em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--footer-link);
  margin: 0 0 6px;
}
.footer-v3__text {
  font-size: var(--footer-link-size, 13px);
  line-height: 1.65;
  color: var(--footer-text);
  margin: 12px 0 0;
}

/* ── Newsletter block ── */
.footer-v3__newsletter-label {
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: calc(var(--footer-letter-spacing, 1) * 0.05em);
  color: var(--footer-link);
  margin: 0 0 4px;
}
.footer-v3__newsletter-heading {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: var(--footer-heading-weight, 700);
  color: var(--footer-heading);
  margin: 0 0 10px;
  letter-spacing: calc(var(--footer-letter-spacing, 1) * 0.05em);
}
.footer-v3__newsletter-subtext {
  font-size: var(--footer-link-size, 13px);
  line-height: 1.6;
  color: var(--footer-text);
  margin: 0 0 18px;
}
.footer-v3__newsletter-subtext p { margin: 0; }

/* Form field */
.footer-v3__newsletter-field {
  display: flex;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}
.footer-v3__newsletter-field--stacked {
  flex-direction: column;
  gap: 8px;
}
.footer-v3__newsletter-field--stacked .footer-v3__newsletter-input {
  border-radius: 4px;
}
.footer-v3__newsletter-field--stacked .footer-v3__newsletter-btn {
  border-radius: var(--footer-btn-radius, 0);
  align-self: flex-start;
}
.footer-v3__input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--footer-input-placeholder);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.footer-v3__newsletter-input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  background: var(--footer-input-bg, #ffffff);
  color: var(--footer-input-text, #333);
  border: none;
  outline: none;
  font-size: var(--footer-link-size, 13px);
  font-family: inherit;
}
.footer-v3__newsletter-input--icon {
  padding-left: 36px;
}
.footer-v3__newsletter-input::placeholder {
  color: var(--footer-input-placeholder, #aaa);
}
.footer-v3__newsletter-btn {
  height: 48px;
  padding: 0 22px;
  background: var(--footer-btn-bg, #8dc63f);
  color: var(--footer-btn-text, #fff);
  border: none;
  cursor: pointer;
  font-size: var(--footer-link-size, 13px);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: inherit;
  transition: background var(--footer-accordion-speed, 300ms) ease,
              color var(--footer-accordion-speed, 300ms) ease,
              transform 150ms ease;
  border-radius: var(--footer-btn-radius, 0);
  white-space: nowrap;
}
.footer-v3__newsletter-btn:hover,
.footer-v3__newsletter-btn:focus-visible {
  background: var(--footer-btn-hover-bg, #76aa30);
  color: var(--footer-btn-hover-text, #fff);
  transform: translateY(-1px);
}
.footer-v3__newsletter-btn--rounded {
  border-radius: 9999px;
}

/* Form messages */
.footer-v3__form-message {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8em;
  margin: 4px 0 0;
  padding: 6px 10px;
  border-radius: 4px;
}
.footer-v3__form-message--error {
  background: rgba(220, 38, 38, 0.15);
  color: #fca5a5;
}
.footer-v3__form-message--success {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}

/* ── Social list ── */
.footer-v3__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
}
.footer-v3__social-list .list-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--footer-text);
  transition: border-color 250ms ease, background 250ms ease, transform 200ms ease;
}
.footer-v3__social-list .list-social__link:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.footer-v3__social-list .list-social__link svg {
  width: 16px;
  height: 16px;
}

/* ── Address block ── */
.footer-v3__company-name {
  font-weight: var(--footer-heading-weight, 700);
  font-size: var(--footer-heading-size, 13px);
  color: var(--footer-heading);
  margin: 0 0 4px;
}
.footer-v3__address-desc {
  font-size: var(--footer-link-size, 13px);
  color: var(--footer-link);
  margin: 0 0 14px;
}
.footer-v3__contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.footer-v3__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--footer-link-size, 13px);
  color: var(--footer-text);
  line-height: 1.5;
}
.footer-v3__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--footer-link);
}
.footer-v3__contact-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--footer-text);
  transition: color 200ms ease;
}
.footer-v3__contact-link:hover {
  color: var(--footer-link-hover);
}

/* ============================================================
   MIDDLE SECTION — menu columns
   ============================================================ */
.footer-v3__middle {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--footer-col-gap, 32px);
}
@media screen and (min-width: 750px) {
  .footer-v3__middle--cols-2 { grid-template-columns: repeat(2, 1fr); }
  .footer-v3__middle--cols-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-v3__middle--cols-4 { grid-template-columns: repeat(4, 1fr); }
  .footer-v3__middle--cols-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ── Column heading (desktop: static, mobile: button) ── */
.footer-v3__col-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--footer-divider);
  padding: 12px 0;
  cursor: default;
  font-size: var(--footer-heading-size, 13px);
  font-weight: var(--footer-heading-weight, 700);
  color: var(--footer-heading);
  letter-spacing: calc(var(--footer-letter-spacing, 1) * 0.05em);
  text-transform: uppercase;
  text-align: left;
  font-family: inherit;
}
@media screen and (min-width: 750px) {
  .footer-v3__col-heading {
    border-bottom: none;
    padding: 0 0 14px;
    cursor: default;
    pointer-events: none;
  }
  .footer-v3__col-heading[disabled] {
    cursor: default;
  }
  .footer-v3__accordion-icon {
    display: none;
  }
}

/* ── Accordion icon ── */
.footer-v3__accordion-icon {
  font-size: var(--footer-accordion-icon-size, 20px);
  color: var(--footer-accordion-icon-color, #fff);
  line-height: 1;
  display: flex;
  align-items: center;
  transition: transform var(--footer-accordion-speed, 300ms) ease;
}
.footer-v3__accordion-icon-close {
  display: none;
}
.footer-v3__col.is-open .footer-v3__accordion-icon-open {
  display: none;
}
.footer-v3__col.is-open .footer-v3__accordion-icon-close {
  display: inline;
}

/* ── Column body (menu links) ── */
.footer-v3__col-body {
  overflow: hidden;
}
@media screen and (max-width: 749px) {
  .footer-v3__col--accordion .footer-v3__col-body[hidden] {
    display: block;
    max-height: 0;
    transition: max-height var(--footer-accordion-speed, 300ms) ease;
  }
  .footer-v3__col--accordion .footer-v3__col-body:not([hidden]) {
    max-height: 800px;
    transition: max-height var(--footer-accordion-speed, 300ms) ease;
  }
  .footer-v3__col--accordion .footer-v3__col-heading {
    cursor: pointer;
    pointer-events: auto;
  }
}
@media screen and (min-width: 750px) {
  .footer-v3__col-body[hidden] {
    display: block !important;
  }
}

/* ── Menu links ── */
.footer-v3__menu-list {
  display: flex;
  flex-direction: column;
  padding: 10px 0 0;
}
.footer-v3__menu-item {
  padding: 5px 0;
}
.footer-v3__menu-item--divided {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-v3__menu-item--divided:last-child {
  border-bottom: none;
}
.footer-v3__menu-link {
  font-size: var(--footer-link-size, 13px);
  color: var(--footer-link);
  line-height: 1.5;
  display: inline-block;
  position: relative;
  transition: color 200ms ease, padding-left 200ms ease;
}
.footer-v3__menu-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--footer-link-hover);
  transition: width 250ms ease;
}
.footer-v3__menu-link:hover {
  color: var(--footer-link-hover);
}
.footer-v3__menu-link:hover::after {
  width: 100%;
}
.footer-v3__menu-link.is-active {
  color: var(--footer-link-hover);
  font-weight: 600;
}

/* ── Image col ── */
.footer-v3__col--image {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-v3__col-heading--static {
  font-size: var(--footer-heading-size, 13px);
  font-weight: var(--footer-heading-weight, 700);
  color: var(--footer-heading);
  letter-spacing: calc(var(--footer-letter-spacing, 1) * 0.05em);
  text-transform: uppercase;
  margin: 0;
  padding: 0 0 14px;
}

/* ============================================================
   BOTTOM BAR
   ============================================================ */
.footer-v3__bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-top: 16px;
}
.footer-v3__bottom--align-left    { justify-content: flex-start; }
.footer-v3__bottom--align-center  { justify-content: center; }
.footer-v3__bottom--align-between { justify-content: space-between; }

.footer-v3__copyright {
  font-size: 0.8em;
  color: var(--footer-text);
  opacity: 0.85;
}
.footer-v3__copyright a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-v3__copyright p { margin: 0; }

/* ── Payment ── */
.footer-v3__payment {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-v3__payment--align-left   { align-items: flex-start; }
.footer-v3__payment--align-center { align-items: center; }
.footer-v3__payment--align-right  { align-items: flex-end; }

.footer-v3__payment-label {
  font-size: 0.75em;
  color: var(--footer-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}
.footer-v3__payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.footer-v3__payment-item {
  display: flex;
  align-items: center;
}
.footer-v3__payment-item .icon {
  height: var(--footer-payment-icon-size, 38px);
  width: auto;
  border-radius: 4px;
}

/* ── Bottom social ── */
.footer-v3__social-list--bottom {
  margin: 0;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.footer-v3__back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--footer-btn-bg);
  color: var(--footer-btn-text);
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.8em;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 300ms ease, background 200ms ease;
}
.footer-v3__back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.footer-v3__back-to-top:hover {
  background: var(--footer-btn-hover-bg);
}

/* ============================================================
   VIEWPORT ANIMATION
   ============================================================ */
.footer-v3--animate .footer-v3__inner > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.footer-v3--animate.is-visible .footer-v3__inner > * {
  opacity: 1;
  transform: translateY(0);
}
.footer-v3--animate.is-visible .footer-v3__inner > *:nth-child(1) { transition-delay: 0ms; }
.footer-v3--animate.is-visible .footer-v3__inner > *:nth-child(2) { transition-delay: 80ms; }
.footer-v3--animate.is-visible .footer-v3__inner > *:nth-child(3) { transition-delay: 160ms; }
.footer-v3--animate.is-visible .footer-v3__inner > *:nth-child(4) { transition-delay: 240ms; }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media screen and (max-width: 749px) {
  .footer-v3__top {
    gap: 28px;
  }
  .footer-v3__middle {
    gap: 0;
  }
  .footer-v3__col {
    border-bottom: 1px solid var(--footer-divider);
  }
  .footer-v3__col:first-child {
    border-top: 1px solid var(--footer-divider);
  }
  .footer-v3__col-heading {
    padding: 14px 0;
  }
  .footer-v3__menu-list {
    padding: 6px 0 12px;
  }
  .footer-v3__bottom--align-between {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-v3__payment--align-left {
    align-items: center;
  }
  .footer-v3__social-list--bottom {
    justify-content: center;
  }
  .footer-v3__back-to-top {
    bottom: 16px;
    right: 16px;
  }
} */



/* ============================================================
   footer-style3-custom.css  —  Footer V3
   All values driven by CSS variables set in Liquid {%- style -%}
   ============================================================ */

/* ── Reset ── */
.footer-v3 *, .footer-v3 *::before, .footer-v3 *::after { box-sizing: border-box; }
.footer-v3 ul, .footer-v3 ol { list-style: none; margin: 0; padding: 0; }
.footer-v3 a { text-decoration: none; }
.footer-v3 address { font-style: normal; }

/* ── Root container ── */
.footer-v3 {
  position: relative;
  overflow: hidden;
  color: var(--footer-text);
  padding-top: var(--footer-padding-top, 60px);
  padding-bottom: var(--footer-padding-bottom, 40px);
}

/* ── Background image ── */
.footer-v3__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.footer-v3__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

/* ── Inner wrapper ── */
.footer-v3__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--footer-row-gap, 32px);
}

/* ── Divider ── */
.footer-v3__divider {
  border: none;
  border-top: 1px solid var(--footer-divider);
  margin: 0;
}

/* ============================================================
   LOGO ROW (top position)
   ============================================================ */
.footer-v3__logo-row {
  display: flex;
  margin-bottom: 8px;
}
.footer-v3__logo-row--align-left   { justify-content: flex-start; }
.footer-v3__logo-row--align-center { justify-content: center; }
.footer-v3__logo-row--align-right  { justify-content: flex-end; }
.footer-v3__logo-link { display: inline-block; }
.footer-v3__logo-link img { display: block; object-fit: contain; }
.footer-v3__logo-text {
  font-size: 1.4em;
  font-weight: 700;
  color: var(--footer-heading);
  letter-spacing: 0.02em;
}

/* ============================================================
   TOP ROW  — address + newsletter
   ============================================================ */
.footer-v3__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--footer-col-gap, 32px);
}

/* Desktop: side-by-side columns, each auto-sized */
@media screen and (min-width: 750px) {
  .footer-v3__top {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: start;
  }
}

.footer-v3__top-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Company / address block ── */
.footer-v3__company-name {
  font-weight: var(--footer-heading-weight, 700);
  font-size: var(--footer-heading-size, 13px);
  color: var(--footer-heading);
  margin: 0;
}
.footer-v3__address-desc {
  font-size: var(--footer-link-size, 13px);
  color: var(--footer-link);
  margin: 0;
}
.footer-v3__contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-v3__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--footer-link-size, 13px);
  color: var(--footer-text);
  line-height: 1.5;
}
.footer-v3__contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--footer-link);
}
.footer-v3__contact-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--footer-text);
  transition: color 200ms ease;
}
.footer-v3__contact-link:hover { color: var(--footer-link-hover); }

/* ── Newsletter block ── */
.footer-v3__newsletter-label {
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: calc(var(--footer-letter-spacing, 1) * 0.05em);
  color: var(--footer-link);
  margin: 0;
}
.footer-v3__newsletter-heading {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: var(--footer-heading-weight, 700);
  color: var(--footer-heading);
  margin: 0;
  letter-spacing: calc(var(--footer-letter-spacing, 1) * 0.05em);
}
.footer-v3__newsletter-subtext {
  font-size: var(--footer-link-size, 13px);
  line-height: 1.6;
  color: var(--footer-text);
  margin: 0;
}
.footer-v3__newsletter-subtext p { margin: 0; }

/* Newsletter form */
.footer-v3__newsletter-form { width: 100%; }

.footer-v3__newsletter-field {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.footer-v3__newsletter-field--stacked {
  flex-direction: column;
  gap: 8px;
}
.footer-v3__input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--footer-input-placeholder);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.footer-v3__newsletter-input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  background: var(--footer-input-bg, #fff);
  color: var(--footer-input-text, #333);
  border: none;
  outline: none;
  font-size: var(--footer-link-size, 13px);
  font-family: inherit;
}
.footer-v3__newsletter-input--icon { padding-left: 36px; }
.footer-v3__newsletter-input::placeholder { color: var(--footer-input-placeholder, #aaa); }
.footer-v3__newsletter-btn {
  height: 48px;
  padding: 0 22px;
  background: var(--footer-btn-bg, #8dc63f);
  color: var(--footer-btn-text, #fff);
  border: none;
  cursor: pointer;
  font-size: var(--footer-link-size, 13px);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: inherit;
  transition: background var(--footer-accordion-speed, 300ms) ease,
              color var(--footer-accordion-speed, 300ms) ease,
              transform 150ms ease;
  border-radius: var(--footer-btn-radius, 0);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-v3__newsletter-btn:hover,
.footer-v3__newsletter-btn:focus-visible {
  background: var(--footer-btn-hover-bg);
  color: var(--footer-btn-hover-text);
  transform: translateY(-1px);
}
.footer-v3__newsletter-btn--rounded { border-radius: 9999px; }

.footer-v3__form-message {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8em;
  margin: 6px 0 0;
  padding: 6px 10px;
  border-radius: 4px;
}
.footer-v3__form-message--error  { background: rgba(220,38,38,.15); color: #fca5a5; }
.footer-v3__form-message--success { background: rgba(34,197,94,.15); color: #86efac; }

/* Social list */
.footer-v3__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 4px 0 0;
}
.footer-v3__social-list .list-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top:15px;
  margin-bottom:15px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  color: var(--footer-text);
  transition: border-color 250ms ease, background 250ms ease, transform 200ms ease;
}
.footer-v3__social-list .list-social__link:hover {
  border-color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.footer-v3__social-list .list-social__link svg { width: 15px; height: 15px; }

/* ============================================================
   MIDDLE ROW — menu columns grid
   ============================================================ */
.footer-v3__middle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;                   /* mobile: no gap, borders handle separation */
}
@media screen and (min-width: 750px) {
  .footer-v3__middle {
    gap: var(--footer-col-gap, 32px);
  }
  .footer-v3__middle--cols-2 { grid-template-columns: repeat(2, 1fr); }
  .footer-v3__middle--cols-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-v3__middle--cols-4 { grid-template-columns: repeat(4, 1fr); }
  .footer-v3__middle--cols-5 { grid-template-columns: repeat(5, 1fr); }
}

/* Column heading — DESKTOP: static text, no button cursor, no icon */
.footer-v3__col-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0 0 12px;
  font-size: var(--footer-heading-size, 13px);
  font-weight: var(--footer-heading-weight, 700);
  color: var(--footer-heading);
  letter-spacing: calc(var(--footer-letter-spacing, 1) * 0.05em);
  text-transform: uppercase;
  text-align: left;
  font-family: inherit;
  cursor: default;            /* desktop: not interactive */
  pointer-events: none;       /* desktop: disabled */
}

/* Accordion icon hidden on desktop ALWAYS */
.footer-v3__accordion-icon { display: none; }

/* MOBILE overrides */
@media screen and (max-width: 749px) {
  /* Each column becomes a full-width accordion row */
  .footer-v3__col {
    border-bottom: 1px solid var(--footer-divider);
  }
  .footer-v3__col:first-child {
    border-top: 1px solid var(--footer-divider);
  }

  /* heading becomes tappable button */
  .footer-v3__col--accordion .footer-v3__col-heading {
    padding: 14px 0;
    cursor: pointer;
    pointer-events: auto;
    border-bottom: none;
  }

  /* Show accordion icon only on mobile */
  .footer-v3__col--accordion .footer-v3__accordion-icon {
    display: flex;
    align-items: center;
    font-size: var(--footer-accordion-icon-size, 20px);
    color: var(--footer-accordion-icon-color, #fff);
    line-height: 1;
    flex-shrink: 0;
  }
  .footer-v3__accordion-icon-close { display: none; }
  .footer-v3__col.is-open .footer-v3__accordion-icon-open  { display: none; }
  .footer-v3__col.is-open .footer-v3__accordion-icon-close { display: inline; }

  /* Smooth collapse */
  .footer-v3__col--accordion .footer-v3__col-body {
    overflow: hidden;
    transition: max-height var(--footer-accordion-speed, 300ms) ease;
  }
  .footer-v3__col--accordion .footer-v3__col-body[hidden] {
    display: block !important;
    max-height: 0;
  }
  .footer-v3__col--accordion .footer-v3__col-body:not([hidden]) {
    max-height: 800px;
  }
}

/* Always show body on desktop */
@media screen and (min-width: 750px) {
  .footer-v3__col-body[hidden] { display: block !important; }
}

/* Menu links */
.footer-v3__menu-list {
  display: flex;
  flex-direction: column;
  padding: 6px 0 14px;
}
.footer-v3__menu-item { padding: 4px 0; }
.footer-v3__menu-item--divided {
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-v3__menu-item--divided:last-child { border-bottom: none; }

.footer-v3__menu-link {
  font-size: var(--footer-link-size, 13px);
  color: var(--footer-link);
  line-height: 1.5;
  display: inline-block;
  position: relative;
  transition: color 200ms ease;
}
.footer-v3__menu-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--footer-link-hover);
  transition: width 250ms ease;
}
.footer-v3__menu-link:hover { color: var(--footer-link-hover); }
.footer-v3__menu-link:hover::after { width: 100%; }
.footer-v3__menu-link.is-active { color: var(--footer-link-hover); font-weight: 600; }

/* Image col */
.footer-v3__col--image { display: flex; flex-direction: column; gap: 10px; }
.footer-v3__col-heading--static {
  font-size: var(--footer-heading-size, 13px);
  font-weight: var(--footer-heading-weight, 700);
  color: var(--footer-heading);
  letter-spacing: calc(var(--footer-letter-spacing, 1) * 0.05em);
  text-transform: uppercase;
  margin: 0;
  padding: 0 0 12px;
}

/* ============================================================
   BOTTOM BAR
   ============================================================ */
.footer-v3__bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-top: 8px;
}
.footer-v3__bottom--align-left    { justify-content: flex-start; }
.footer-v3__bottom--align-center  { justify-content: center; }
.footer-v3__bottom--align-between { justify-content: space-between; }

.footer-v3__copyright {
  font-size: 0.82em;
  color: var(--footer-text);
  opacity: 0.85;
}
.footer-v3__copyright a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-v3__copyright p { margin: 0; }

/* Payment */
.footer-v3__payment {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-v3__payment--align-left   { align-items: flex-start; }
.footer-v3__payment--align-center { align-items: center; }
.footer-v3__payment--align-right  { align-items: flex-end; }
.footer-v3__payment-label {
  font-size: 0.72em;
  color: var(--footer-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}
.footer-v3__payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.footer-v3__payment-item { display: flex; align-items: center; }
.footer-v3__payment-item .icon {
  height: var(--footer-payment-icon-size, 36px);
  width: auto;
  border-radius: 4px;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.footer-v3__back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--footer-btn-bg);
  color: var(--footer-btn-text);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.1em;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 300ms ease, background 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-v3__back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.footer-v3__back-to-top:hover { background: var(--footer-btn-hover-bg); }

/* ============================================================
   VIEWPORT ANIMATION
   ============================================================ */
.footer-v3--animate .footer-v3__inner > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.footer-v3--animate.is-visible .footer-v3__inner > * { opacity: 1; transform: translateY(0); }
.footer-v3--animate.is-visible .footer-v3__inner > *:nth-child(1) { transition-delay: 0ms; }
.footer-v3--animate.is-visible .footer-v3__inner > *:nth-child(2) { transition-delay: 80ms; }
.footer-v3--animate.is-visible .footer-v3__inner > *:nth-child(3) { transition-delay: 160ms; }
.footer-v3--animate.is-visible .footer-v3__inner > *:nth-child(4) { transition-delay: 240ms; }

/* ============================================================
   MOBILE  — spacing & layout fixes
   ============================================================ */
@media screen and (max-width: 749px) {
  .footer-v3__inner {
    padding-left: var(--footer-mobile-padding, 20px);
    padding-right: var(--footer-mobile-padding, 20px);
    gap: 24px;
  }
  .footer-v3__top { gap: 24px; }

  /* Bottom bar stacks on mobile */
  .footer-v3__bottom--align-between {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-v3__payment--align-left { align-items: center; }
  .footer-v3__social-list--bottom { justify-content: center; }

  .footer-v3__back-to-top { bottom: 16px; right: 16px; }

  /* Newsletter input full-width on very small screens */
  .footer-v3__newsletter-field {
    flex-wrap: nowrap;
  }
  .footer-v3__newsletter-input { min-width: 0; }
}

/* ============================================================
   TABLET  — 750px–1024px
   ============================================================ */
@media screen and (min-width: 750px) and (max-width: 1024px) {
  .footer-v3__middle--cols-4,
  .footer-v3__middle--cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
