/* Shared mobile shell. The feature option leaves the previous UI recoverable. */
.tgy-mobile-tools,
.tgy-mobile-back,
.tgy-mobile-bottom-nav,
.tgy-mobile-footer-help {
  display: none;
}
.tgy-mobile-panel:not([open]) {
  display: none;
}
.tgy-mobile-panel {
  position: fixed;
  inset: auto 0 var(--tgy-mobile-keyboard-inset, 0px);
  width: min(100%, 600px);
  max-width: 100%;
  max-height: min(90dvh, calc(var(--tgy-mobile-viewport-height, 100dvh) - 16px));
  margin: 0 auto;
  border: 0;
  border-radius: 20px 20px 0 0;
  background: var(--tgy-canvas);
  color: var(--tgy-text);
  padding: 0 0 env(safe-area-inset-bottom);
  overscroll-behavior: contain;
}
.tgy-mobile-panel::backdrop {
  background: rgba(17, 42, 56, .48);
}
.tgy-mobile-panel > header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--tgy-border);
  padding: 8px 16px;
  background: var(--tgy-canvas);
}
.tgy-mobile-panel > header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}
.tgy-mobile-panel-close {
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--tgy-brand);
  font: inherit;
  font-size: 0;
  font-weight: 700;
  cursor: pointer;
}
.tgy-mobile-panel-close::before {
  content: "";
  width: 20px;
  height: 20px;
  background: currentcolor;
  mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath d="m6 6 12 12M18 6 6 18" fill="none" stroke="white" stroke-width="2" stroke-linecap="round"/%3E%3C/svg%3E') center / contain no-repeat;
}

@media (forced-colors: active) {
  .tgy-mobile-panel-close::before {
    background: ButtonText;
    forced-color-adjust: none;
  }
}

.tgy-mobile-panel-content {
  padding: 12px;
}
.tgy-mobile-panel[data-presentation="purchase"][open] {
  animation: tgy-purchase-enter 280ms cubic-bezier(.22, 1, .36, 1) both;
}
.tgy-mobile-panel[data-presentation="purchase"][data-closing="true"] {
  animation: tgy-purchase-leave 280ms ease-in both;
}
.tgy-mobile-panel[data-presentation="purchase"]::backdrop {
  animation: tgy-navigation-backdrop-enter 280ms ease-out both;
}
.tgy-mobile-panel[data-presentation="purchase"][data-closing="true"]::backdrop {
  animation: tgy-navigation-backdrop-leave 280ms ease-in both;
}
@keyframes tgy-purchase-enter {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes tgy-purchase-leave {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(32px); }
}
.tgy-mobile-panel[data-presentation="navigation"] {
  inset: 0 0 auto auto;
  flex-direction: column;
  width: min(35vw, 140px);
  height: var(--tgy-mobile-viewport-height, 100dvh);
  max-height: 100dvh;
  margin: 0;
  border-radius: 16px 0 0 16px;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) 0;
  overflow: hidden;
  box-shadow: var(--tgy-shadow-soft);
}
.tgy-mobile-panel[data-presentation="navigation"][open] {
  display: flex;
  animation: tgy-navigation-enter 220ms cubic-bezier(.22, 1, .36, 1) both;
}
.tgy-mobile-panel[data-presentation="navigation"][data-closing="true"] {
  animation: tgy-navigation-leave 220ms ease-in both;
}
.tgy-mobile-panel[data-presentation="navigation"]::backdrop {
  animation: tgy-navigation-backdrop-enter 220ms ease-out both;
}
.tgy-mobile-panel[data-presentation="navigation"][data-closing="true"]::backdrop {
  animation: tgy-navigation-backdrop-leave 220ms ease-in both;
}
.tgy-mobile-panel[data-presentation="navigation"] > header {
  /* Keep the dialog name available to assistive technology without a title row. */
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.tgy-mobile-panel[data-presentation="navigation"] .tgy-mobile-panel-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 16px 8px;
  scroll-padding-block: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@keyframes tgy-navigation-enter {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
@keyframes tgy-navigation-leave {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}
@keyframes tgy-navigation-backdrop-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes tgy-navigation-backdrop-leave {
  from { opacity: 1; }
  to { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .tgy-mobile-panel[data-presentation="purchase"][open],
  .tgy-mobile-panel[data-presentation="purchase"]::backdrop,
  .tgy-mobile-panel[data-presentation="purchase"][data-closing="true"]::backdrop,
  .tgy-mobile-panel[data-presentation="navigation"][open],
  .tgy-mobile-panel[data-presentation="navigation"]::backdrop,
  .tgy-mobile-panel[data-presentation="navigation"][data-closing="true"]::backdrop {
    animation: none;
  }
}
.tgy-mobile-panel[data-presentation="image"] {
  width: min(96vw, 1100px);
  max-height: calc(var(--tgy-mobile-viewport-height, 100dvh) - 16px);
  border-radius: 12px;
}
.tgy-mobile-panel[data-presentation="image"] .tgy-review-lightbox {
  position: static;
  inset: auto;
  padding: 0;
  background: transparent;
  animation: none;
}
.tgy-mobile-panel[data-presentation="image"] .tgy-review-lightbox-frame {
  width: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
}
.tgy-mobile-panel[data-presentation="image"] .tgy-review-lightbox-image {
  max-height: calc(var(--tgy-mobile-viewport-height, 100dvh) - 112px);
  width: 100%;
  object-fit: contain;
}
.tgy-mobile-panel[data-presentation="image"] .tgy-review-lightbox-image[hidden],
.tgy-mobile-panel[data-presentation="image"] .tgy-review-lightbox-close[hidden] {
  display: none;
}
@media (max-width: 1023px) {
  body.tgy-mobile-ui-v2 .tgy-payment-review-request-form button[type="submit"] {
    --tgy-touch-target: 48px;
    min-height: 48px;
    font-size: 16px;
  }
  body.tgy-mobile-ui-v2 {
    --tgy-sticky-top: var(--tgy-mobile-header-height, calc(52px + var(--tgy-safe-top)));
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    box-sizing: border-box;
    padding-bottom: var(--tgy-mobile-bottom-space, 0px);
    background: var(--tgy-surface-soft);
  }
  body.tgy-mobile-ui-v2 > main {
    /* Fill short pages while keeping the footer after long-page content. */
    flex: 1 0 auto;
  }
  body.tgy-mobile-ui-v2 > .tgy-site-header,
  body.tgy-mobile-ui-v2 > .tgy-site-footer {
    flex-shrink: 0;
  }
  .tgy-mobile-ui-v2 .tgy-topbar {
    display: none;
  }
  .tgy-mobile-ui-v2 .tgy-site-header {
    position: sticky;
    top: 0;
    z-index: var(--tgy-z-header);
    background: var(--tgy-canvas);
  }
  body.tgy-mobile-ui-v2 .tgy-site-header > .tgy-header-inner {
    width: auto;
    min-height: 52px;
    margin: 0 12px;
    padding: env(safe-area-inset-top) 0 0;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .tgy-mobile-ui-v2 .tgy-brand-logo {
    width: 120px;
    height: auto;
    max-height: 40px;
  }
  .tgy-mobile-tools {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
  }
  .tgy-mobile-tools > a {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--tgy-brand);
  }
  .tgy-mobile-tools > .tgy-mobile-search-redundant,
  .tgy-mobile-secondary .tgy-site-header .tgy-brand,
  .tgy-mobile-secondary .tgy-site-header .tgy-mobile-tools > a {
    display: none;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 10px;
    justify-content: center;
    border: 0;
    flex: 0 0 44px;
    background: transparent;
    color: var(--tgy-brand);
  }
  .tgy-mobile-ui-v2 .tgy-mobile-nav-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-nav-icon > span {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: currentColor;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-nav-toggle > span:last-child {
    display: none;
  }
  .tgy-mobile-tools .tgy-language-menu summary {
    min-width: 48px;
    min-height: 44px;
    padding: 0 6px;
    border: 0;
    gap: 4px;
  }
  .tgy-mobile-tools .tgy-language-options {
    position: absolute;
    right: 0;
    top: 100%;
    width: 180px;
    background: var(--tgy-canvas);
    box-shadow: var(--tgy-shadow-soft);
  }
  html.tgy-js .tgy-mobile-ui-v2 .tgy-nav {
    position: fixed;
    inset: 0 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(88vw, 380px);
    height: 100dvh;
    max-height: 100dvh;
    padding: 16px;
    overflow-y: auto;
    background: var(--tgy-canvas);
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: var(--tgy-z-modal);
  }
  html.tgy-js .tgy-mobile-ui-v2.tgy-mobile-nav-open .tgy-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  html.tgy-js .tgy-mobile-ui-v2 .tgy-mobile-panel .tgy-mobile-nav-sheet {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    max-height: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
    padding: 0;
    gap: 8px;
  }
  html.tgy-js .tgy-mobile-ui-v2 .tgy-mobile-panel[data-presentation="navigation"] .tgy-mobile-nav-sheet {
    flex: 1 0 auto;
    gap: 16px;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-nav-sheet > .tgy-mobile-nav-header {
    display: none;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-nav-backdrop:not([hidden]) {
    position: fixed;
    inset: 0;
    display: block;
    background: rgba(17, 42, 56, .48);
    z-index: calc(var(--tgy-z-modal) - 1);
  }
  .tgy-mobile-ui-v2 .tgy-mobile-nav-close {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .tgy-mobile-ui-v2 .tgy-nav > a {
    min-height: 48px;
    width: 100%;
    justify-content: flex-start;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-panel[data-presentation="navigation"] .tgy-nav > a {
    flex-shrink: 0;
    max-width: none;
    height: auto;
    justify-content: flex-end;
    margin-left: 0;
    gap: 4px;
    padding: 8px;
    text-align: right;
    white-space: normal;
  }
  .tgy-mobile-panel[data-presentation="navigation"] .tgy-cart-label,
  .tgy-mobile-panel[data-presentation="navigation"] .tgy-account-label {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-panel[data-presentation="navigation"] .tgy-nav > :is(.tgy-cart-button, .tgy-account-button) {
    position: relative;
    height: 52px;
    min-height: 52px;
    justify-content: center;
    gap: 0;
    padding: 0;
    border-color: var(--tgy-border);
    border-radius: 12px;
    background: var(--tgy-surface-mint);
    color: var(--tgy-brand-dark);
  }
  .tgy-mobile-panel[data-presentation="navigation"] .tgy-cart-button {
    margin-top: auto;
  }
  .tgy-mobile-panel[data-presentation="navigation"] .tgy-nav-link::after {
    right: 0;
    left: auto;
  }
  .tgy-mobile-panel[data-presentation="navigation"] .tgy-cart-icon,
  .tgy-mobile-panel[data-presentation="navigation"] .tgy-account-icon {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 0;
    background: transparent;
    color: currentColor;
    font-size: 26px;
    line-height: 1;
  }
  .tgy-mobile-panel[data-presentation="navigation"] .tgy-cart-count {
    top: 5px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
  }
  .tgy-mobile-ui-v2 .tgy-container {
    width: auto;
    margin-right: 12px;
    margin-left: 12px;
  }
  .tgy-mobile-ui-v2 .tgy-band {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-back {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    min-height: 44px;
    padding: 0;
    background: var(--tgy-canvas);
    border: 0;
    font-size: 16px;
    font-weight: 700;
  }
  .tgy-mobile-back > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    flex-shrink: 0;
    color: var(--tgy-brand);
  }
  .tgy-mobile-back > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tgy-mobile-ui-v2 .tgy-site-header .tgy-mobile-account-settings {
    flex: 0 0 44px;
    width: 44px;
    padding: 0;
    border: 0;
    font-size: 0;
  }
  .tgy-mobile-ui-v2 .tgy-site-header .tgy-mobile-account-settings .dashicons {
    font-size: 20px;
  }
  .tgy-mobile-ui-v2 .tgy-page-intro h1 {
    font-size: 24px;
    line-height: 1.2;
  }
  .tgy-mobile-ui-v2 :is(input:not([type="checkbox"]):not([type="radio"]), select, textarea) {
    font-size: 16px;
  }
  .tgy-mobile-ui-v2 .tgy-page-intro {
    margin-bottom: 12px;
  }
  .tgy-mobile-ui-v2 .tgy-site-footer {
    padding: 0;
    margin-top: 12px;
  }
  .tgy-mobile-ui-v2 .tgy-site-footer > .tgy-footer-inner:first-child {
    display: none;
  }
  .tgy-mobile-ui-v2 :is(.tgy-mobile-footer-help, .tgy-mobile-footer-services) {
    display: block;
    width: calc(100% - 24px);
    margin-inline: auto;
  }
  .tgy-mobile-ui-v2 :is(.tgy-mobile-footer-help, .tgy-mobile-footer-services, .tgy-home-values)[hidden],
  .tgy-mobile-ui-v2 .tgy-mobile-footer-services-content[hidden] {
    display: none !important;
  }
  .tgy-mobile-ui-v2 :is(.tgy-mobile-footer-help summary, .tgy-mobile-footer-services-toggle) {
    --tgy-touch-target: 60px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 16px;
    align-content: center;
    gap: 2px 12px;
    min-height: 60px;
    padding-block: 8px;
    cursor: pointer;
    list-style: none;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-footer-help summary::-webkit-details-marker {
    display: none;
  }
  .tgy-mobile-ui-v2 :is(.tgy-mobile-footer-help summary, .tgy-mobile-footer-services-toggle):focus-visible {
    outline: 2px solid currentcolor;
    outline-offset: -2px;
  }
  .tgy-mobile-ui-v2 :is(.tgy-mobile-footer-help summary, .tgy-mobile-footer-services-toggle)::after {
    content: "";
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentcolor;
    border-bottom: 2px solid currentcolor;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-footer-help summary::after {
    transform: rotate(45deg);
  }
  .tgy-mobile-ui-v2 .tgy-mobile-footer-help[open] summary::after {
    transform: rotate(225deg);
  }
  .tgy-mobile-ui-v2 .tgy-mobile-footer-services-toggle {
    width: 100%;
    box-sizing: border-box;
    border: 0;
    background: transparent;
    padding-inline: 0;
    color: inherit;
    font: inherit;
    text-align: start;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-footer-services-toggle::after {
    transform: rotate(225deg);
    transition: transform 240ms ease;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-footer-services-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
  }
  .tgy-mobile-ui-v2 .tgy-mobile-footer-services-content {
    min-height: 0;
    max-height: var(--tgy-footer-content-limit, calc(100dvh - 180px));
    overflow-y: auto;
    overscroll-behavior: contain;
    scroll-padding-block: 8px;
  }
  .tgy-mobile-ui-v2 .tgy-mobile-footer-services-content .tgy-home-information {
    padding-top: 8px;
    padding-bottom: 4px;
  }
  /* Shared footer content also appears on routes without catalog styles. */
  body.tgy-mobile-ui-v2 .tgy-home-information {
    padding-bottom: 8px;
  }
  body.tgy-mobile-ui-v2 .tgy-home-information .tgy-home-value-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    padding-block: 4px 12px;
  }
  body.tgy-mobile-ui-v2 .tgy-home-information .tgy-home-value-grid article {
    display: grid;
    min-width: 0;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    padding: 0;
    border: 0;
    gap: 6px;
  }
  /* Compact service labels on mobile; desktop homepage explanations remain. */
  body.tgy-mobile-ui-v2 .tgy-home-information .tgy-home-value-grid p {
    display: none;
  }
  body.tgy-mobile-ui-v2 .tgy-home-information .tgy-home-value-grid h2 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    overflow-wrap: anywhere;
  }
  body.tgy-mobile-ui-v2 .tgy-home-information .tgy-home-value-grid .dashicons {
    width: 18px;
    height: 18px;
    font-size: 18px;
    line-height: 1;
  }
  body.tgy-mobile-ui-v2 .tgy-home-information .tgy-home-value-grid :is(h2, .dashicons) {
    color: var(--tgy-on-brand);
  }
  body.tgy-mobile-ui-v2 .tgy-mobile-home-help {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 10px;
    font-size: 12px;
    line-height: 1.5;
  }
  body.tgy-mobile-ui-v2 .tgy-mobile-home-help dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
  }
  body.tgy-mobile-ui-v2 .tgy-mobile-home-help dl > div {
    display: grid;
    align-content: start;
    gap: 2px;
    overflow-wrap: anywhere;
  }
  body.tgy-mobile-ui-v2 .tgy-mobile-home-help dt {
    color: var(--tgy-on-dark-muted);
  }
  body.tgy-mobile-ui-v2 .tgy-mobile-home-help dd {
    margin: 0;
    font-weight: 600;
  }
  body.tgy-mobile-ui-v2 .tgy-mobile-home-help-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
  }
  body.tgy-mobile-ui-v2 .tgy-mobile-home-help a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: #e8c16d;
    font-size: 12px;
    line-height: 18px;
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .tgy-mobile-footer-title {
    grid-column: 1;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
  }
  .tgy-mobile-footer-copyright {
    grid-column: 1;
    color: #9fb4bb;
    font-size: 11px;
    line-height: 14px;
  }
  .tgy-mobile-ui-v2 :is(.tgy-mobile-footer-help nav, .tgy-mobile-footer-services-content > nav) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-block: 4px;
  }
  .tgy-mobile-ui-v2 :is(.tgy-mobile-footer-help, .tgy-mobile-footer-services) a {
    display: flex;
    min-height: 32px;
    align-items: center;
    padding-block: 4px;
    font-size: 12px;
    line-height: 18px;
    overflow-wrap: anywhere;
  }
  .tgy-mobile-ui-v2 .tgy-footer-legal {
    display: none;
  }
  .tgy-mobile-bottom-nav:not([hidden]) {
    position: fixed;
    inset: auto 0 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: calc(52px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--tgy-border);
    padding: 3px 8px calc(4px + env(safe-area-inset-bottom));
    background: var(--tgy-canvas);
  }
  .tgy-mobile-bottom-nav > a {
    position: relative;
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    color: var(--tgy-text-soft);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
  }
  .tgy-mobile-bottom-nav > a[aria-current="page"] {
    color: var(--tgy-brand);
    background: var(--tgy-surface-mint);
    border-radius: 8px;
  }
  .tgy-mobile-bottom-nav > a > .dashicons {
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
  }
  /* Compensate for glyph whitespace so all five icons appear about 22px tall. */
  .tgy-mobile-bottom-nav > a > .dashicons-admin-home {
    font-size: 28px;
  }
  .tgy-mobile-bottom-nav > a > .dashicons-store {
    font-size: 23px;
  }
  .tgy-mobile-bottom-nav > a > :is(.dashicons-whatsapp, .dashicons-admin-users) {
    font-size: 27px;
  }
  .tgy-mobile-bottom-nav > .tgy-mobile-bottom-support > .dashicons {
    color: var(--tgy-brand);
  }
  .tgy-mobile-cart-count {
    position: absolute;
    top: 0;
    left: calc(50% + 8px);
    min-width: 18px;
    border-radius: 12px;
    background: var(--tgy-price-accent);
    color: var(--tgy-on-brand);
    padding: 2px 4px;
    font-size: 14px;
    line-height: 1.2;
  }
  .tgy-mobile-ui-v2 .tgy-floating-support {
    display: none;
  }
  .tgy-mobile-ui-v2.tgy-mobile-keyboard-open .tgy-mobile-bottom-nav,
  .tgy-mobile-ui-v2.tgy-mobile-panel-open [data-tgy-mobile-bottom] {
    visibility: hidden;
    pointer-events: none;
  }
  .tgy-mobile-ui-v2.tgy-mobile-keyboard-open [data-tgy-mobile-bottom]:not(.tgy-mobile-bottom-nav) {
    bottom: var(--tgy-mobile-keyboard-inset, 0px);
  }
  .tgy-mobile-ui-v2 :is(.tgy-policy-heading h1, .tgy-privacy-policy__head h1) {
    font-size: 24px;
    line-height: 1.2;
  }
  .tgy-mobile-secondary :is(.tgy-policy-heading h1, .tgy-privacy-policy__head h1, .tgy-contact-hero .tgy-page-intro h1) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .tgy-mobile-ui-v2 :is(.tgy-policy-heading > span, .tgy-policy-heading > p, .tgy-policy-tabs > span, .tgy-policy-summary-card header b, .tgy-privacy-policy__head > p:first-child, .tgy-contact-hero .tgy-page-intro__eyebrow) {
    display: none;
  }
  .tgy-mobile-ui-v2 .tgy-policy-page :is(.tgy-policy-hero, .tgy-policy-heading) {
    padding: 0;
    margin: 0;
    gap: 0;
  }
  .tgy-mobile-ui-v2 .tgy-policy-page .tgy-policy-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .tgy-mobile-ui-v2 .tgy-policy-page .tgy-policy-summary {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
  }
  .tgy-mobile-ui-v2 .tgy-policy-page .tgy-policy-summary-card {
    padding: 12px;
    border: 0;
    border-bottom: 1px solid var(--tgy-border);
  }
  .tgy-mobile-ui-v2 .tgy-policy-summary-card header { margin-bottom: 4px; }
  .tgy-mobile-ui-v2 .tgy-policy-page .tgy-policy-summary-card h2 { font-size: 18px; }
  .tgy-mobile-ui-v2 .tgy-policy-page .tgy-policy-summary-card p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.45;
  }
  .tgy-mobile-ui-v2 .tgy-policy-page :is(.tgy-policy-order-rule > header, .tgy-policy-order-steps li, .tgy-policy-rule-detail, .tgy-policy-rights-notice, .tgy-policy-contact) {
    padding: 12px;
    gap: 8px;
  }
  .tgy-mobile-ui-v2 .tgy-policy-page :is(.tgy-policy-order-rule, .tgy-policy-rights-notice, .tgy-policy-detail-heading, .tgy-policy-group) {
    margin-bottom: 12px;
    gap: 12px;
  }
  .tgy-mobile-ui-v2 .tgy-policy-page .tgy-policy-question { padding: 12px; }
  .tgy-mobile-ui-v2 .tgy-privacy-policy { gap: 12px; }
  .tgy-mobile-ui-v2 .tgy-privacy-policy__head { gap: 0; }
  .tgy-mobile-ui-v2 .tgy-privacy-policy__sections section {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
  }
  .tgy-mobile-ui-v2 .tgy-privacy-policy__sections p { line-height: 1.5; }
  .tgy-mobile-ui-v2 .tgy-contact-hero .tgy-page-intro { margin-bottom: 12px; }
  .tgy-mobile-ui-v2 .tgy-contact-hero .tgy-page-intro p { margin: 0; line-height: 1.5; }
  .tgy-mobile-ui-v2 .tgy-contact-methods { grid-template-columns: 1fr; }
  .tgy-mobile-ui-v2 .tgy-contact-method {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 8px;
    padding: 12px 0;
    border-right: 0;
  }
  .tgy-mobile-ui-v2 .tgy-contact-method > span {
    grid-column: 1;
    margin-bottom: 4px;
    font-size: 14px;
  }
  .tgy-mobile-ui-v2 .tgy-contact-method h2 { grid-column: 1; margin: 0; font-size: 16px; }
  .tgy-mobile-ui-v2 .tgy-contact-method a {
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: 48vw;
    font-size: 14px;
  }
  .tgy-mobile-ui-v2 :is(.tgy-contact-story, .tgy-contact-story > .tgy-container) {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .tgy-mobile-ui-v2 .tgy-contact-story h2 { font-size: 20px; }
  .tgy-mobile-ui-v2 .tgy-map-layout { gap: 12px; }
  .tgy-mobile-ui-v2 .tgy-map-copy h2 { font-size: 22px; }
  .tgy-mobile-ui-v2 .tgy-map-frame { min-height: 220px; }
}
@media (max-width: 359px) {
  .tgy-mobile-ui-v2 .tgy-container,
  .tgy-mobile-ui-v2 .tgy-site-header > .tgy-header-inner {
    margin-right: 12px;
    margin-left: 12px;
  }
  .tgy-mobile-ui-v2 .tgy-brand-logo {
    width: 116px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tgy-mobile-ui-v2 .tgy-mobile-footer-services-toggle::after {
    transition: none;
  }
}
