/* FreshLane V24 — refined mobile header */

@media (max-width: 760px) {
  .site-header {
    height: 66px !important;
    background: rgba(250, 251, 247, .94) !important;
    border-bottom: 1px solid rgba(31, 61, 43, .07) !important;
    box-shadow: 0 10px 30px rgba(31, 61, 43, .055) !important;
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
  }

  .header-inner {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    gap: 10px !important;
  }

  .logo {
    gap: 9px !important;
    font-size: 20px !important;
    letter-spacing: -.035em !important;
  }

  .logo:not(:has(.site-logo-image[src]))::before {
    content: "F";
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient(145deg, #3d704f, #21442f);
    color: #f7f4e9;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.04em;
    box-shadow: 0 8px 20px rgba(33, 68, 47, .16);
  }

  .logo-dot {
    width: 6px !important;
    height: 6px !important;
    box-shadow: 0 0 0 5px rgba(120, 169, 103, .1);
  }

  .account-open-btn {
    min-height: 40px !important;
    max-width: min(42vw, 148px) !important;
    padding: 0 9px 0 14px !important;
    gap: 8px;
    border: 1px solid rgba(49, 90, 64, .12) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .86) !important;
    color: #284d37 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 22px rgba(31, 61, 43, .08) !important;
  }

  .account-open-btn::after {
    content: "→";
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #eaf2e7;
    color: #315a40;
    font-size: 12px;
  }
}

@media (max-width: 370px) {
  .logo:not(:has(.site-logo-image[src]))::before {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
    border-radius: 10px;
  }

  .logo {
    font-size: 18px !important;
  }
}

