@layer customer {
  .header {
    align-items: center;
    background-color: white;
    border-bottom: solid 1px var(--gray-2);
    column-gap: var(--size-1);
    display: flex;
    justify-content: space-between;
    padding: var(--size-2) var(--viewport-padding-x);
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .header\/actions {
    display: flex;
    column-gap: var(--size-1);
  }

  .header\/expand {
    text-indent: -9999px;
    height: 32px;
    cursor: pointer;
    width: 32px;
    white-space: nowrap;
  }

  .header\/menu {
    display: none;
    background: red;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
  }

  .logo {
    align-items: center;
    display: flex;
    gap: var(--size-2);
  }

  .logo\/image {
    width: var(--logo-size);
    height: var(--logo-size);
    margin-right: var(--size-2);
  }

  .logo\/title {
    color: var(--gray-7);
    font-size: var(--font-size-6);
    font-family: var(--font-script);
    line-height: .8;
  }

  .logo\/subtitle {
    display: none;
    color: var(--gray-5);
    font-size: var(--font-size-1);
    font-style: italic;
  }

  @media (min-width: 640px) {
    .logo\/subtitle {
      display: block;
    }
  }
}
