/* Appily Fortyfive — Freshgo-inspired chrome (unique layout) */
.a45-topbar { background: var(--a45-nav); color: var(--a45-white); font-size: .78rem; }
.a45-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .5rem 0; flex-wrap: wrap; }
.a45-topbar-msg { margin: 0; font-weight: 600; }
.a45-topbar-phone { color: var(--a45-leaf); font-weight: 700; }

.a45-header { background: var(--a45-white); border-bottom: 2px solid var(--a45-promo); position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(27,58,26,.06); }
.a45-header-main {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem;
  padding: .85rem 0;
}
.a45-brand { display: flex; align-items: center; gap: .65rem; min-width: 0; }
.a45-brand-icon { font-size: 1.75rem; line-height: 1; }
.a45-brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.a45-brand-copy strong { font-family: var(--a45-font-serif); font-size: 1.15rem; color: var(--a45-primary); }
.a45-brand-copy small { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--a45-muted); }

.a45-cat-nav { display: flex; align-items: center; justify-content: center; gap: .15rem; flex-wrap: wrap; }
.a45-cat-link {
  position: relative; padding: .45rem .7rem; font-size: .72rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--a45-ink);
  border-radius: 8px; transition: .2s;
}
.a45-cat-link:hover { background: var(--a45-promo); color: var(--a45-primary); }
.a45-hot-tag {
  position: absolute; top: -2px; right: 2px; background: #E53935; color: #fff;
  font-size: .52rem; font-weight: 800; padding: .1rem .28rem; border-radius: 4px; line-height: 1;
}

.a45-header-actions { display: flex; align-items: center; gap: .75rem; justify-self: end; }
.a45-search-compact {
  display: flex; align-items: center; background: var(--a45-cream); border: 1px solid var(--a45-border);
  border-radius: var(--a45-radius-pill); overflow: hidden;
}
.a45-search-compact input { border: none; background: transparent; padding: .5rem .75rem; width: 110px; font: inherit; font-size: .82rem; outline: none; }
.a45-search-compact button { border: none; background: transparent; padding: .45rem .65rem; cursor: pointer; }

/* Account passport chip */
.a45-account-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.28rem 0.65rem 0.28rem 0.28rem;
  border-radius: var(--a45-radius-pill);
  border: 1px solid transparent;
  color: var(--a45-ink);
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.a45-account-chip:hover {
  background: var(--a45-cream);
  border-color: var(--a45-border);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(27, 58, 26, 0.1);
}
.a45-account-chip:focus-visible {
  outline: 2px solid var(--a45-primary);
  outline-offset: 2px;
}

.a45-account-medallion {
  position: relative;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff 0%, var(--a45-cream) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(46, 125, 50, 0.14),
    0 4px 14px rgba(27, 58, 26, 0.12);
  overflow: visible;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.a45-account-chip:hover .a45-account-medallion {
  transform: scale(1.04);
  box-shadow:
    inset 0 0 0 1px rgba(46, 125, 50, 0.22),
    0 8px 20px rgba(27, 58, 26, 0.16);
}

.a45-account-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    var(--a45-primary),
    var(--a45-leaf),
    var(--a45-secondary),
    var(--a45-accent),
    var(--a45-primary)
  );
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.3s ease;
  animation: a45AccountRingSpin 5s linear infinite paused;
  z-index: 0;
}
.a45-account-ring::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff 0%, var(--a45-cream) 100%);
}
.a45-account-chip:hover .a45-account-ring {
  opacity: 1;
  animation-play-state: running;
}
@keyframes a45AccountRingSpin {
  to { transform: rotate(360deg); }
}

.a45-account-silhouette {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18px;
}
.a45-account-head {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--a45-primary), var(--a45-nav));
}
.a45-account-shoulders {
  display: block;
  width: 16px;
  height: 8px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, var(--a45-primary), var(--a45-nav));
}

.a45-account-initial {
  position: relative;
  z-index: 1;
  font-family: var(--a45-font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  color: var(--a45-primary);
  text-transform: uppercase;
}
.a45-account-chip.is-member .a45-account-medallion {
  background: linear-gradient(145deg, rgba(129, 199, 132, 0.35) 0%, rgba(220, 237, 200, 0.85) 100%);
}
.a45-account-chip.is-member .a45-account-ring::after {
  background: linear-gradient(145deg, rgba(241, 248, 233, 0.98) 0%, rgba(220, 237, 200, 0.92) 100%);
}

.a45-account-verified {
  position: absolute;
  right: -1px;
  bottom: -1px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffb74d, var(--a45-secondary));
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(255, 111, 0, 0.25);
}
.a45-account-chip.is-verified .a45-account-verified {
  animation: a45AccountVerifiedPulse 2.4s ease-out infinite;
}
@keyframes a45AccountVerifiedPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(255, 111, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 111, 0, 0); }
}

.a45-account-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  min-width: 0;
}
.a45-account-label {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--a45-ink);
}
.a45-account-meta {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--a45-muted);
  line-height: 1.1;
}
.a45-account-chip.is-verified .a45-account-meta {
  color: var(--a45-secondary);
}
.a45-account-chip.is-member:not(.is-verified) .a45-account-meta {
  color: var(--a45-primary);
}

.a45-cart-pill {
  display: inline-flex; align-items: center; gap: .4rem; padding: .55rem 1rem;
  background: var(--a45-primary); color: var(--a45-white); border-radius: var(--a45-radius-pill);
  font-size: .78rem; font-weight: 800; position: relative;
}
.a45-cart-pill:hover { background: var(--a45-nav); }
.a45-cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px;
  background: var(--a45-secondary); color: #fff; font-style: normal; font-size: .62rem; font-weight: 800;
  border-radius: 50%; display: grid; place-items: center;
}

.a45-subnav { background: var(--a45-cream); border-top: 1px solid var(--a45-border); }
.a45-subnav-inner { display: flex; align-items: center; gap: .25rem; padding: .45rem 0; overflow-x: auto; }
.a45-subnav-link {
  padding: .4rem .85rem; font-size: .82rem; font-weight: 700; color: var(--a45-muted);
  border-radius: var(--a45-radius-pill); white-space: nowrap;
}
.a45-subnav-link.is-active, .a45-subnav-link:hover { background: var(--a45-white); color: var(--a45-primary); box-shadow: 0 2px 8px rgba(27,58,26,.08); }
.a45-subnav-contact { margin-left: auto; font-size: .82rem; font-weight: 800; color: var(--a45-secondary); white-space: nowrap; }

.a45-menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(27, 58, 26, 0.12);
  border-radius: 12px;
  background: var(--a45-cream);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.a45-menu-toggle:hover {
  background: var(--a45-promo);
  border-color: rgba(46, 125, 50, 0.25);
}
.a45-menu-toggle span {
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--a45-ink);
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, top 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.a45-menu-toggle span:nth-child(1) { top: calc(50% - 7px); }
.a45-menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.a45-menu-toggle span:nth-child(3) { top: calc(50% + 5px); }
.a45-menu-toggle.is-open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.a45-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.a45-menu-toggle.is-open span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

body.a45-nav-open { overflow: hidden; }

/* Mobile nav drawer */
.a45-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.a45-mobile-nav[hidden] { display: none; }
.a45-mobile-nav.is-open { pointer-events: auto; }

.a45-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 36, 18, 0.52);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.34s ease;
}
.a45-mobile-nav.is-open .a45-mobile-backdrop { opacity: 1; }

.a45-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(390px, 100vw);
  max-width: 100%;
  height: 100%;
  height: 100dvh;
  background: linear-gradient(180deg, #fff 0%, var(--a45-cream) 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 48px rgba(19, 36, 18, 0.18);
  transform: translateX(104%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.a45-mobile-nav.is-open .a45-mobile-panel { transform: translateX(0); }

.a45-mobile-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1rem;
  background: linear-gradient(135deg, var(--a45-nav) 0%, var(--a45-primary) 100%);
  color: #fff;
  flex-shrink: 0;
}
.a45-mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.a45-mobile-brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.35rem;
  flex-shrink: 0;
}
.a45-mobile-kicker {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.a45-mobile-panel-head strong {
  display: block;
  font-family: var(--a45-font-serif);
  font-size: 1.15rem;
  line-height: 1.15;
  color: #fff;
}
.a45-mobile-tag {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.2rem;
}
.a45-mobile-close {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s ease;
}
.a45-mobile-close:hover { background: rgba(255, 255, 255, 0.22); }
.a45-mobile-close span,
.a45-mobile-close span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  content: '';
}
.a45-mobile-close span { transform: translate(-50%, -50%) rotate(45deg); }
.a45-mobile-close span::before { transform: translate(-50%, -50%) rotate(-90deg); }

.a45-mobile-user {
  padding: 0.85rem 1rem 0;
  flex-shrink: 0;
}
.a45-mobile-user-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(27, 58, 26, 0.1);
  box-shadow: 0 8px 24px rgba(27, 58, 26, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.a45-mobile-user-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(27, 58, 26, 0.12);
}
.a45-mobile-user-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--a45-promo), #fff);
  color: var(--a45-primary);
  font-family: var(--a45-font-serif);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.a45-mobile-user-card.is-member .a45-mobile-user-avatar {
  background: linear-gradient(145deg, rgba(129, 199, 132, 0.45), rgba(220, 237, 200, 0.95));
}
.a45-mobile-user-copy {
  flex: 1;
  min-width: 0;
}
.a45-mobile-user-copy strong {
  display: block;
  font-size: 0.92rem;
  color: var(--a45-ink);
}
.a45-mobile-user-copy small {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.72rem;
  color: var(--a45-muted);
}
.a45-mobile-user-card.is-verified .a45-mobile-user-copy small { color: var(--a45-secondary); }
.a45-mobile-user-arrow {
  color: var(--a45-muted);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.a45-mobile-section-label {
  margin: 0 0 0.65rem;
  padding: 0 0.15rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--a45-muted);
}

.a45-mobile-cats {
  padding: 0.95rem 1rem 0.35rem;
  flex-shrink: 0;
}
.a45-mobile-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.a45-mobile-cat-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.55rem 0.65rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(27, 58, 26, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.a45-mobile-cat-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(27, 58, 26, 0.1);
  border-color: rgba(46, 125, 50, 0.22);
}
.a45-mobile-cat-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 1rem;
  flex-shrink: 0;
}
.a45-mobile-cat-chip--leaf .a45-mobile-cat-icon { background: rgba(129, 199, 132, 0.28); }
.a45-mobile-cat-chip--root .a45-mobile-cat-icon { background: rgba(255, 183, 77, 0.28); }
.a45-mobile-cat-chip--cruc .a45-mobile-cat-icon { background: rgba(174, 213, 129, 0.35); }
.a45-mobile-cat-chip--pepper .a45-mobile-cat-icon { background: rgba(255, 138, 101, 0.24); }
.a45-mobile-cat-chip--gourd .a45-mobile-cat-icon { background: rgba(156, 204, 101, 0.28); }
.a45-mobile-cat-chip--pod .a45-mobile-cat-icon { background: rgba(128, 203, 196, 0.24); }
.a45-mobile-cat-label {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--a45-ink);
}
.a45-mobile-cat-hot {
  position: absolute;
  top: 6px;
  right: 6px;
  padding: 0.12rem 0.35rem;
  border-radius: 999px;
  background: #E53935;
  color: #fff;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.a45-mobile-links {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0.75rem 1rem;
  -webkit-overflow-scrolling: touch;
}
.a45-mobile-link-grid {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.a45-mobile-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 58px;
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(27, 58, 26, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.a45-mobile-link:hover {
  transform: translateX(3px);
  border-color: rgba(46, 125, 50, 0.22);
}
.a45-mobile-link.is-active {
  background: linear-gradient(135deg, rgba(220, 237, 200, 0.65), rgba(241, 248, 233, 0.95));
  border-color: rgba(46, 125, 50, 0.28);
  box-shadow: inset 3px 0 0 var(--a45-primary);
}
.a45-mobile-link-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--a45-promo);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.a45-mobile-link.is-active .a45-mobile-link-icon {
  background: rgba(129, 199, 132, 0.35);
}
.a45-mobile-link-copy strong {
  display: block;
  font-size: 0.88rem;
  color: var(--a45-ink);
}
.a45-mobile-link-copy small {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.72rem;
  color: var(--a45-muted);
}
.a45-mobile-link-chevron {
  color: var(--a45-muted);
  font-size: 1.25rem;
  line-height: 1;
}

.a45-mobile-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(27, 58, 26, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.a45-mobile-quick-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 56px;
  padding: 0.65rem 0.75rem;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.a45-mobile-quick-btn:hover { transform: translateY(-1px); }
.a45-mobile-quick-btn--cart {
  background: linear-gradient(135deg, var(--a45-primary), var(--a45-nav));
  color: #fff;
  box-shadow: 0 8px 22px rgba(46, 125, 50, 0.28);
}
.a45-mobile-quick-btn--shop {
  background: #fff;
  color: var(--a45-ink);
  border: 1px solid rgba(27, 58, 26, 0.12);
}
.a45-mobile-quick-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}
.a45-mobile-quick-copy strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.15;
}
.a45-mobile-quick-copy small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.64rem;
  opacity: 0.88;
  line-height: 1.2;
}
.a45-mobile-quick-btn--shop .a45-mobile-quick-copy small { color: var(--a45-muted); }
.a45-mobile-quick-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--a45-secondary);
  color: #fff;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* Footer */
.a45-footer { position: relative; background: var(--a45-cream); margin-top: 3rem; }
.a45-footer-wave {
  height: 48px; margin-top: -48px;
  background: radial-gradient(ellipse 120% 100% at 50% 100%, var(--a45-cream) 70%, transparent 71%);
}
.a45-footer-main {
  display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 2.5rem;
  padding: 2.5rem 0 2rem;
}
.a45-footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.a45-footer-logo span { font-size: 2rem; }
.a45-footer-logo strong { display: block; font-family: var(--a45-font-serif); font-size: 1.25rem; color: var(--a45-primary); }
.a45-footer-logo small { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--a45-muted); }
.a45-footer-brand p { color: var(--a45-muted); font-size: .92rem; max-width: 38ch; }
.a45-footer-contact-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.a45-footer-contact-list li { font-size: .88rem; color: var(--a45-muted); margin-bottom: .45rem; }
.a45-support-callout {
  display: flex; align-items: center; gap: .85rem; padding: 1rem; margin-top: 1rem;
  background: var(--a45-white); border: 1px solid var(--a45-border); border-radius: var(--a45-radius);
}
.a45-support-callout span { font-size: 1.75rem; }
.a45-support-callout small { display: block; font-size: .72rem; color: var(--a45-muted); }
.a45-support-callout strong { font-size: 1.1rem; color: var(--a45-primary); }

.a45-footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.a45-footer-col h3 { font-family: var(--a45-font-sans); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.a45-footer-col a { display: block; font-size: .88rem; color: var(--a45-muted); margin-bottom: .45rem; }
.a45-footer-col a:hover { color: var(--a45-primary); }
.a45-newsletter-form { display: flex; gap: .5rem; margin: .75rem 0 1rem; }
.a45-newsletter-form input { flex: 1; padding: .65rem .85rem; border: 1px solid var(--a45-border); border-radius: 8px; font: inherit; }
.a45-newsletter-form button { padding: .65rem 1rem; background: var(--a45-primary); color: #fff; border: none; border-radius: 8px; font-weight: 800; cursor: pointer; }
.a45-pay-icons { display: flex; gap: .5rem; flex-wrap: wrap; }
.a45-pay-icons span { font-size: .68rem; font-weight: 800; padding: .25rem .55rem; background: var(--a45-white); border: 1px solid var(--a45-border); border-radius: 6px; }

/* Hide legacy wishlist / social chrome from older Appily templates */
.a45-wishlist,
.a45-wish-btn,
[class*="wishlist"],
[class*="wish-list"],
.a45-social,
.a45-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;
}

.a45-footer-cats {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem; padding: 1rem 0;
  border-top: 1px solid var(--a45-border); border-bottom: 1px solid var(--a45-border);
}
.a45-footer-cats a { font-size: .78rem; font-weight: 700; color: var(--a45-muted); }
.a45-footer-cats a:hover { color: var(--a45-primary); }
.a45-footer-base { padding: 1rem 0 1.5rem; font-size: .78rem; color: var(--a45-muted); }

@media (max-width: 980px) {
  .a45-cat-nav { display: none; }
  .a45-header-main { grid-template-columns: 1fr auto; gap: 0.65rem; padding: 0.7rem 0; }
  .a45-brand-copy small { display: none; }
  .a45-search-compact { display: none; }
  .a45-account-copy { display: none; }
  .a45-account-chip {
    padding: 0.2rem;
    border-radius: 50%;
  }
  .a45-account-medallion {
    width: 38px;
    height: 38px;
  }
  .a45-cart-pill span:not(.a45-cart-count) { display: none; }
  .a45-cart-pill {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 12px;
  }
  .a45-menu-toggle {
    display: inline-flex;
    position: relative;
  }
  .a45-footer-main { grid-template-columns: 1fr; }
  .a45-footer-columns { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .a45-subnav { display: none; }
  .a45-footer-columns { grid-template-columns: 1fr; }
  .a45-topbar-inner { justify-content: center; text-align: center; }
  .a45-topbar-phone { display: none; }
  .a45-topbar-msg { font-size: 0.72rem; }
  .a45-brand-copy strong { font-size: 1rem; }
  .a45-account-medallion { width: 36px; height: 36px; }
  .a45-header-actions { gap: 0.45rem; }
  .a45-mobile-panel { width: 100vw; border-radius: 0; }
  .a45-mobile-cat-grid { grid-template-columns: 1fr 1fr; }
  .a45-mobile-quick { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .a45-account-ring,
  .a45-account-verified {
    animation: none !important;
  }
  .a45-account-chip:hover .a45-account-medallion {
    transform: none;
  }
}
