/* Appily Twentyfive — PowerUp-inspired chrome */
:root {
  --pu-black: #000000;
  --pu-charcoal: #111111;
  --pu-dark: #1a1a1a;
  --pu-lime: #bfff00;
  --pu-lime-dim: #9fd900;
  --pu-white: #ffffff;
  --pu-gray: #6b6b6b;
  --pu-light: #f4f4f2;
  --pu-border: #e8e8e6;
  --pu-red: #e53935;
  --pu-font: 'Outfit', system-ui, sans-serif;
  --pu-body: 'DM Sans', system-ui, sans-serif;
  --pu-radius: 12px;
  --pu-radius-pill: 999px;
  --pu-shadow: 0 8px 32px rgba(0,0,0,.12);
  --pu-header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.pu-store {
  margin: 0;
  font-family: var(--pu-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--pu-black);
  background: var(--pu-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { width: min(1280px, calc(100% - 32px)); margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Announcement bar */
.pu-announce {
  background: var(--pu-white);
  border-bottom: 1px solid var(--pu-border);
  font-size: 13px;
}
.pu-announce-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.pu-announce-inner p { margin: 0; text-align: center; }
.pu-announce-phone { font-weight: 600; white-space: nowrap; }
.pu-announce-meta {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  color: var(--pu-gray);
  font-size: 12px;
}

/* Header */
.pu-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pu-black);
  border-bottom: 1px solid #222;
}
.pu-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--pu-header-h);
  gap: 24px;
}
.pu-logo {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--pu-font);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--pu-white);
  flex-shrink: 0;
}
.pu-logo-text { letter-spacing: -0.02em; }
.pu-logo-dot { color: var(--pu-lime); font-size: 1.5em; line-height: 0; }

.pu-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.pu-nav-item { position: relative; }
.pu-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  color: var(--pu-white);
  font-family: var(--pu-font);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--pu-radius-pill);
  transition: color .2s;
}
.pu-nav-link:hover,
.pu-nav-link.is-active { color: var(--pu-lime); }
.pu-chevron {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  opacity: .8;
}

/* Mega menu */
.pu-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 720px;
  background: var(--pu-dark);
  border: 1px solid #333;
  border-radius: var(--pu-radius);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, visibility .2s;
  box-shadow: var(--pu-shadow);
}
.pu-nav-item.has-mega:hover .pu-mega,
.pu-nav-item.has-mega:focus-within .pu-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pu-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.pu-mega-col h4 {
  margin: 0 0 12px;
  font-family: var(--pu-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pu-white);
}
.pu-mega-col a {
  display: block;
  padding: 6px 0;
  color: #ccc;
  font-size: 14px;
  transition: color .15s;
}
.pu-mega-col a:hover { color: var(--pu-lime); }
.pu-mega-card {
  background: var(--pu-white);
  border-radius: var(--pu-radius);
  overflow: hidden;
  text-align: center;
  transition: transform .2s;
}
.pu-mega-card:hover { transform: translateY(-2px); }
.pu-mega-card-img {
  aspect-ratio: 1;
  padding: 12px;
  background: var(--pu-light);
}
.pu-mega-card-img img { width: 100%; height: 100%; object-fit: contain; }
.pu-mega-card span {
  display: block;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pu-black);
}
.pu-mega-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #333;
  text-align: center;
}
.pu-mega-foot a {
  color: var(--pu-white);
  font-weight: 600;
  font-size: 14px;
}
.pu-mega-foot a:hover { color: var(--pu-lime); }

/* Header actions */
.pu-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.pu-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--pu-white);
  border-radius: 50%;
  transition: background .15s;
}
.pu-icon-btn:hover { background: rgba(255,255,255,.08); }
.pu-cart em {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--pu-lime);
  color: var(--pu-black);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--pu-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pu-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  transition: border-color .2s, background .2s;
}
.pu-mobile-toggle:hover {
  border-color: rgba(191,255,0,.45);
  background: rgba(191,255,0,.08);
}
.pu-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--pu-white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.pu-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.pu-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.pu-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.pu-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  transition: opacity .3s ease;
}
.pu-mobile-overlay.is-visible { opacity: 1; }

.pu-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100vw);
  height: 100%;
  height: 100dvh;
  background: linear-gradient(180deg, #0a0a0a 0%, var(--pu-black) 40%, #111 100%);
  color: var(--pu-white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -12px 0 48px rgba(0,0,0,.35);
  border-left: 1px solid #222;
}
.pu-mobile-drawer.is-open { transform: translateX(0); }

.pu-mobile-top {
  flex-shrink: 0;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #222;
  background: rgba(0,0,0,.35);
}
.pu-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.pu-mobile-head .pu-logo { font-size: 1.15rem; }
.pu-mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #333;
  color: var(--pu-white);
  background: rgba(255,255,255,.04);
  transition: border-color .2s, background .2s, color .2s;
}
.pu-mobile-close:hover {
  border-color: var(--pu-lime);
  color: var(--pu-lime);
  background: rgba(191,255,0,.08);
}

.pu-mobile-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pu-mobile-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 64px;
  padding: 10px 8px;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  background: rgba(255,255,255,.03);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #ccc;
  text-align: center;
  transition: border-color .2s, background .2s, color .2s;
}
.pu-mobile-chip:hover,
.pu-mobile-chip.is-active {
  border-color: rgba(191,255,0,.5);
  background: rgba(191,255,0,.08);
  color: var(--pu-lime);
}
.pu-mobile-chip svg { opacity: .9; }
.pu-mobile-chip-badge {
  position: absolute;
  margin-top: -42px;
  margin-left: 28px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--pu-radius-pill);
  background: var(--pu-lime);
  color: var(--pu-black);
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pu-mobile-chip-cart { position: relative; }

.pu-mobile-scroll {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px 16px 8px;
  -webkit-overflow-scrolling: touch;
}
.pu-mobile-label {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.pu-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.pu-mobile-link {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 14px 14px 12px;
  border-radius: 16px;
  border: 1px solid #2a2a2a;
  background: rgba(255,255,255,.03);
  transition: border-color .2s, background .2s, transform .15s;
}
.pu-mobile-link:hover,
.pu-mobile-link.is-active {
  border-color: rgba(191,255,0,.55);
  background: rgba(191,255,0,.07);
  transform: translateX(2px);
}
.pu-mobile-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(191,255,0,.1);
  color: var(--pu-lime);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pu-mobile-link.is-active .pu-mobile-link-icon {
  background: var(--pu-lime);
  color: var(--pu-black);
}
.pu-mobile-link-text strong {
  display: block;
  font-family: var(--pu-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--pu-white);
}
.pu-mobile-link-text small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: rgba(255,255,255,.45);
  line-height: 1.35;
}
.pu-mobile-link-arrow {
  font-size: 16px;
  color: rgba(191,255,0,.75);
  font-weight: 700;
}

.pu-mobile-fold {
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  margin-bottom: 10px;
  overflow: hidden;
}
.pu-mobile-fold summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  font-family: var(--pu-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--pu-white);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.pu-mobile-fold summary::-webkit-details-marker { display: none; }
.pu-mobile-fold summary::after {
  content: '+';
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--pu-lime);
  flex-shrink: 0;
  transition: transform .2s;
}
.pu-mobile-fold[open] summary::after {
  content: '−';
  background: rgba(191,255,0,.12);
  border-color: rgba(191,255,0,.35);
}
.pu-mobile-fold-count {
  margin-left: auto;
  margin-right: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 4px 8px;
  border-radius: var(--pu-radius-pill);
  background: rgba(191,255,0,.12);
  color: var(--pu-lime);
}
.pu-mobile-cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 0 12px 14px;
  max-height: 220px;
  overflow-y: auto;
}
.pu-mobile-cat-grid a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #bbb;
  background: rgba(0,0,0,.25);
  border: 1px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
}
.pu-mobile-cat-grid a:hover {
  color: var(--pu-lime);
  border-color: rgba(191,255,0,.25);
  background: rgba(191,255,0,.06);
}
.pu-mobile-quicklinks {
  padding: 0 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pu-mobile-quickgroup p {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.pu-mobile-quickgroup a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  color: #bbb;
  border-bottom: 1px solid #222;
}
.pu-mobile-quickgroup a:last-child { border-bottom: 0; }
.pu-mobile-quickgroup a:hover { color: var(--pu-lime); }

.pu-mobile-bottom {
  flex-shrink: 0;
  padding: 14px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #222;
  background: rgba(0,0,0,.4);
}
.pu-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: var(--pu-radius-pill);
  background: var(--pu-lime);
  color: var(--pu-black);
  font-family: var(--pu-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .15s, background .15s;
}
.pu-mobile-cta:hover {
  background: #d4ff33;
  transform: translateY(-1px);
}
.pu-mobile-contact {
  margin: 10px 0 0;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  word-break: break-word;
}

body.pu-mobile-open { overflow: hidden; }

/* Footer */
.pu-footer {
  background: var(--pu-black);
  color: #ccc;
  padding: 56px 0 0;
}
.pu-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}
.pu-footer-brand p {
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.7;
  color: #999;
}
.pu-logo-footer .pu-logo-text { color: var(--pu-white); }
.pu-footer-col h5 {
  margin: 0 0 16px;
  font-family: var(--pu-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pu-white);
}
.pu-footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: #aaa;
  transition: color .15s;
}
.pu-footer-col a:hover { color: var(--pu-lime); }
.pu-contact-line { margin: 0 0 10px; font-size: 14px; }
.pu-contact-line a { color: var(--pu-lime); font-weight: 600; }
.pu-newsletter { margin-top: 20px; }
.pu-newsletter h5 { margin-bottom: 12px; }
.pu-newsletter-form {
  display: flex;
  border: 1px solid #444;
  border-radius: var(--pu-radius-pill);
  overflow: hidden;
}
.pu-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: var(--pu-white);
  font: inherit;
  min-width: 0;
}
.pu-newsletter-form input::placeholder { color: #666; }
.pu-newsletter-form button {
  width: 44px;
  background: var(--pu-white);
  color: var(--pu-black);
  font-size: 18px;
  font-weight: 700;
}
.pu-footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid #222;
  font-size: 13px;
  color: #777;
  flex-wrap: wrap;
}
.pu-payments { color: #999; }

/* Why section */
.pu-why {
  background: var(--pu-light);
  padding: 48px 0;
  border-top: 1px solid var(--pu-border);
}
.pu-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pu-why-icon {
  display: inline-block;
  font-family: var(--pu-font);
  font-weight: 800;
  font-size: 28px;
  color: var(--pu-lime);
  background: var(--pu-black);
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 12px;
}
.pu-why h4 {
  margin: 0 0 8px;
  font-family: var(--pu-font);
  font-size: 16px;
  font-weight: 700;
}
.pu-why p { margin: 0; font-size: 14px; color: var(--pu-gray); }

.pu-back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--pu-lime);
  color: var(--pu-black);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s;
  z-index: 50;
  box-shadow: var(--pu-shadow);
}
.pu-back-top.is-visible { opacity: 1; visibility: visible; }

@media (max-width: 1024px) {
  .pu-nav { display: none; }
  .pu-mobile-toggle { display: flex; }
  .pu-footer-grid { grid-template-columns: 1fr 1fr; }
  .pu-why-grid { grid-template-columns: 1fr 1fr; }
  .pu-announce-inner { grid-template-columns: 1fr; text-align: center; }
  .pu-announce-phone { display: none; }
  .pu-announce-meta { justify-content: center; }
  .pu-header-row { gap: 12px; min-height: 64px; }
  .pu-logo { font-size: 1.15rem; }
}
@media (max-width: 640px) {
  .pu-footer-grid { grid-template-columns: 1fr; }
  .pu-why-grid { grid-template-columns: 1fr; }
  .pu-footer-base { flex-direction: column; text-align: center; }
  .pu-actions .pu-icon-btn:first-child { display: none; }
}
@media (max-width: 380px) {
  .pu-mobile-chips { grid-template-columns: 1fr; }
  .pu-mobile-chip {
    flex-direction: row;
    min-height: 48px;
    justify-content: flex-start;
    padding: 12px 14px;
  }
  .pu-mobile-chip-badge {
    position: static;
    margin: 0 0 0 auto;
  }
}
