/* =====================================================================
   BID Footer — stylesheet
   This is the ORIGINAL footer CSS, preserved as-is, with only ONE change:
     - The Google Fonts @import was removed — the font is now enqueued
       properly in PHP (wp_register_style 'bidf-manrope') for performance
       and so it loads only when the widget is on the page.
   Everything else is byte-for-byte the original design.
   ===================================================================== */

  .gfooter {
    --gf-black: #111111;
    --gf-gold:  #fcb415;
    --gf-text:  #5a5f66;
    --gf-heading:#111111;
    --gf-bg:    #F7F4EF;
    --gf-border:#e7e1d8;

    font-family: "Manrope", sans-serif;
    color: var(--gf-text);
    box-sizing: border-box;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--gf-bg);
    overflow-x: hidden;
    padding: 48px 80px 32px;
  }

  .gfooter *,
  .gfooter *::before,
  .gfooter *::after {
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
  }

  .gfooter a {
    text-decoration: none;
  }

  .gfooter-top {
    display: grid;
    grid-template-columns: minmax(380px, 0.9fr) minmax(0, 2.1fr);
    gap: 72px;
    width: 100%;
    align-items: start;
  }

  .gfooter-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .gfooter-mark {
    width: 180px;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex: none;
  }

  .gfooter-mark img {
    width: 100%;
    height: auto;
    display: block;
  }

  .gfooter-desc {
    font-size: 15px;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 0 26px;
  }

  .gfooter-social {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }

  .gfooter-social a {
    color: var(--gf-black);
    display: inline-flex;
    transition: color .18s ease, transform .18s ease;
  }

  .gfooter-social a svg {
    width: 19px;
    height: 19px;
    display: block;
  }

  .gfooter-social a:hover {
    color: var(--gf-gold);
    transform: translateY(-2px);
  }

  .gfooter-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 44px;
    width: 100%;
    justify-content: stretch;
  }

  .gfooter-col {
    min-width: 0;
  }

  .gfooter-col h4 {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--gf-heading);
  }

  .gfooter-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .gfooter-col li {
    margin-bottom: 14px;
  }

  .gfooter-col a {
    color: var(--gf-text);
    font-size: 15px;
    transition: color .18s ease;
    word-break: normal;
  }

  .gfooter-col a:hover {
    color: var(--gf-gold);
  }

  .gfooter-divider {
    height: 1px;
    background: var(--gf-border);
    margin: 36px 0 22px;
    width: 100%;
  }

  .gfooter-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
  }

  .gfooter-copy {
    font-size: 14px;
    color: var(--gf-text);
  }

  .gfooter-legal {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }

  .gfooter-legal a {
    font-size: 14px;
    color: var(--gf-text);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .18s ease;
  }

  .gfooter-legal a:hover {
    color: var(--gf-gold);
  }

  @media (max-width: 1320px) {
    .gfooter {
      padding: 44px 56px 30px;
    }

    .gfooter-top {
      grid-template-columns: minmax(340px, 0.85fr) minmax(0, 2.15fr);
      gap: 52px;
    }

    .gfooter-links {
      gap: 34px;
    }
  }

  @media (max-width: 1100px) {
    .gfooter-top {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .gfooter-desc {
      max-width: 560px;
    }

    .gfooter-links {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 28px;
    }
  }

  @media (max-width: 760px) {
    .gfooter-links {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px 24px;
    }
  }

  @media (max-width: 600px) {
    .gfooter {
      padding: 32px 22px 24px;
    }

    .gfooter-mark {
      width: 150px;
    }

    .gfooter-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    .gfooter-legal {
      gap: 18px;
    }
  }

  @media (max-width: 420px) {
    .gfooter {
      padding: 30px 18px 22px;
    }

    .gfooter-mark {
      width: 135px;
    }

    .gfooter-links {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .gfooter-desc,
    .gfooter-col a {
      font-size: 14px;
    }

    .gfooter-col h4 {
      font-size: 15px;
    }
  }
