/* Footer Pro — 1:1 extraction from footer-pro.liquid · BEM: nafos-footer */

#nafos-footer.nafos-footer {
    --animation-speed: 0.05s;
    --card-max-width: 1600px;
    --card-border-radius: 16px;
    --glass-blur: 28px;
    --text-color: #ffffff;
    --accent-color: #b0b0b0;
    --nafos-footer-grid-cols: 5;
  
    background: transparent;
  }
  
  #nafos-footer.nafos-footer,
  #nafos-footer.nafos-footer *::before,
  #nafos-footer.nafos-footer *::after {
    box-sizing: border-box;
  }
  
  #nafos-footer.nafos-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  #nafos-footer.nafos-footer a {
    text-decoration: none;
    color: inherit;
  }
  
  #nafos-footer .nafos-footer__visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  #nafos-footer.nafos-footer {
    padding: 24px clamp(16px, 4vw, 48px) 32px;
  }
  
  #nafos-footer .nafos-footer__shell {
    max-width: var(--card-max-width);
    margin: 0 auto;
  }
  
  #nafos-footer .nafos-footer__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--card-border-radius);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.65;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  }
  
  #nafos-footer .nafos-footer__reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity var(--animation-speed) cubic-bezier(0.16, 1, 0.3, 1),
      transform var(--animation-speed) cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--nafos-footer-index, 0) * var(--animation-speed));
  }
  
  #nafos-footer .nafos-footer__reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  #nafos-footer .nafos-footer__grid {
    display: grid;
    grid-template-columns: repeat(var(--nafos-footer-grid-cols, 4), minmax(0, 1fr));
    gap: 40px 48px;
    padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px) 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  #nafos-footer .nafos-footer__col--brand {
    min-width: min(100%, 260px);
  }
  
  #nafos-footer .nafos-footer__logo-img {
    display: block;
    max-width: 160px;
    height: auto;
  }
  
  #nafos-footer .nafos-footer__brand-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
  }
  
  #nafos-footer .nafos-footer__brand-desc {
    margin-top: 16px;
    max-width: 320px;
    color: var(--accent-color);
  }
  
  #nafos-footer .nafos-footer__contact {
    margin-top: 20px;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
  }
  
  #nafos-footer .nafos-footer__contact-link {
    display: inline-block;
    max-width: 100%;
    color: var(--text-color);
    font-weight: 600;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  
  #nafos-footer .nafos-footer__contact-link:hover {
    color: var(--accent-color);
  }
  
  #nafos-footer .nafos-footer__menu-heading,
  #nafos-footer .nafos-footer__newsletter-heading {
    margin: 0 0 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
  }
  
  #nafos-footer .nafos-footer__menu-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  #nafos-footer .nafos-footer__menu-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 36px;
    color: var(--text-color);
    text-decoration: none;
  }
  
  #nafos-footer .nafos-footer__menu-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color, #fff);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  #nafos-footer .nafos-footer__menu-link:hover {
    color: var(--accent-color);
  }

  #nafos-footer .nafos-footer__menu-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  #nafos-footer .nafos-footer__menu-link[aria-current='page']::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  #nafos-footer .nafos-footer__menu-link[aria-current='page'] {
    color: var(--text-color);
  }
  
  #nafos-footer .nafos-footer__newsletter-sub {
    margin: 0 0 20px;
    font-size: 13px;
    color: var(--accent-color);
  }
  
  #nafos-footer .nafos-footer__newsletter-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 6px 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }
  
  #nafos-footer .nafos-footer__newsletter-row:focus-within {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 25%, transparent);
  }
  
  #nafos-footer .nafos-footer__newsletter-input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    font: inherit;
    font-size: 14px;
    color: #fff;
    padding: 10px 0;
    -webkit-appearance: none;
    appearance: none;
  }
  
  #nafos-footer .nafos-footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }
  
  #nafos-footer .nafos-footer__newsletter-input:focus {
    outline: none;
  }
  
  #nafos-footer .nafos-footer__newsletter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }
  
  #nafos-footer .nafos-footer__newsletter-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    transform: scale(1.04);
    box-shadow: 0 0 20px color-mix(in srgb, var(--accent-color) 35%, transparent);
  }
  
  #nafos-footer .nafos-footer__newsletter-btn:active:not(:disabled) {
    transform: scale(0.98);
  }
  
  #nafos-footer .nafos-footer__newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }
  
  #nafos-footer .nafos-footer__newsletter-btn-icon {
    transition: transform 0.2s ease;
  }
  
  #nafos-footer .nafos-footer__newsletter-btn:hover:not(:disabled) .nafos-footer__newsletter-btn-icon {
    transform: translateX(2px);
  }
  
  #nafos-footer .nafos-footer__newsletter-btn-text {
    display: none;
  }
  
  @media (min-width: 480px) {
    #nafos-footer .nafos-footer__newsletter-btn-text {
      display: inline;
    }
  }
  
  #nafos-footer .nafos-footer__newsletter-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.25);
    color: #86efac;
    font-size: 14px;
    font-weight: 500;
  }
  
  #nafos-footer .nafos-footer__newsletter-success.is-visible {
    display: flex;
  }
  
  #nafos-footer .nafos-footer__newsletter-error {
    display: none;
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.25);
    color: #fca5a5;
    font-size: 13px;
  }
  
  #nafos-footer .nafos-footer__newsletter-error.is-visible {
    display: block;
  }
  
  #nafos-footer .nafos-footer__bar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100%;
    gap: 16px;
    padding: 20px clamp(24px, 4vw, 48px);
  }
  
  #nafos-footer .nafos-footer__copyright {
    margin: 0;
    font-size: 13px;
    opacity: 0.65;
    flex: 1;
    min-width: 0;
    line-height: 1;
    align-self: center;
  }
  
  #nafos-footer .nafos-footer__payment-trust {
    gap: 4px !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    flex-shrink: 0;
  }
  
  #nafos-footer .nafos-footer__payment-trust .nafos-payment-icons-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    margin: 0 auto !important;
  }
  
  #nafos-footer .nafos-footer__payment-trust .nafos-payment-icon,
  #nafos-footer .nafos-footer__payment-trust .nafos-payment-icon svg,
  #nafos-footer .nafos-footer__payment-trust .payoneer-custom-icon {
    display: block !important;
    height: 24px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    border-radius: 4px;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
  }
  
  #nafos-footer .nafos-footer__secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 9px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
  }
  
  #nafos-footer .nafos-footer__secure-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: nafos-footer-secure-pulse 2s infinite;
    flex-shrink: 0;
  }
  
  @keyframes nafos-footer-secure-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70%  { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
  }
  
  #nafos-footer .nafos-footer__socials {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
    align-self: center;
    margin: 0;
  }
  
  #nafos-footer .nafos-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  }
  
  #nafos-footer .nafos-footer__social-link svg {
    width: 18px;
    height: 18px;
  }
  
  #nafos-footer .nafos-footer__social-link:hover {
    color: #fff;
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px) scale(1.05);
  }
  
  @media screen and (max-width: 1024px) {
    #nafos-footer .nafos-footer__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    #nafos-footer .nafos-footer__col--brand {
      grid-column: 1 / -1;
    }
  }
  
  @media screen and (max-width: 767px) {
    #nafos-footer.nafos-footer {
      padding: 16px 16px 24px;
    }
  
    #nafos-footer .nafos-footer__grid {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 32px;
      padding: 32px 20px;
    }
  
    #nafos-footer .nafos-footer__col,
    #nafos-footer .nafos-footer__brand-desc,
    #nafos-footer .nafos-footer__menu-heading,
    #nafos-footer .nafos-footer__newsletter-heading,
    #nafos-footer .nafos-footer__newsletter-sub {
      text-align: left;
    }
  
    #nafos-footer .nafos-footer__brand-desc {
      max-width: none;
    }
  
    #nafos-footer .nafos-footer__menu-link {
      min-height: 44px;
      width: fit-content;
    }
  
    #nafos-footer .nafos-footer__contact-link {
      font-size: clamp(11px, 3.1vw, 14px);
      letter-spacing: -0.01em;
    }
  
    #nafos-footer .nafos-footer__bar {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 15px !important;
      width: 100% !important;
      overflow: visible !important;
      text-align: center;
    }
  
    #nafos-footer .nafos-footer__payment-trust {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 6px !important;
      order: 1 !important;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      overflow: visible !important;
    }
  
    #nafos-footer .nafos-footer__socials {
      display: flex !important;
      order: 2 !important;
      flex: none !important;
      width: auto !important;
      max-width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
      justify-content: center !important;
      align-items: center !important;
      align-self: center !important;
      visibility: visible !important;
      position: static !important;
      overflow: visible !important;
    }
  
    #nafos-footer .nafos-footer__copyright {
      display: block !important;
      order: 3 !important;
      flex: none !important;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
      text-align: center !important;
      opacity: 1 !important;
      visibility: visible !important;
      position: static !important;
      overflow: visible !important;
    }
  
    #nafos-footer .nafos-footer__secure-badge {
      padding: 2px 8px !important;
      font-size: 9px !important;
      letter-spacing: 1px !important;
      gap: 4px !important;
      margin-bottom: 2px !important;
    }
  
    #nafos-footer .nafos-footer__secure-dot {
      width: 5px !important;
      height: 5px !important;
    }
  
    #nafos-footer .nafos-footer__payment-trust .nafos-payment-icons-row {
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: nowrap !important;
      max-width: 100% !important;
      justify-content: center !important;
      align-items: center !important;
      overflow-x: auto !important;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
  
    #nafos-footer .nafos-footer__payment-trust .nafos-payment-icons-row::-webkit-scrollbar {
      display: none;
    }
  
    #nafos-footer .nafos-footer__payment-trust .nafos-payment-icon,
    #nafos-footer .nafos-footer__payment-trust .nafos-payment-icon svg,
    #nafos-footer .nafos-footer__payment-trust .payoneer-custom-icon {
      height: 24px !important;
    }
  
    #nafos-footer .nafos-footer__newsletter-input {
      font-size: 16px;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    #nafos-footer .nafos-footer__reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  
    #nafos-footer .nafos-footer__secure-dot {
      animation: none;
    }
  }
  