/* Appily Fortyeight — Greens Garden–style chrome */

.page-wrap { position: relative; background: #fff; }

/* ── Utility bar ── */
.a48-utilbar {
  background: #f3f3f3;
  color: #777;
  font-size: .78rem;
  border-bottom: 1px solid #ececec;
}
.a48-utilbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 38px;
}
.a48-utilbar-tag { margin: 0; }
.a48-utilbar-links { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.a48-util-link { display: inline-flex; align-items: center; gap: .35rem; color: #666; font-weight: 600; }
.a48-util-link:hover, .a48-util-link.is-active { color: var(--a48-primary); }
.a48-util-ico { font-size: .85rem; }
.a48-util-sep { color: #ccc; }
.a48-util-static { color: #777; }

/* ── Account keycard medallion ── */
.a48-util-acct {
  gap: .55rem;
  padding: .2rem .55rem .2rem .25rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.a48-util-acct:hover,
.a48-util-acct.is-active {
  background: rgba(12, 26, 20, .06);
  color: #0C1A14;
}
.a48-util-acct.is-signed-in:hover,
.a48-util-acct.is-signed-in.is-active {
  background: rgba(198, 245, 66, .18);
}
.a48-util-acct-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.a48-util-acct-label {
  font-size: .78rem;
  font-weight: 800;
  color: #163528;
  letter-spacing: .01em;
}
.a48-util-acct-meta {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #7a8a82;
}
.a48-util-acct.is-verified .a48-util-acct-meta { color: #3a8f5c; }

.a48-passport-medallion {
  --med-size: 36px;
  position: relative;
  width: var(--med-size);
  height: var(--med-size);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.a48-passport-medallion--sm { --med-size: 32px; }

.a48-passport-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 200deg, #C6F542, #3DDC97, #163528, #C6F542);
  animation: a48AcctSpin 10s linear infinite;
  opacity: .9;
}
.a48-util-acct:hover .a48-passport-ring,
.a48-mobile-acct:hover .a48-passport-ring {
  animation-duration: 3.5s;
}
@keyframes a48AcctSpin { to { transform: rotate(360deg); } }

.a48-passport-core {
  position: relative;
  z-index: 1;
  width: calc(var(--med-size) - 6px);
  height: calc(var(--med-size) - 6px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(198, 245, 66, .22), transparent 55%),
    #0C1A14;
  border: 1.5px solid rgba(255, 255, 255, .12);
  box-shadow: 0 4px 12px rgba(12, 26, 20, .22);
  overflow: hidden;
}

.a48-passport-initial {
  font-size: calc(var(--med-size) * .42);
  font-weight: 800;
  color: #C6F542;
  line-height: 1;
  letter-spacing: -.02em;
}

.a48-passport-guest {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.a48-passport-head {
  position: absolute;
  left: 50%;
  top: 22%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(160deg, #EAF6EF, #9bb5a6);
  transform: translateX(-50%);
}
.a48-passport-shoulders {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 62%;
  height: 38%;
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
  background: linear-gradient(160deg, #EAF6EF, #7f9a8c);
  transform: translateX(-50%);
}

.a48-passport-seal {
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #C6F542;
  color: #0C1A14;
  font-size: .55rem;
  font-weight: 900;
  line-height: 1;
  border: 1.5px solid #fff;
  box-shadow: 0 2px 6px rgba(12, 26, 20, .25);
}

.a48-util-acct.is-signed-in .a48-passport-ring {
  box-shadow: 0 0 0 0 rgba(198, 245, 66, .35);
  animation: a48AcctSpin 10s linear infinite, a48AcctPulse 2.4s ease-out infinite;
}
@keyframes a48AcctPulse {
  70%, 100% { box-shadow: 0 0 0 8px transparent; }
}

@media (prefers-reduced-motion: reduce) {
  .a48-passport-ring,
  .a48-util-acct.is-signed-in .a48-passport-ring { animation: none; }
}

/* ── Masthead ── */
.a48-masthead { background: #fff; padding: 1.15rem 0; }
.a48-masthead-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.a48-mast-support, .a48-mast-cart {
  display: flex; align-items: center; gap: .85rem;
  min-width: 0;
}
.a48-mast-cart { justify-self: end; position: relative; }
.a48-mast-bubble {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--a48-primary); color: #fff;
  display: grid; place-items: center; font-size: 1.25rem; flex-shrink: 0;
}
.a48-mast-copy { display: flex; flex-direction: column; line-height: 1.25; }
.a48-mast-copy strong { font-size: .95rem; color: #222; }
.a48-mast-copy span { font-size: .82rem; color: #888; }
.a48-mast-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px; border-radius: 999px;
  background: #222; color: #fff; font-size: .68rem; font-weight: 700;
  display: grid; place-items: center; padding: 0 .35rem;
}

.a48-logo {
  display: inline-flex; align-items: center; gap: .45rem;
  justify-self: center; white-space: nowrap;
}
.a48-logo-lead {
  font-family: var(--a48-font-sans);
  font-weight: 800; font-size: clamp(1.55rem, 2.6vw, 2rem);
  color: var(--a48-primary); letter-spacing: -.02em;
}
.a48-logo-trail {
  font-family: var(--a48-font-sans);
  font-weight: 800; font-size: clamp(1.55rem, 2.6vw, 2rem);
  color: #333; letter-spacing: -.02em;
}
.a48-logo-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 18%, transparent 19%),
    linear-gradient(135deg, var(--a48-primary) 0 48%, #8a5a2b 48% 100%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35);
  flex-shrink: 0;
}

.a48-menu-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--a48-line);
  background: #fff; border-radius: 8px; padding: 10px; cursor: pointer;
  flex-direction: column; justify-content: space-between;
}
.a48-menu-toggle span { display: block; height: 2px; background: #333; border-radius: 2px; }

/* ── Nav + search ── */
.a48-header {
  background: #fff;
  border-top: 1px solid var(--a48-line);
  border-bottom: 1px solid var(--a48-line);
  position: sticky; top: 0; z-index: 90;
}
.a48-header-shell {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  min-height: 58px;
}
.a48-nav { display: flex; align-items: center; gap: 1.35rem; flex-wrap: wrap; }
.a48-nav-link {
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #222; padding: .85rem 0; position: relative;
}
.a48-nav-link:hover, .a48-nav-link.is-active { color: var(--a48-primary); }
.a48-nav-link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--a48-primary);
}

.a48-search {
  display: flex; align-items: stretch; width: min(320px, 100%);
  border: 1px solid #d7d7d7; border-radius: 4px; overflow: hidden; background: #fff;
}
.a48-search input {
  flex: 1; border: 0; outline: 0; padding: .7rem .9rem; font: inherit; font-size: .88rem; min-width: 0;
  background: #fafafa;
}
.a48-search button {
  border: 0; background: var(--a48-primary); color: #fff;
  padding: 0 1.1rem; font-weight: 800; font-size: .72rem; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer;
}
.a48-search button:hover { background: var(--a48-primary-deep); }

/* ── Mobile drawer ── */
body.a48-nav-open { overflow: hidden; touch-action: none; }

.a48-mobile-nav[hidden] { display: none !important; }
.a48-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 220;
  pointer-events: none;
}
.a48-mobile-nav.is-open { pointer-events: auto; }

.a48-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 26, 20, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .32s ease;
}
.a48-mobile-nav.is-open .a48-mobile-backdrop { opacity: 1; }

.a48-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(392px, 92vw);
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1rem 1rem 1.15rem;
  background:
    radial-gradient(520px 220px at 100% 0%, rgba(198, 245, 66, 0.22), transparent 55%),
    radial-gradient(420px 240px at 0% 100%, rgba(61, 220, 151, 0.12), transparent 50%),
    linear-gradient(180deg, #f7fcf8 0%, #ffffff 42%, #f3faf5 100%);
  border-left: 1px solid rgba(12, 26, 20, 0.08);
  box-shadow: -18px 0 48px rgba(12, 26, 20, 0.22);
  transform: translateX(104%);
  transition: transform .38s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.a48-mobile-nav.is-open .a48-mobile-panel { transform: none; }

.a48-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-shrink: 0;
}
.a48-mobile-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
}
.a48-mobile-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 30% 30%, #C6F542, transparent 45%),
    linear-gradient(145deg, #163528, #0C1A14);
  box-shadow: inset 0 0 0 1px rgba(198, 245, 66, 0.35);
}
.a48-mobile-brand-copy {
  display: grid;
  gap: .1rem;
  min-width: 0;
}
.a48-mobile-brand-name {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0C1A14;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.a48-mobile-brand-name span { color: #5A9E22; }
.a48-mobile-brand-copy em {
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5F7468;
  font-weight: 700;
}

.a48-mobile-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(12, 26, 20, 0.1);
  background: #fff;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(12, 26, 20, 0.06);
}
.a48-mobile-close span {
  position: absolute;
  left: 11px;
  right: 11px;
  top: 50%;
  height: 2px;
  background: #163528;
  border-radius: 2px;
}
.a48-mobile-close span:first-child { transform: rotate(45deg); }
.a48-mobile-close span:last-child { transform: rotate(-45deg); }

.a48-mobile-acct {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .75rem;
  padding: .8rem .9rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #163528 0%, #0C1A14 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(12, 26, 20, 0.18);
  flex-shrink: 0;
}
.a48-mobile-acct:hover { color: #fff; }
.a48-mobile-acct .a48-passport-medallion { --med-size: 40px; }
.a48-mobile-acct-text {
  display: grid;
  gap: .12rem;
  min-width: 0;
}
.a48-mobile-quick-label {
  font-weight: 800;
  font-size: .95rem;
  line-height: 1.2;
}
.a48-mobile-quick-meta {
  font-size: .72rem;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.a48-mobile-acct.is-verified .a48-mobile-quick-meta { color: #C6F542; }
.a48-mobile-acct-go {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(198, 245, 66, 0.18);
  color: #C6F542;
  font-size: 1rem;
}

.a48-mobile-search {
  display: flex;
  gap: .45rem;
  flex-shrink: 0;
  padding: .35rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(12, 26, 20, 0.1);
  box-shadow: 0 8px 18px rgba(12, 26, 20, 0.04);
}
.a48-mobile-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: .65rem .7rem;
  font: inherit;
  font-size: 16px;
  min-width: 0;
  color: #0C1A14;
}
.a48-mobile-search button {
  border: 0;
  background: #6FBA2C;
  color: #fff;
  border-radius: 10px;
  padding: 0 1rem;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.a48-mobile-scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: .15rem;
  display: grid;
  gap: .7rem;
  align-content: start;
}

.a48-mobile-section-label {
  margin: .15rem 0 0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5F7468;
}

.a48-mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}
.a48-mobile-tile {
  display: grid;
  gap: .2rem;
  padding: .85rem .8rem .8rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(12, 26, 20, 0.08);
  box-shadow: 0 10px 22px rgba(12, 26, 20, 0.05);
  text-decoration: none;
  color: #0C1A14;
  min-height: 92px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  opacity: 0;
  transform: translateY(10px);
}
.a48-mobile-nav.is-open .a48-mobile-tile {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.04s + var(--tile-i, 0) * 0.035s);
}
.a48-mobile-tile:hover,
.a48-mobile-tile:focus-visible {
  border-color: rgba(111, 186, 44, 0.45);
  box-shadow: 0 14px 28px rgba(12, 26, 20, 0.1);
  transform: translateY(-2px);
  color: #0C1A14;
}
.a48-mobile-tile.is-active {
  background: linear-gradient(160deg, rgba(198, 245, 66, 0.28), #fff 60%);
  border-color: rgba(111, 186, 44, 0.55);
  box-shadow: 0 14px 28px rgba(111, 186, 44, 0.16);
}
.a48-mobile-tile-code {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: #6FBA2C;
}
.a48-mobile-tile-label {
  font-weight: 800;
  font-size: .92rem;
  line-height: 1.2;
}
.a48-mobile-tile-hint {
  font-size: .72rem;
  color: #5F7468;
  line-height: 1.3;
}

.a48-mobile-tools {
  display: grid;
  gap: .45rem;
  margin-bottom: .25rem;
}
.a48-mobile-tool {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .7rem;
  padding: .75rem .85rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(12, 26, 20, 0.08);
  text-decoration: none;
  color: #0C1A14;
  box-shadow: 0 8px 18px rgba(12, 26, 20, 0.04);
  opacity: 0;
  transform: translateX(12px);
}
.a48-mobile-nav.is-open .a48-mobile-tool {
  opacity: 1;
  transform: none;
  transition: opacity .35s ease, transform .35s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.18s + var(--tool-i, 0) * 0.04s);
}
.a48-mobile-tool:hover,
.a48-mobile-tool.is-active {
  border-color: rgba(111, 186, 44, 0.45);
  color: #0C1A14;
}
.a48-mobile-tool-code {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .06em;
  background: rgba(111, 186, 44, 0.14);
  color: #163528;
}
.a48-mobile-tool-copy {
  display: grid;
  gap: .1rem;
  min-width: 0;
}
.a48-mobile-tool-copy strong {
  font-size: .9rem;
  font-weight: 800;
}
.a48-mobile-tool-copy small {
  font-size: .72rem;
  color: #5F7468;
}
.a48-mobile-tool-badge {
  min-width: 24px;
  height: 24px;
  padding: 0 .45rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #6FBA2C;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}

.a48-mobile-phone {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
  padding: .9rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(198, 245, 66, 0.22), rgba(61, 220, 151, 0.12));
  border: 1px solid rgba(111, 186, 44, 0.28);
  text-decoration: none;
  flex-shrink: 0;
}
.a48-mobile-phone-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #163528;
  font-size: 1.1rem;
  box-shadow: 0 6px 14px rgba(12, 26, 20, 0.08);
}
.a48-mobile-phone-copy { display: grid; gap: .1rem; min-width: 0; }
.a48-mobile-phone-label {
  font-size: .68rem;
  color: #5F7468;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.a48-mobile-phone-num {
  font-weight: 800;
  color: #0C1A14;
  font-size: .95rem;
}

/* Menu toggle animation */
.a48-menu-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.a48-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.a48-menu-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.a48-menu-toggle span { transition: transform .28s ease, opacity .2s ease; }

/* ── Footer ── */
.a48-footer { margin-top: 3rem; background: #fff; position: relative; border-top: 1px solid #eee; }
.a48-footer-crest {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--a48-primary); color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 20px rgba(111,186,44,.35);
  z-index: 2;
}
.a48-footer-crest-ico { font-size: 1.35rem; line-height: 1; }
.a48-footer-main { padding: 3.5rem 0 2rem; }
.a48-footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem;
}
.a48-footer-brand p { color: #8b8b8b; font-size: .9rem; max-width: 34ch; margin: 1rem 0 0; }
.a48-logo--footer { justify-self: start; }
.a48-footer-col h4 {
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  margin: 0 0 1rem; color: #222;
}
.a48-footer-col a {
  display: block; color: #8b8b8b; font-size: .9rem; padding: .28rem 0;
}
.a48-footer-col a:hover { color: var(--a48-primary); }
.a48-footer-contact-row {
  display: flex; gap: .7rem; align-items: flex-start;
  color: #8b8b8b; font-size: .9rem; margin: 0 0 .85rem;
}
.a48-footer-dot {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--a48-primary); color: #fff;
  display: grid; place-items: center; font-size: .8rem;
}
.a48-footer-base { border-top: 1px solid #eee; padding: 1.1rem 0 1.35rem; }
.a48-footer-base-inner {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem;
}
.a48-footer-copy { margin: 0; color: #999; font-size: .82rem; }
.a48-pay-icons { display: flex; gap: .4rem; justify-content: flex-end; flex-wrap: wrap; }
.a48-pay-icons span {
  border: 1px solid #ddd; border-radius: 4px; padding: .28rem .55rem;
  font-size: .68rem; font-weight: 700; color: #666; background: #fff;
}

.a48-scroll-top {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 80;
  width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: var(--a48-primary); color: #fff; font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(111,186,44,.35); cursor: pointer;
}
.a48-scroll-top[hidden] { display: none !important; }

@media (max-width: 960px) {
  .a48-masthead-inner { grid-template-columns: 1fr auto auto; align-items: center; gap: .55rem; }
  .a48-mast-support { display: none; }
  .a48-logo { justify-self: start; grid-column: 1; }
  .a48-mast-cart { grid-column: 2; justify-self: end; }
  .a48-menu-toggle { display: inline-flex; grid-column: 3; justify-self: end; }
  .a48-nav { display: none; }
  .a48-header-shell { justify-content: flex-end; }
  .a48-search { width: min(100%, 420px); }
  .a48-footer-grid { grid-template-columns: 1fr 1fr; }
  .a48-footer-base-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .a48-pay-icons { justify-content: center; }
  .a48-utilbar-tag { display: none; }
}

@media (max-width: 640px) {
  .a48-utilbar { display: none; }
  .a48-masthead { padding: .65rem 0; }
  .a48-mast-cart .a48-mast-copy strong { font-size: .78rem; }
  .a48-mast-cart .a48-mast-copy span { font-size: .68rem; }
  .a48-mast-bubble { width: 40px; height: 40px; font-size: 1rem; }
  .a48-logo-lead, .a48-logo-trail { font-size: clamp(1rem, 4.5vw, 1.2rem); }
  .a48-footer-grid { grid-template-columns: 1fr; }
  .a48-header-shell .a48-search { display: none; }
  .a48-header { display: none; }
  .a48-mobile-panel { width: min(100vw, 100%); border-left: 0; border-radius: 0; }
  .a48-mobile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 380px) {
  .a48-mast-cart .a48-mast-copy { display: none; }
  .a48-mobile-tile { min-height: 84px; padding: .75rem .7rem; }
}
