:root {
  --dg-bottom-gold: #b79552;
  --dg-bottom-gold-deep: #8c6220;
  --dg-bottom-ink: #656963;
}

.dg-mobile-bottom-bar {
  display: none;
}

@media (max-width: 620px) {
  body.has-dg-mobile-bottom-bar {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .floating-actions {
    display: none !important;
  }

  .dg-mobile-bottom-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: env(safe-area-inset-bottom);
    left: 0;
    width: 100%;
    height: 64px;
    padding: 2px 8px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
    overflow: hidden;
    color: var(--dg-bottom-ink);
    background: #fff;
    border: 1.5px solid transparent;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(71, 52, 17, .13);
    font-family: var(--font-body, "Plus Jakarta Sans", sans-serif);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    filter: blur(5px);
    transform: translateY(calc(100% + 12px));
    transform-origin: 50% 100%;
    transition:
      visibility .34s ease,
      filter .48s ease,
      transform .62s cubic-bezier(.22, 1, .36, 1);
  }

  .dg-mobile-bottom-bar.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    filter: blur(0);
    transform: translateY(0);
  }

  body.nav-open .dg-mobile-bottom-bar,
  body.dg-nav-open .dg-mobile-bottom-bar,
  body.splash-active .dg-mobile-bottom-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    filter: blur(4px);
    transform: translateY(calc(100% + 12px));
  }

  .dg-mobile-bottom-contour {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
  }

  .dg-mobile-bottom-brand,
  .dg-mobile-bottom-item {
    position: relative;
    z-index: 2;
    min-width: 0;
    height: 60px;
    padding: 0;
    display: grid;
    place-items: center;
    align-content: center;
    color: inherit;
    background: transparent;
    border: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  .dg-mobile-bottom-brand img {
    width: 27px;
    height: 40px;
    display: block;
    object-fit: contain;
  }

  .dg-mobile-bottom-item.is-home {
    color: var(--dg-bottom-gold-deep);
  }

  .dg-mobile-bottom-icon {
    width: 21px;
    height: 21px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
  }

  .dg-mobile-bottom-icon.is-solid {
    fill: currentColor;
    stroke: none;
  }

  .dg-mobile-bottom-item.is-home .dg-mobile-bottom-icon {
    width: 23px;
    height: 23px;
    fill: currentColor;
    stroke-width: 1.35;
  }

  .dg-mobile-bottom-brand:active,
  .dg-mobile-bottom-item:active {
    transform: scale(.96);
  }
}

@media (max-width: 360px) {
  .dg-mobile-bottom-bar {
    padding-inline: 5px;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 0px) {
  .dg-mobile-bottom-bar,
  .dg-mobile-bottom-brand,
  .dg-mobile-bottom-item {
    transition: none !important;
  }
}

/* Three reviewable mobile dock directions. Option 1 is the production
   default; append ?bottom-bar=2 or ?bottom-bar=3 to preview the alternatives. */
@media (max-width: 620px) {
  .dg-mobile-bottom-bar[data-variant="option-1"] {
    right: 10px;
    bottom: 0;
    left: 10px;
    width: auto;
    height: calc(66px + env(safe-area-inset-bottom));
    padding: 5px 5px max(5px, env(safe-area-inset-bottom));
    border: 1px solid rgba(183, 149, 82, .48);
    border-radius: 22px 22px 0 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 34px rgba(42, 34, 19, .16);
  }

  .dg-mobile-bottom-bar[data-variant="option-1"] .dg-mobile-bottom-contour {
    display: none;
  }

  .dg-mobile-bottom-bar[data-variant="option-1"] .dg-mobile-bottom-brand,
  .dg-mobile-bottom-bar[data-variant="option-1"] .dg-mobile-bottom-item {
    height: 54px;
    border-radius: 15px;
    transition: background .22s ease, color .22s ease, transform .22s ease;
  }

  .dg-mobile-bottom-bar[data-variant="option-1"] .dg-mobile-bottom-item + .dg-mobile-bottom-item,
  .dg-mobile-bottom-bar[data-variant="option-1"] .dg-mobile-bottom-brand + .dg-mobile-bottom-item {
    border-left: 1px solid rgba(183, 149, 82, .18);
  }

  .dg-mobile-bottom-bar[data-variant="option-1"] .dg-mobile-bottom-item.is-home {
    background: #f4ead5;
    color: var(--dg-bottom-gold-deep);
  }

  .dg-mobile-bottom-bar[data-variant="option-1"] .dg-mobile-bottom-brand img {
    width: 23px;
    height: 35px;
  }

  .dg-mobile-bottom-bar[data-variant="option-2"] {
    right: 14px;
    bottom: calc(env(safe-area-inset-bottom) + 14px);
    left: 14px;
    width: auto;
    height: 72px;
    padding: 7px;
    border: 1px solid rgba(222, 191, 119, .52);
    border-radius: 24px;
    color: #e8e0d0;
    background: rgba(17, 24, 32, .94);
    box-shadow: 0 18px 42px rgba(11, 15, 20, .28);
    backdrop-filter: blur(18px);
  }

  .dg-mobile-bottom-bar[data-variant="option-2"] .dg-mobile-bottom-contour {
    display: none;
  }

  .dg-mobile-bottom-bar[data-variant="option-2"] .dg-mobile-bottom-brand,
  .dg-mobile-bottom-bar[data-variant="option-2"] .dg-mobile-bottom-item {
    height: 56px;
    border-radius: 17px;
    transition: background .22s ease, color .22s ease, transform .22s ease;
  }

  .dg-mobile-bottom-bar[data-variant="option-2"] .dg-mobile-bottom-brand img {
    width: 24px;
    height: 36px;
    filter: brightness(0) invert(1) sepia(.22) saturate(.72);
  }

  .dg-mobile-bottom-bar[data-variant="option-2"] .dg-mobile-bottom-item.is-home {
    color: #171b20;
    background: linear-gradient(145deg, #e4c889, #b79552);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 4px 12px rgba(183, 149, 82, .22);
  }

  .dg-mobile-bottom-bar[data-variant="option-2"] .dg-mobile-bottom-item:not(.is-home):active,
  .dg-mobile-bottom-bar[data-variant="option-2"] .dg-mobile-bottom-brand:active {
    background: rgba(255, 255, 255, .09);
  }

  .dg-mobile-bottom-bar[data-variant="option-3"] {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(70px + env(safe-area-inset-bottom));
    padding: 4px 10px env(safe-area-inset-bottom);
    border: 0;
    border-top: 3px solid var(--dg-bottom-gold);
    border-radius: 20px 20px 0 0;
    color: #60645f;
    background: #fff;
    box-shadow: 0 -10px 28px rgba(70, 55, 27, .12);
  }

  .dg-mobile-bottom-bar[data-variant="option-3"] .dg-mobile-bottom-contour {
    display: none;
  }

  .dg-mobile-bottom-bar[data-variant="option-3"] .dg-mobile-bottom-brand,
  .dg-mobile-bottom-bar[data-variant="option-3"] .dg-mobile-bottom-item {
    height: 56px;
    border-radius: 14px;
    transition: background .22s ease, color .22s ease, transform .22s ease;
  }

  .dg-mobile-bottom-bar[data-variant="option-3"] .dg-mobile-bottom-brand img {
    position: relative;
    z-index: 1;
    width: 23px;
    height: 32px;
    filter: brightness(0) invert(1);
  }

  .dg-mobile-bottom-bar[data-variant="option-3"] .dg-mobile-bottom-brand::before {
    content: "";
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--dg-bottom-gold);
  }

  .dg-mobile-bottom-bar[data-variant="option-3"] .dg-mobile-bottom-item.is-home {
    position: relative;
    color: var(--dg-bottom-gold-deep);
    background: rgba(183, 149, 82, .14);
  }

  .dg-mobile-bottom-bar[data-variant="option-3"] .dg-mobile-bottom-item.is-home::after {
    content: "";
    position: absolute;
    right: 22%;
    bottom: 2px;
    left: 22%;
    height: 2px;
    border-radius: 999px;
    background: var(--dg-bottom-gold);
  }
}
