/* Appily Fifty — masthead, utility, footer, mobile nav */

.a50-utility {
  background: var(--a50-slate);
  color: rgba(255, 255, 255, 0.88);
  font-size: .78rem;
}
.a50-utility-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 38px;
}
.a50-utility-loc,
.a50-utility-hours,
.a50-utility-phone { margin: 0; }
.a50-utility-hours { text-align: center; opacity: .9; }
.a50-utility-phone {
  justify-self: end;
  font-weight: 600;
  letter-spacing: .02em;
}
.a50-utility-phone:hover { color: var(--a50-chartreuse); }

.a50-masthead {
  background: var(--a50-paper);
  border-bottom: 1px solid var(--a50-border);
  position: sticky;
  top: 0;
  z-index: 40;
}
.a50-masthead-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0 .85rem;
  position: relative;
}
.a50-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .15rem;
}
.a50-brand-est {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--a50-muted);
}
.a50-brand-name {
  font-family: var(--a50-font-serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--a50-ink);
}
.a50-brand-tag {
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--a50-leaf);
  font-weight: 600;
}
.a50-tool-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--a50-ink);
  text-decoration: none;
}
.a50-tool-account { justify-self: start; }
.a50-tool-cart { justify-self: end; }

/* Member vault keychip — CSS-only account mark */
.a50-acct-key {
  --acct-size: 34px;
  position: relative;
  width: var(--acct-size);
  height: var(--acct-size);
  flex: 0 0 var(--acct-size);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.a50-acct-key--lg {
  --acct-size: 48px;
}
.a50-acct-key-ring {
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 210deg, var(--a50-chartreuse) 0 28%, transparent 28% 100%),
    var(--a50-ink);
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.25s ease;
}
.a50-acct-key-ring::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--a50-paper, #FFFEF9);
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
}
.a50-acct-key-face {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 58%;
  display: grid;
  place-items: center;
  font-family: var(--a50-font-serif, Georgia, serif);
  font-size: calc(var(--acct-size) * 0.34);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--a50-ink);
  background: transparent;
}
/* Guest silhouette when no initial */
.a50-tool-account:not(.is-member) .a50-acct-key-face::before,
.a50-mobile-user-card:not(.is-member) .a50-acct-key-face::before {
  content: '';
  width: 38%;
  height: 38%;
  border: 1.5px solid var(--a50-ink);
  border-radius: 50%;
  margin-bottom: 1px;
}
.a50-tool-account:not(.is-member) .a50-acct-key-face::after,
.a50-mobile-user-card:not(.is-member) .a50-acct-key-face::after {
  content: '';
  width: 62%;
  height: 28%;
  border: 1.5px solid var(--a50-ink);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  margin-top: 1px;
}
.a50-tool-account:not(.is-member) .a50-acct-key-face,
.a50-mobile-user-card:not(.is-member) .a50-acct-key-face {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.a50-acct-key-dot {
  position: absolute;
  right: 1px;
  bottom: 2px;
  z-index: 2;
  width: 8px;
  height: 8px;
  background: var(--a50-clay, #A65D3F);
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  box-shadow: 0 0 0 2px var(--a50-paper, #FFFEF9);
  transition: background 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.a50-tool-account.is-member .a50-acct-key-dot,
.a50-mobile-user-card.is-member .a50-acct-key-dot {
  background: var(--a50-chartreuse);
}
.a50-tool-account.is-verified .a50-acct-key-dot,
.a50-mobile-user-card.is-verified .a50-acct-key-dot {
  background: #5F9A4E;
  animation: a50AcctPulse 2s ease-out infinite;
}
@keyframes a50AcctPulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--a50-paper, #FFFEF9); }
  50% { box-shadow: 0 0 0 2px var(--a50-paper, #FFFEF9), 0 0 0 5px rgba(95, 154, 78, 0.25); }
}
@media (prefers-reduced-motion: reduce) {
  .a50-tool-account.is-verified .a50-acct-key-dot,
  .a50-mobile-user-card.is-verified .a50-acct-key-dot {
    animation: none;
  }
  .a50-tool-account:hover .a50-acct-key-ring {
    transform: none;
  }
}
.a50-tool-account-copy {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.15;
  min-width: 0;
}
.a50-tool-account-copy em {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--a50-clay, #A65D3F);
}
.a50-tool-account.is-member .a50-tool-account-copy em {
  color: var(--a50-leaf, #3d5c3a);
}
.a50-tool-account-copy > span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 9ch;
}
.a50-tool-account:hover .a50-acct-key-ring {
  transform: translateY(-2px) rotate(-3deg);
  background:
    conic-gradient(from 210deg, var(--a50-chartreuse) 0 55%, transparent 55% 100%),
    var(--a50-ink);
}
.a50-tool-account:hover .a50-acct-key-dot {
  transform: translateY(-1px) scale(1.1);
}
.a50-tool-account.is-member .a50-acct-key-ring {
  background:
    conic-gradient(from 180deg, var(--a50-chartreuse) 0 70%, transparent 70% 100%),
    var(--a50-ink);
}

.a50-tool-ico {
  width: 18px;
  height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.a50-tool-ico::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 55%;
  width: 8px;
  height: 5px;
  border: 1.5px solid currentColor;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  transform: translate(-50%, -50%);
}
.a50-tool-ico--bag {
  border-radius: 2px 2px 3px 3px;
  border-top-width: 0;
}
.a50-tool-ico--bag::before {
  content: '';
  position: absolute;
  left: 2px; right: 2px; top: -5px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}
.a50-tool-ico--bag::after { display: none; }
.a50-cart-count {
  min-width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--a50-chartreuse);
  color: var(--a50-ink);
  border-radius: 2px;
  font-size: .68rem;
  font-weight: 800;
  font-style: normal;
}

.a50-nav-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--a50-border), transparent);
}
.a50-primary-nav { padding: .65rem 0; }
.a50-primary-nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem 1.5rem;
}
.a50-primary-link {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--a50-ink);
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
}
.a50-primary-link:hover,
.a50-primary-link.is-active {
  border-bottom-color: var(--a50-chartreuse);
}

.a50-search-rail {
  display: flex;
  gap: 0;
  padding: 0 0 .9rem;
  max-width: 520px;
}
.a50-search-rail input {
  flex: 1;
  border: 1px solid var(--a50-border);
  border-right: 0;
  padding: .65rem .9rem;
  font: inherit;
  background: var(--a50-white);
}
.a50-search-rail button {
  border: 1px solid var(--a50-ink);
  background: var(--a50-ink);
  color: var(--a50-white);
  padding: .65rem 1.1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .72rem;
  cursor: pointer;
}
.a50-search-rail button:hover { background: var(--a50-slate); }

.a50-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--a50-border);
  background: var(--a50-white);
  justify-self: end;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.a50-menu-toggle:hover {
  border-color: rgba(17, 26, 23, 0.28);
  box-shadow: 0 6px 16px rgba(17, 26, 23, 0.08);
}
.a50-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--a50-ink);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.2s ease;
  transform-origin: center;
}
.a50-menu-toggle.is-open {
  background: var(--a50-mist);
  border-color: rgba(166, 93, 63, 0.35);
}
.a50-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.a50-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}
.a50-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
body.a50-nav-open {
  overflow: hidden;
  touch-action: none;
}

/* Partners + footer */
.a50-partners {
  padding: 3rem 0 2rem;
  background: var(--a50-white);
  text-align: center;
  border-top: 1px solid var(--a50-border);
}
.a50-partners h2 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}
.a50-partner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  color: #9AA39C;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.a50-footer-scape {
  height: 72px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(36, 48, 56, 0.06) 100%),
    radial-gradient(ellipse 40% 80% at 20% 100%, #8FA896 0%, transparent 70%),
    radial-gradient(ellipse 35% 70% at 55% 100%, #A8B89A 0%, transparent 70%),
    radial-gradient(ellipse 30% 60% at 80% 100%, #7D9478 0%, transparent 70%),
    var(--a50-mist);
}

.a50-footer {
  background: #F3F5F2;
  color: var(--a50-ink);
  padding: 3rem 0 1.25rem;
}
.a50-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
}
.a50-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  margin-bottom: 1rem;
}
.a50-footer-brand .a50-brand-name,
.a50-footer-brand strong {
  font-family: var(--a50-font-serif);
  font-size: 1.55rem;
}
.a50-footer-about p,
.a50-footer-newsletter p,
.a50-footer-touch {
  color: var(--a50-muted);
  font-size: .92rem;
}
.a50-footer-more {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--a50-ink);
}
.a50-footer-more:hover { color: var(--a50-leaf); }
.a50-footer-col h3 {
  font-size: 1.15rem;
  margin-bottom: .85rem;
}
.a50-footer-col a {
  display: block;
  color: var(--a50-muted);
  font-size: .92rem;
  margin-bottom: .45rem;
}
.a50-footer-col a:hover { color: var(--a50-ink); }
.a50-pay-head {
  margin-top: 1.25rem;
  font-size: .95rem;
}
.a50-pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .5rem;
}
.a50-pay-icons span {
  border: 1px solid var(--a50-border);
  background: var(--a50-white);
  padding: .3rem .55rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.a50-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-top: .75rem;
}
.a50-newsletter-form input {
  border: 1px solid var(--a50-border);
  padding: .75rem .9rem;
  font: inherit;
  background: var(--a50-white);
}
.a50-newsletter-form button {
  border: 0;
  background: var(--a50-chartreuse);
  color: var(--a50-ink);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .8rem 1rem;
  cursor: pointer;
}
.a50-newsletter-form button:hover {
  background: var(--a50-chartreuse-deep);
  color: var(--a50-white);
}
.a50-footer-cats {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  justify-content: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--a50-border);
  border-bottom: 1px solid var(--a50-border);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--a50-muted);
}
.a50-footer-cats a:hover { color: var(--a50-ink); }
.a50-footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0 0;
  font-size: .8rem;
  color: var(--a50-muted);
}

/* Mobile nav panel — Fieldcrest drawer */
.a50-mobile-nav[hidden] { display: none !important; }
.a50-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}
.a50-mobile-nav.is-open { pointer-events: auto; }
.a50-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 26, 23, 0.52);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.a50-mobile-nav.is-open .a50-mobile-backdrop { opacity: 1; }
.a50-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(392px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: calc(1rem + env(safe-area-inset-top, 0px)) 1.1rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(120% 60% at 100% 0%, rgba(197, 217, 61, 0.18), transparent 55%),
    linear-gradient(180deg, #f7f4ec 0%, var(--a50-paper) 38%, #f3efe6 100%);
  box-shadow: -18px 0 48px rgba(17, 26, 23, 0.18);
  border-left: 1px solid rgba(17, 26, 23, 0.08);
  transform: translateX(104%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.a50-mobile-nav.is-open .a50-mobile-panel { transform: translateX(0); }
.a50-mobile-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(17, 26, 23, 0.08);
}
.a50-mobile-kicker {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--a50-muted);
  margin-bottom: 0.2rem;
}
.a50-mobile-brand strong {
  display: block;
  font-family: var(--a50-font-serif);
  font-size: 1.45rem;
  line-height: 1.15;
  color: var(--a50-ink);
}
.a50-mobile-tag {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--a50-leaf);
}
.a50-mobile-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--a50-border);
  background: var(--a50-white);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.a50-mobile-close:hover {
  background: var(--a50-mist);
  border-color: rgba(17, 26, 23, 0.22);
}
.a50-mobile-close span,
.a50-mobile-close span::before {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 2px;
  background: var(--a50-ink);
  border-radius: 2px;
}
.a50-mobile-close span { transform: rotate(45deg); }
.a50-mobile-close span::before {
  content: '';
  transform: rotate(90deg);
}

.a50-mobile-search {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(17, 26, 23, 0.12);
  background: var(--a50-white);
  box-shadow: 0 8px 20px rgba(17, 26, 23, 0.04);
}
.a50-mobile-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0.78rem 0.9rem;
  font: inherit;
  font-size: 16px;
  background: transparent;
  color: var(--a50-ink);
}
.a50-mobile-search input::placeholder { color: var(--a50-muted); }
.a50-mobile-search button {
  border: 0;
  border-left: 1px solid rgba(17, 26, 23, 0.1);
  background: var(--a50-ink);
  color: var(--a50-white);
  padding: 0 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  cursor: pointer;
}

.a50-mobile-user { margin-bottom: 1.15rem; }
.a50-mobile-user-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 26, 23, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(115deg, rgba(197, 217, 61, 0.16), transparent 58%),
    var(--a50-white);
  box-shadow: 0 10px 24px rgba(17, 26, 23, 0.05);
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.28s ease;
}
.a50-mobile-user-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 26, 23, 0.1);
}
.a50-mobile-user-card.is-member {
  border-color: rgba(17, 26, 23, 0.18);
}
.a50-mobile-user-card.is-verified {
  box-shadow:
    inset 3px 0 0 var(--a50-chartreuse),
    0 10px 24px rgba(17, 26, 23, 0.05);
}
.a50-mobile-user-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.a50-mobile-user-copy strong {
  font-size: 0.98rem;
  color: var(--a50-ink);
}
.a50-mobile-user-copy small {
  font-size: 0.74rem;
  color: var(--a50-muted);
  line-height: 1.35;
}
.a50-mobile-user-go {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(17, 26, 23, 0.12);
  background: var(--a50-mist);
  position: relative;
}
.a50-mobile-user-go::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--a50-ink);
  border-top: 2px solid var(--a50-ink);
  transform: translate(-60%, -50%) rotate(45deg);
}

.a50-mobile-section-label {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--a50-muted);
  margin: 0 0 0.7rem;
  font-weight: 700;
}
.a50-mobile-links { margin-bottom: 1.2rem; }
.a50-mobile-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.a50-mobile-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  min-height: 52px;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(17, 26, 23, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 14px rgba(17, 26, 23, 0.03);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.24s cubic-bezier(0.34, 1.35, 0.64, 1),
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  opacity: 0;
  transform: translateX(16px);
}
.a50-mobile-nav.is-open .a50-mobile-link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(0.05s + (var(--nav-i, 0) * 0.035s));
}
.a50-mobile-link:hover,
.a50-mobile-link:focus-visible {
  border-color: rgba(166, 93, 63, 0.35);
  background: #fff;
  box-shadow: 0 10px 22px rgba(17, 26, 23, 0.08);
  transform: translateX(2px);
}
.a50-mobile-link.is-active {
  border-color: rgba(197, 217, 61, 0.85);
  background:
    linear-gradient(90deg, rgba(197, 217, 61, 0.22), rgba(255, 255, 255, 0.92) 42%),
    #fff;
  box-shadow: inset 3px 0 0 var(--a50-chartreuse);
}
.a50-mobile-link-num {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--a50-mist);
  color: var(--a50-slate);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.a50-mobile-link.is-active .a50-mobile-link-num {
  background: var(--a50-chartreuse);
  color: var(--a50-ink);
}
.a50-mobile-link-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.a50-mobile-link-copy strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--a50-ink);
}
.a50-mobile-link-copy small {
  font-size: 0.68rem;
  color: var(--a50-clay, #A65D3F);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.a50-mobile-link-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(17, 26, 23, 0.35);
  border-top: 2px solid rgba(17, 26, 23, 0.35);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.a50-mobile-link:hover .a50-mobile-link-arrow {
  transform: translateX(2px) rotate(45deg);
  border-color: var(--a50-clay, #A65D3F);
}

.a50-mobile-cats { margin-bottom: 1.15rem; }
.a50-mobile-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.a50-mobile-cat-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  min-height: 44px;
  border: 1px solid rgba(17, 26, 23, 0.1);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--a50-ink);
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.2s ease, background 0.2s ease;
  opacity: 0;
  transform: translateY(8px);
}
.a50-mobile-nav.is-open .a50-mobile-cat-chip {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.18s + (var(--cat-i, 0) * 0.03s));
}
.a50-mobile-cat-chip:hover {
  border-color: rgba(166, 93, 63, 0.4);
  background: #fff;
  transform: translateY(-1px);
}
.a50-mobile-cat-chip.is-hot {
  border-color: rgba(196, 92, 62, 0.35);
  background: linear-gradient(90deg, rgba(196, 92, 62, 0.08), #fff 50%);
}
.a50-mobile-cat-hot {
  color: var(--a50-hot, #c45c3e);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.a50-mobile-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.25rem;
}
.a50-mobile-quick-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  min-height: 68px;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.a50-mobile-quick-btn strong {
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}
.a50-mobile-quick-btn small {
  display: block;
  opacity: 0.78;
  margin-top: 0.1rem;
  font-size: 0.72rem;
}
.a50-mobile-quick-btn--account {
  background: var(--a50-white);
  color: var(--a50-ink);
  border: 1px solid rgba(17, 26, 23, 0.14);
  box-shadow: 0 8px 18px rgba(17, 26, 23, 0.05);
}
.a50-mobile-quick-btn--cart {
  background: var(--a50-ink);
  color: var(--a50-white);
  border: 1px solid var(--a50-ink);
  box-shadow: 0 10px 22px rgba(17, 26, 23, 0.18);
}
.a50-mobile-quick-btn:hover {
  transform: translateY(-2px);
}
.a50-mobile-quick-btn--cart:hover {
  box-shadow: 0 14px 28px rgba(17, 26, 23, 0.24);
}

@media (max-width: 380px) {
  .a50-mobile-quick { grid-template-columns: 1fr; }
  .a50-mobile-cat-grid { grid-template-columns: 1fr 1fr; }
}

/* Hide wishlist / social chrome if injected by legacy templates or third-party scripts */
.a50-wishlist,
.a50-wish-btn,
[class*="wishlist"],
[class*="wish-list"],
.a50-social,
.a50-footer-social,
.footer-social,
.social-links,
.social-icons,
.social-media,
a[href*="facebook.com"],
a[href*="instagram.com"],
a[href*="twitter.com"],
a[href*="x.com"],
a[href*="linkedin.com"],
a[href*="youtube.com"] {
  display: none !important;
}

@media (max-width: 900px) {
  .a50-utility-inner { grid-template-columns: 1fr; text-align: center; padding: .45rem 0; gap: .2rem; }
  .a50-utility-phone { justify-self: center; }
  .a50-utility-hours { display: none; }
  .a50-masthead-row { grid-template-columns: 1fr auto; }
  .a50-tool-link { display: none; }
  .a50-menu-toggle { display: inline-flex; }
  .a50-primary-nav { display: none; }
  .a50-search-rail { max-width: none; }
  .a50-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .a50-footer-grid { grid-template-columns: 1fr; }
}
