﻿:root {
  --alp-primary: #f57c1f;
  --alp-secondary: #4c6fff;
  --alp-bg-base: #080812;
  --alp-bg-section: #12121f;
  --alp-bg-card: #1a1a2b;
  --alp-text-primary: #f5f2ea;
  --alp-text-secondary: #d9d4c8;
  --alp-text-disabled: #a8a49a;
  --alp-success: #2fbf71;
  --alp-error: #e5533d;
  --alp-divider: #2e2e46;
  --alp-stroke: #242437;
  --alp-gradient: linear-gradient(130deg, #f57c1f 0%, #ffd84d 100%);
  --alp-shadow-soft: 0 8px 28px rgba(0, 0, 0, 0.36);
  --alp-shadow-card: 0 16px 42px rgba(0, 0, 0, 0.35);
  --alp-radius-xs: 8px;
  --alp-radius-sm: 12px;
  --alp-radius-md: 16px;
  --alp-radius-lg: 22px;
  --alp-radius-xl: 28px;
}

body.alp-store-light {
  --alp-bg-base: #f5f2ea;
  --alp-bg-section: #ebe7dd;
  --alp-bg-card: #ffffff;
  --alp-text-primary: #14141e;
  --alp-text-secondary: #42424f;
  --alp-text-disabled: #7b7b89;
  --alp-divider: #ddd7ca;
  --alp-stroke: #d2cabb;
  --alp-shadow-soft: 0 10px 24px rgba(7, 7, 12, 0.12);
  --alp-shadow-card: 0 16px 38px rgba(7, 7, 12, 0.16);
}

body.alp-store-template,
body.alp-store-template #page,
body.alp-store-template .site-main {
  background: var(--alp-bg-base);
  color: var(--alp-text-primary);
}

body.alp-store-template {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", "IBM Plex Sans Arabic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.alp-store-template * {
  box-sizing: border-box;
}

body.alp-store-template a {
  color: inherit;
  text-decoration: none;
}

body.alp-store-template img {
  max-width: 100%;
  height: auto;
  display: block;
}

body.alp-store-template .alp-hidden {
  display: none !important;
}

body.alp-store-template .alp-store-shell {
  min-height: 100vh;
  padding-top: 126px;
  padding-bottom: 48px;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(900px 380px at 8% -14%, rgba(76, 111, 255, 0.28), transparent 70%),
    radial-gradient(980px 420px at 96% -18%, rgba(245, 124, 31, 0.24), transparent 72%),
    var(--alp-bg-base);
}

body.alp-store-template .alp-store-main {
  width: min(1320px, 94vw);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

body.alp-store-template .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

body.admin-bar .aa-header-store {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .aa-header-store {
    top: 46px;
  }
}

body.alp-store-template .aa-header-store {
  z-index: 100001;
}

body.alp-store-template .aa-header-store .header-bg {
  border-bottom: 1px solid transparent;
  background: transparent;
}

body.alp-store-template .aa-header-store.is-scrolled .header-bg {
  border-bottom-color: color-mix(in srgb, var(--alp-divider) 76%, transparent);
  background: color-mix(in srgb, var(--alp-bg-base) 84%, transparent);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

body.alp-store-template .aa-store-header-inner {
  width: min(1340px, 96vw);
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 14px;
}

body.alp-store-template .aa-store-brand {
  height: 40px;
  min-width: 78px;
}

body.alp-store-template .aa-store-header-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.alp-store-template .aa-store-dropdown {
  position: relative;
}

body.alp-store-template .aa-store-dd-btn {
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 84%, transparent);
  color: var(--alp-text-primary);
  border-radius: 999px;
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

body.alp-store-template .aa-store-dd-btn:hover,
body.alp-store-template .aa-store-dd-btn:focus-visible,
body.alp-store-template .aa-store-dropdown.is-open .aa-store-dd-btn {
  border-color: color-mix(in srgb, var(--alp-secondary) 68%, var(--alp-stroke));
  background: color-mix(in srgb, var(--alp-secondary) 18%, var(--alp-bg-card));
}

body.alp-store-template .aa-store-dd-arrow {
  font-size: 10px;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

body.alp-store-template .aa-store-dropdown.is-open .aa-store-dd-arrow {
  transform: rotate(180deg);
}

body.alp-store-template .aa-store-dd-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  border: 1px solid var(--alp-divider);
  border-radius: var(--alp-radius-md);
  background: color-mix(in srgb, var(--alp-bg-section) 92%, transparent);
  box-shadow: var(--alp-shadow-soft);
  padding: 10px;
  display: grid;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.alp-store-template .aa-store-dropdown.is-open .aa-store-dd-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.alp-store-template .aa-store-dd-panel a {
  min-height: 34px;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--alp-text-secondary);
  transition: background-color 0.18s ease, color 0.18s ease;
}

body.alp-store-template .aa-store-dd-panel a:hover,
body.alp-store-template .aa-store-dd-panel a:focus-visible {
  background: color-mix(in srgb, var(--alp-secondary) 16%, transparent);
  color: var(--alp-text-primary);
}
body.alp-store-template .aa-store-dd-cats {
  min-width: 350px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.alp-store-template .aa-store-cat-link {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-height: 58px;
}

body.alp-store-template .aa-store-cat-link strong {
  color: var(--alp-text-primary);
  font-size: 13px;
  letter-spacing: 0.02em;
}

body.alp-store-template .aa-store-cat-link span {
  color: var(--alp-text-disabled);
  font-size: 11px;
  line-height: 1.35;
}

body.alp-store-template .aa-store-dd-account {
  right: 0;
  left: auto;
  min-width: 260px;
}

body.alp-store-template .aa-store-dd-account a.is-logout {
  color: var(--alp-error);
}

body.alp-store-template .aa-store-search {
  width: 100%;
}

body.alp-store-template .aa-store-search input {
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  color: var(--alp-text-primary);
  padding: 0 16px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.alp-store-template .aa-store-search input::placeholder {
  color: var(--alp-text-disabled);
}

body.alp-store-template .aa-store-search input:focus {
  border-color: color-mix(in srgb, var(--alp-secondary) 72%, var(--alp-stroke));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--alp-secondary) 22%, transparent);
}

body.alp-store-template .aa-store-header-right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

body.alp-store-template .aa-store-btn,
body.alp-store-template .alp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 16px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

body.alp-store-template .aa-store-btn:hover,
body.alp-store-template .alp-btn:hover {
  transform: translateY(-1px);
}

body.alp-store-template .aa-store-btn-ghost,
body.alp-store-template .alp-btn-ghost {
  border-color: var(--alp-divider);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  color: var(--alp-text-primary);
}

body.alp-store-template .aa-store-btn-ghost:hover,
body.alp-store-template .alp-btn-ghost:hover {
  border-color: color-mix(in srgb, var(--alp-primary) 54%, var(--alp-divider));
  background: color-mix(in srgb, var(--alp-primary) 14%, var(--alp-bg-card));
}

body.alp-store-template .aa-store-btn-primary,
body.alp-store-template .alp-btn-primary {
  border-color: color-mix(in srgb, var(--alp-primary) 76%, #ffd84d);
  background: var(--alp-gradient);
  color: #111217;
}

body.alp-store-template .aa-store-btn-primary:hover,
body.alp-store-template .alp-btn-primary:hover {
  border-color: #ffd84d;
}

body.alp-store-template .aa-store-license-btn {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--alp-primary) 52%, var(--alp-divider));
  background: color-mix(in srgb, var(--alp-primary) 12%, var(--alp-bg-card));
  color: var(--alp-text-primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  cursor: pointer;
}

body.alp-store-template .aa-store-license-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--alp-text-disabled);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.alp-store-template .aa-store-license-btn code {
  margin: 0;
  font-size: 11px;
  font-family: "JetBrains Mono", "Consolas", monospace;
  color: var(--alp-text-primary);
}

body.alp-store-template .aa-store-license-btn.is-copied {
  border-color: color-mix(in srgb, var(--alp-success) 76%, var(--alp-divider));
  background: color-mix(in srgb, var(--alp-success) 16%, var(--alp-bg-card));
}

body.alp-store-template .aa-store-top-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--alp-text-secondary);
}

body.alp-store-template .aa-store-top-link:hover {
  color: var(--alp-primary);
}

body.alp-store-template .aa-store-theme-toggle {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  color: var(--alp-text-primary);
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

body.alp-store-template .aa-store-theme-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--alp-secondary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--alp-secondary) 22%, transparent);
}

body.alp-store-template .aa-store-user-btn {
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 84%, transparent);
  min-height: 40px;
  border-radius: 999px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--alp-text-primary);
  cursor: pointer;
}

body.alp-store-template .aa-store-avatar-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #111217;
  background: var(--alp-gradient);
}

body.alp-store-template .aa-store-user-meta {
  display: grid;
  line-height: 1.1;
}

body.alp-store-template .aa-store-user-meta strong {
  font-size: 12px;
  font-weight: 700;
}

body.alp-store-template .aa-store-user-meta small {
  font-size: 10px;
  color: var(--alp-text-disabled);
}

body.alp-store-template .aa-store-cart-btn {
  min-height: 40px;
  border: 1px solid color-mix(in srgb, var(--alp-secondary) 50%, var(--alp-divider));
  background: color-mix(in srgb, var(--alp-secondary) 13%, var(--alp-bg-card));
  color: var(--alp-text-primary);
  border-radius: 999px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

body.alp-store-template .aa-store-cart-btn strong {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--alp-secondary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

body.alp-store-template .aa-store-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 6, 0.62);
  z-index: 100004;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

body.alp-store-template .aa-store-cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.alp-store-template.aa-store-cart-open {
  overflow: hidden;
}
body.alp-store-template .aa-store-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 96vw);
  height: 100vh;
  background: var(--alp-bg-section);
  border-left: 1px solid var(--alp-divider);
  z-index: 100005;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

body.alp-store-template .aa-store-cart-drawer.is-open {
  transform: translateX(0);
}

body.alp-store-template .aa-store-cart-drawer > header,
body.alp-store-template .aa-store-cart-drawer > footer {
  padding: 16px;
  border-bottom: 1px solid var(--alp-divider);
}

body.alp-store-template .aa-store-cart-drawer > footer {
  border-bottom: 0;
  border-top: 1px solid var(--alp-divider);
}

body.alp-store-template .aa-store-cart-drawer h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

body.alp-store-template .aa-store-cart-drawer header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.alp-store-template .aa-store-cart-drawer header button {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  color: var(--alp-text-primary);
  cursor: pointer;
}

body.alp-store-template .aa-store-cart-body {
  padding: 12px 16px;
  overflow-y: auto;
}

body.alp-store-template .aa-store-cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  border-radius: var(--alp-radius-sm);
  padding: 8px;
  margin-bottom: 10px;
}

body.alp-store-template .aa-store-cart-item img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
}

body.alp-store-template .aa-store-cart-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

body.alp-store-template .aa-store-cart-item small {
  color: var(--alp-text-disabled);
  font-size: 11px;
}

body.alp-store-template .aa-store-cart-item span {
  font-size: 12px;
  font-weight: 700;
  color: var(--alp-text-primary);
}

body.alp-store-template .aa-store-cart-empty {
  border: 1px dashed var(--alp-stroke);
  border-radius: var(--alp-radius-sm);
  padding: 14px;
  color: var(--alp-text-disabled);
  text-align: center;
}

body.alp-store-template .aa-store-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
}

body.alp-store-template .aa-store-cart-total strong {
  font-size: 15px;
}

body.alp-store-template .aa-store-cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

body.alp-store-template .aa-store-mobile-open {
  display: none;
}

body.alp-store-template .aa-store-mobile-panel {
  position: fixed;
  inset: 0 0 auto auto;
  width: min(340px, 96vw);
  height: 100vh;
  background: var(--alp-bg-section);
  border-left: 1px solid var(--alp-divider);
  transform: translateX(102%);
  transition: transform 0.24s ease;
  z-index: 100006;
  display: grid;
  grid-template-rows: auto 1fr;
}

body.alp-store-template .aa-store-mobile-panel.is-open {
  transform: translateX(0);
}

body.alp-store-template .aa-store-mobile-head {
  border-bottom: 1px solid var(--alp-divider);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.alp-store-template .aa-store-mobile-head strong {
  font-size: 14px;
  font-weight: 800;
}

body.alp-store-template .aa-store-mobile-head button {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  color: var(--alp-text-primary);
}

body.alp-store-template .aa-store-mobile-nav {
  padding: 14px;
  display: grid;
  gap: 6px;
  align-content: start;
}

body.alp-store-template .aa-store-mobile-nav a {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--alp-text-secondary);
}

body.alp-store-template .aa-store-mobile-nav a:hover {
  border-color: var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  color: var(--alp-text-primary);
}

body.alp-store-template .alp-market-section,
body.alp-store-template .alp-support-card,
body.alp-store-template .alp-account-card,
body.alp-store-template .alp-pricing-compare,
body.alp-store-template .alp-faq-shell,
body.alp-store-template .alp-faq-cta,
body.alp-store-template .alp-single-panel {
  border: 1px solid var(--alp-stroke);
  border-radius: var(--alp-radius-lg);
  background: color-mix(in srgb, var(--alp-bg-section) 90%, transparent);
  box-shadow: var(--alp-shadow-soft);
}

body.alp-store-template .alp-market-section,
body.alp-store-template .alp-faq-cta,
body.alp-store-template .alp-pricing-compare,
body.alp-store-template .alp-single-panel {
  padding: clamp(18px, 2.2vw, 28px);
}

body.alp-store-template .alp-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

body.alp-store-template .alp-section-head h2 {
  margin: 0;
  font-size: clamp(20px, 2.1vw, 30px);
  letter-spacing: -0.02em;
}

body.alp-store-template .alp-section-head a {
  color: var(--alp-text-secondary);
  font-size: 13px;
  font-weight: 700;
}

body.alp-store-template .alp-section-head a:hover {
  color: var(--alp-primary);
}

body.alp-store-template .alp-market-card-grid,
body.alp-store-template .alp-browse-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body.alp-store-template .alp-store-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--alp-stroke);
  border-radius: var(--alp-radius-md);
  overflow: hidden;
  background: color-mix(in srgb, var(--alp-bg-card) 92%, transparent);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.alp-store-template .alp-store-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--alp-secondary) 55%, var(--alp-stroke));
  box-shadow: var(--alp-shadow-card);
}

body.alp-store-template .alp-store-card-link {
  display: grid;
  gap: 0;
  color: inherit;
}

body.alp-store-template .alp-store-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, color-mix(in srgb, var(--alp-secondary) 24%, transparent), color-mix(in srgb, var(--alp-primary) 18%, transparent));
  border-bottom: 1px solid var(--alp-stroke);
}

body.alp-store-template .alp-store-card-media img,
body.alp-store-template .alp-store-card-fallback {
  width: 100%;
  height: 100%;
}

body.alp-store-template .alp-store-card-media img {
  object-fit: cover;
}

body.alp-store-template .alp-store-card-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 800;
  color: color-mix(in srgb, var(--alp-text-primary) 85%, transparent);
}
body.alp-store-template .alp-store-card-meta-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.alp-store-template .alp-store-card-program-badge,
body.alp-store-template .alp-store-card-plan-badge {
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body.alp-store-template .alp-store-card-program-badge {
  background: rgba(0, 0, 0, 0.62);
  color: #f0ecdf;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body.alp-store-template .alp-store-card-plan-badge {
  background: color-mix(in srgb, var(--alp-primary) 18%, var(--alp-bg-card));
  border: 1px solid color-mix(in srgb, var(--alp-primary) 48%, var(--alp-divider));
  color: color-mix(in srgb, var(--alp-primary) 88%, #fff);
}

body.alp-store-template .alp-store-card-body {
  padding: 12px;
  display: grid;
  gap: 8px;
}

body.alp-store-template .alp-store-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.alp-store-template .alp-store-card-program-label,
body.alp-store-template .alp-store-card-version,
body.alp-store-template .alp-store-card-sales {
  font-size: 11px;
  color: var(--alp-text-disabled);
}

body.alp-store-template .alp-store-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
}

body.alp-store-template .alp-store-card p {
  margin: 0;
  font-size: 12px;
  color: var(--alp-text-secondary);
  line-height: 1.45;
}

body.alp-store-template .alp-store-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--alp-stroke);
  padding: 11px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.alp-store-template .alp-store-card-price {
  font-size: 14px;
  font-weight: 800;
}

body.alp-store-template .alp-store-card-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.alp-store-template .alp-store-card-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  color: var(--alp-text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

body.alp-store-template .alp-store-card-icon-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

body.alp-store-template .alp-store-card-icon-btn:hover {
  border-color: color-mix(in srgb, var(--alp-secondary) 56%, var(--alp-stroke));
  color: var(--alp-text-primary);
  background: color-mix(in srgb, var(--alp-secondary) 18%, var(--alp-bg-card));
}

body.alp-store-template .alp-store-card-icon-btn.is-wishlist.is-active {
  border-color: color-mix(in srgb, var(--alp-primary) 64%, var(--alp-stroke));
  color: var(--alp-primary);
  background: color-mix(in srgb, var(--alp-primary) 15%, var(--alp-bg-card));
}

body.alp-store-template .alp-store-card-icon-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

body.alp-store-template .alp-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 20px;
  border: 1px solid var(--alp-divider);
  border-radius: var(--alp-radius-xl);
  padding: clamp(20px, 2.4vw, 34px);
  background:
    radial-gradient(700px 320px at 6% 2%, color-mix(in srgb, var(--alp-secondary) 30%, transparent), transparent 72%),
    radial-gradient(700px 320px at 92% 4%, color-mix(in srgb, var(--alp-primary) 26%, transparent), transparent 70%),
    color-mix(in srgb, var(--alp-bg-section) 93%, transparent);
  box-shadow: var(--alp-shadow-card);
}

body.alp-store-template .alp-home-hero-copy {
  align-self: center;
}

body.alp-store-template .alp-home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid color-mix(in srgb, var(--alp-secondary) 54%, var(--alp-divider));
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 12px;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-home-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--alp-primary);
}

body.alp-store-template .alp-home-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

body.alp-store-template .alp-home-badge {
  min-width: 66px;
  min-height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  background: color-mix(in srgb, var(--alp-secondary) 88%, black 12%);
  color: #dbe3ff;
  font-size: 0.56em;
  font-weight: 800;
  vertical-align: baseline;
}

body.alp-store-template .alp-home-subline {
  margin: 12px 0 0;
  font-size: 16px;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-home-description {
  margin: 14px 0 0;
  max-width: 560px;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-home-actions {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

body.alp-store-template .alp-home-hero-cards {
  min-width: 0;
}

body.alp-store-template .alp-market-carousel {
  position: relative;
}

body.alp-store-template .alp-market-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

body.alp-store-template .alp-market-carousel-track .alp-store-card {
  scroll-snap-align: start;
}

body.alp-store-template .alp-market-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--alp-divider);
  background: color-mix(in srgb, var(--alp-bg-section) 88%, transparent);
  color: var(--alp-text-primary);
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

body.alp-store-template .alp-market-carousel-btn.is-prev {
  left: -12px;
}

body.alp-store-template .alp-market-carousel-btn.is-next {
  right: -12px;
}

body.alp-store-template .alp-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
body.alp-store-template .alp-category-card {
  border: 1px solid var(--alp-stroke);
  border-radius: var(--alp-radius-md);
  padding: 10px;
  background: color-mix(in srgb, var(--alp-bg-card) 90%, transparent);
  display: grid;
  gap: 8px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

body.alp-store-template .alp-category-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--alp-primary) 52%, var(--alp-stroke));
}

body.alp-store-template .alp-category-thumb {
  height: 80px;
  border-radius: 11px;
  border: 1px solid color-mix(in srgb, var(--alp-divider) 60%, transparent);
  background: linear-gradient(155deg, #2f3b6f 0%, #24304f 100%);
}

body.alp-store-template .alp-category-thumb.cat-3d { background: linear-gradient(155deg, #3648a6, #20243f); }
body.alp-store-template .alp-category-thumb.cat-animation { background: linear-gradient(155deg, #6034a6, #2f204f); }
body.alp-store-template .alp-category-thumb.cat-color { background: linear-gradient(155deg, #a15d27, #4c2b17); }
body.alp-store-template .alp-category-thumb.cat-easing { background: linear-gradient(155deg, #17757e, #11343f); }
body.alp-store-template .alp-category-thumb.cat-effect { background: linear-gradient(155deg, #6f2f7f, #32203f); }
body.alp-store-template .alp-category-thumb.cat-glitch { background: linear-gradient(155deg, #7e3342, #3f1f2a); }
body.alp-store-template .alp-category-thumb.cat-templates { background: linear-gradient(155deg, #38495f, #1f2732); }
body.alp-store-template .alp-category-thumb.cat-text { background: linear-gradient(155deg, #5f5338, #2f2b1f); }
body.alp-store-template .alp-category-thumb.cat-transition { background: linear-gradient(155deg, #2f6f67, #1f3f3a); }
body.alp-store-template .alp-category-thumb.cat-utility { background: linear-gradient(155deg, #5f2f2f, #2f1f1f); }

body.alp-store-template .alp-category-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--alp-text-primary);
}

body.alp-store-template .alp-trusted-section {
  text-align: center;
}

body.alp-store-template .alp-trusted-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body.alp-store-template .alp-trusted-title-wrap h2 {
  margin: 0;
  font-size: 18px;
}

body.alp-store-template .alp-line {
  width: 80px;
  height: 1px;
  background: var(--alp-divider);
}

body.alp-store-template .alp-trusted-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

body.alp-store-template .alp-trusted-pill {
  min-height: 34px;
  border: 1px solid var(--alp-stroke);
  border-radius: 999px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--alp-text-secondary);
  display: inline-flex;
  align-items: center;
  background: color-mix(in srgb, var(--alp-bg-card) 84%, transparent);
}

body.alp-store-template .alp-market-value-strip {
  border: 1px solid color-mix(in srgb, var(--alp-primary) 42%, var(--alp-divider));
  border-radius: var(--alp-radius-lg);
  background:
    radial-gradient(900px 320px at 6% -10%, color-mix(in srgb, var(--alp-primary) 22%, transparent), transparent 70%),
    radial-gradient(900px 320px at 94% -10%, color-mix(in srgb, var(--alp-secondary) 22%, transparent), transparent 70%),
    color-mix(in srgb, var(--alp-bg-section) 94%, transparent);
}

body.alp-store-template .alp-market-value-inner {
  text-align: center;
  padding: clamp(26px, 3.4vw, 44px);
  display: grid;
  gap: 10px;
  justify-items: center;
}

body.alp-store-template .alp-market-value-kicker {
  font-size: 12px;
  font-weight: 800;
  color: var(--alp-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.alp-store-template .alp-market-value-inner h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

body.alp-store-template .alp-market-value-inner p {
  margin: 0;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-faq-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 18px;
}

body.alp-store-template .alp-faq-intro h2,
body.alp-store-template .alp-pricing-faq h2,
body.alp-store-template .alp-faq-cta h2 {
  margin: 0;
}

body.alp-store-template .alp-faq-intro p,
body.alp-store-template .alp-pricing-faq p,
body.alp-store-template .alp-faq-cta p {
  margin-top: 8px;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-faq-list {
  display: grid;
  gap: 10px;
}

body.alp-store-template .alp-faq-list details {
  border: 1px solid var(--alp-stroke);
  border-radius: 14px;
  background: color-mix(in srgb, var(--alp-bg-card) 90%, transparent);
  padding: 0 14px;
}

body.alp-store-template .alp-faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--alp-text-primary);
}

body.alp-store-template .alp-faq-list details p {
  margin: 0;
  padding: 0 0 14px;
  color: var(--alp-text-secondary);
  font-size: 13px;
}

body.alp-store-template .alp-faq-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

body.alp-store-template .alp-browse-hero,
body.alp-store-template .alp-support-hero,
body.alp-store-template .alp-account-hero,
body.alp-store-template .alp-pricing-hero,
body.alp-store-template .alp-faq-hero {
  border: 1px solid var(--alp-divider);
  border-radius: var(--alp-radius-lg);
  padding: clamp(20px, 2.8vw, 32px);
  background:
    radial-gradient(760px 260px at 0% -20%, color-mix(in srgb, var(--alp-secondary) 20%, transparent), transparent 72%),
    radial-gradient(760px 260px at 100% -20%, color-mix(in srgb, var(--alp-primary) 18%, transparent), transparent 74%),
    color-mix(in srgb, var(--alp-bg-section) 94%, transparent);
}

body.alp-store-template .alp-browse-hero h1,
body.alp-store-template .alp-support-hero h1,
body.alp-store-template .alp-account-hero h1,
body.alp-store-template .alp-pricing-hero h1,
body.alp-store-template .alp-faq-hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

body.alp-store-template .alp-browse-hero p,
body.alp-store-template .alp-support-hero p,
body.alp-store-template .alp-account-hero p,
body.alp-store-template .alp-pricing-hero p,
body.alp-store-template .alp-faq-hero p {
  margin: 10px 0 0;
  color: var(--alp-text-secondary);
  max-width: 760px;
}

body.alp-store-template .alp-browse-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.alp-store-template .alp-browse-chip {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  color: var(--alp-text-secondary);
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

body.alp-store-template .alp-browse-chip:hover,
body.alp-store-template .alp-browse-chip.is-active {
  border-color: color-mix(in srgb, var(--alp-primary) 56%, var(--alp-stroke));
  color: var(--alp-text-primary);
  background: color-mix(in srgb, var(--alp-primary) 14%, var(--alp-bg-card));
}

body.alp-store-template .alp-browse-toolbar {
  border: 1px solid var(--alp-stroke);
  border-radius: var(--alp-radius-md);
  padding: 12px;
  background: color-mix(in srgb, var(--alp-bg-section) 90%, transparent);
  display: grid;
  grid-template-columns: minmax(210px, 1.8fr) repeat(4, minmax(130px, 1fr)) auto;
  gap: 8px;
  align-items: center;
}

body.alp-store-template .alp-browse-toolbar input,
body.alp-store-template .alp-browse-toolbar select,
body.alp-store-template .alp-support-form input,
body.alp-store-template .alp-support-form select,
body.alp-store-template .alp-support-form textarea,
body.alp-store-template .alp-faq-search input,
body.alp-store-template .alp-store-footer form input {
  width: 100%;
  min-height: 40px;
  border-radius: 12px;
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 92%, transparent);
  color: var(--alp-text-primary);
  font-size: 13px;
  padding: 0 12px;
  outline: none;
}

body.alp-store-template .alp-browse-toolbar select,
body.alp-store-template .alp-support-form select {
  padding-right: 30px;
}
body.alp-store-template .alp-browse-toolbar input::placeholder,
body.alp-store-template .alp-support-form input::placeholder,
body.alp-store-template .alp-support-form textarea::placeholder,
body.alp-store-template .alp-faq-search input::placeholder,
body.alp-store-template .alp-store-footer form input::placeholder {
  color: var(--alp-text-disabled);
}

body.alp-store-template .alp-browse-toolbar input:focus,
body.alp-store-template .alp-browse-toolbar select:focus,
body.alp-store-template .alp-support-form input:focus,
body.alp-store-template .alp-support-form select:focus,
body.alp-store-template .alp-support-form textarea:focus,
body.alp-store-template .alp-faq-search input:focus,
body.alp-store-template .alp-store-footer form input:focus {
  border-color: color-mix(in srgb, var(--alp-secondary) 65%, var(--alp-stroke));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--alp-secondary) 20%, transparent);
}

body.alp-store-template .alp-browse-result-bar {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--alp-text-secondary);
  font-size: 14px;
}

body.alp-store-template .alp-browse-result-bar strong {
  color: var(--alp-text-primary);
}

body.alp-store-template .alp-store-empty,
body.alp-store-template .alp-support-empty,
body.alp-store-template .alp-account-empty,
body.alp-store-template .alp-pricing-empty {
  border: 1px dashed var(--alp-stroke);
  border-radius: var(--alp-radius-md);
  padding: 22px;
  text-align: center;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

body.alp-store-template .alp-page-pill {
  min-width: 34px;
  min-height: 34px;
  border-radius: 10px;
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  color: var(--alp-text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

body.alp-store-template .alp-page-pill.is-active,
body.alp-store-template .alp-page-pill:hover {
  border-color: color-mix(in srgb, var(--alp-primary) 56%, var(--alp-stroke));
  color: var(--alp-text-primary);
}

body.alp-store-template .alp-support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
  gap: 14px;
  align-items: start;
}

body.alp-store-template .alp-support-column-main,
body.alp-store-template .alp-support-column-side {
  display: grid;
  gap: 14px;
}

body.alp-store-template .alp-support-card {
  padding: 20px;
}

body.alp-store-template .alp-support-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

body.alp-store-template .alp-support-card-head h2 {
  margin: 0;
  font-size: 22px;
}

body.alp-store-template .alp-support-card-head span {
  font-size: 12px;
  color: var(--alp-text-disabled);
}

body.alp-store-template .alp-support-form {
  display: grid;
  gap: 12px;
}

body.alp-store-template .alp-support-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.alp-store-template .alp-support-form label span {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-support-form textarea {
  min-height: 132px;
  padding: 10px 12px;
  resize: vertical;
}

body.alp-store-template .alp-support-counter {
  font-style: normal;
  font-size: 11px;
  color: var(--alp-text-disabled);
}

body.alp-store-template .alp-support-presets {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

body.alp-store-template .alp-support-preset-btn,
body.alp-store-template .alp-faq-action-btn,
body.alp-store-template .alp-billing-pill {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid var(--alp-stroke);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--alp-text-secondary);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  cursor: pointer;
}

body.alp-store-template .alp-support-preset-btn:hover,
body.alp-store-template .alp-faq-action-btn:hover,
body.alp-store-template .alp-billing-pill:hover,
body.alp-store-template .alp-billing-pill.is-active {
  border-color: color-mix(in srgb, var(--alp-secondary) 54%, var(--alp-stroke));
  color: var(--alp-text-primary);
}

body.alp-store-template .alp-support-ticket-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px auto;
  gap: 8px;
  margin-bottom: 12px;
}

body.alp-store-template .alp-support-ticket-list {
  display: grid;
  gap: 9px;
}

body.alp-store-template .alp-ticket-row {
  border: 1px solid var(--alp-stroke);
  border-radius: 12px;
  padding: 12px;
  background: color-mix(in srgb, var(--alp-bg-card) 90%, transparent);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

body.alp-store-template .alp-ticket-row strong {
  display: block;
  font-size: 14px;
}

body.alp-store-template .alp-ticket-row p {
  margin: 5px 0 0;
  font-size: 12px;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-ticket-meta {
  text-align: right;
  font-size: 11px;
  color: var(--alp-text-disabled);
}

body.alp-store-template .alp-ticket-meta em {
  display: block;
  font-style: normal;
  margin-top: 3px;
}

body.alp-store-template .alp-support-card-sticky {
  position: sticky;
  top: 118px;
}

body.alp-store-template .alp-support-card-sticky h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

body.alp-store-template .alp-support-card-sticky ol {
  margin: 0;
  padding-left: 18px;
  color: var(--alp-text-secondary);
  display: grid;
  gap: 7px;
}

body.alp-store-template .alp-support-card-sticky p {
  margin-top: 12px;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-support-status {
  margin-top: 8px;
  min-height: 22px;
  border-radius: 10px;
  padding: 2px 8px;
  font-size: 12px;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-support-status.is-success {
  color: color-mix(in srgb, var(--alp-success) 84%, #fff);
  background: color-mix(in srgb, var(--alp-success) 12%, transparent);
}

body.alp-store-template .alp-support-status.is-error {
  color: color-mix(in srgb, var(--alp-error) 84%, #fff);
  background: color-mix(in srgb, var(--alp-error) 12%, transparent);
}

body.alp-store-template .alp-support-status.is-loading {
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-honeypot {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
}
body.alp-store-template .alp-account-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body.alp-store-template .alp-account-stats article {
  border: 1px solid var(--alp-stroke);
  border-radius: 14px;
  padding: 14px;
  background: color-mix(in srgb, var(--alp-bg-section) 92%, transparent);
  display: grid;
  gap: 4px;
}

body.alp-store-template .alp-account-stats span {
  font-size: 11px;
  color: var(--alp-text-disabled);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.alp-store-template .alp-account-stats strong {
  font-size: 24px;
  line-height: 1;
}

body.alp-store-template .alp-account-grid,
body.alp-store-template .alp-account-detail-grid,
body.alp-store-template .alp-pricing-grid,
body.alp-store-template .alp-pricing-compare-grid,
body.alp-store-template .alp-account-wishlist-grid {
  display: grid;
  gap: 12px;
}

body.alp-store-template .alp-account-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.alp-store-template .alp-account-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.alp-store-template .alp-account-card {
  padding: 18px;
}

body.alp-store-template .alp-account-card h2 {
  margin: 0;
  font-size: 20px;
}

body.alp-store-template .alp-account-profile {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.alp-store-template .alp-account-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--alp-gradient);
  color: #111217;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.alp-store-template .alp-account-profile p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-account-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.alp-store-template .alp-account-links {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

body.alp-store-template .alp-account-links a {
  min-height: 36px;
  border-radius: 11px;
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-account-links a:hover {
  color: var(--alp-text-primary);
}

body.alp-store-template .alp-account-license-input {
  margin-top: 12px;
  width: 100%;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--alp-primary) 44%, var(--alp-stroke));
  background: color-mix(in srgb, var(--alp-primary) 10%, var(--alp-bg-card));
  color: var(--alp-text-primary);
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 12px;
  padding: 0 12px;
}

body.alp-store-template .alp-account-table {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

body.alp-store-template .alp-account-row {
  border: 1px solid var(--alp-stroke);
  border-radius: 11px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
}

body.alp-store-template .alp-account-row span,
body.alp-store-template .alp-account-row em,
body.alp-store-template .alp-account-row a {
  color: var(--alp-text-secondary);
  font-style: normal;
}

body.alp-store-template .alp-account-row a:hover {
  color: var(--alp-primary);
}

body.alp-store-template .alp-account-wishlist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

body.alp-store-template .alp-account-wishlist-head a {
  font-size: 12px;
  font-weight: 700;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-account-wishlist-empty {
  color: var(--alp-text-disabled);
  font-size: 13px;
}

body.alp-store-template .alp-account-wishlist-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.alp-store-template .alp-wishlist-mini-card {
  border: 1px solid var(--alp-stroke);
  border-radius: 12px;
  background: color-mix(in srgb, var(--alp-bg-card) 90%, transparent);
  overflow: hidden;
}

body.alp-store-template .alp-wishlist-mini-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: color-mix(in srgb, var(--alp-secondary) 24%, var(--alp-bg-card));
}

body.alp-store-template .alp-wishlist-mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.alp-store-template .alp-wishlist-mini-body {
  padding: 10px;
  display: grid;
  gap: 4px;
}

body.alp-store-template .alp-wishlist-mini-body strong {
  font-size: 13px;
  line-height: 1.35;
}

body.alp-store-template .alp-wishlist-mini-body span {
  color: var(--alp-text-secondary);
  font-size: 12px;
}

body.alp-store-template .alp-pricing-toggle-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

body.alp-store-template .alp-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.alp-store-template .alp-plan-card {
  border: 1px solid var(--alp-stroke);
  border-radius: var(--alp-radius-md);
  padding: 18px;
  background: color-mix(in srgb, var(--alp-bg-section) 92%, transparent);
  display: grid;
  gap: 12px;
}

body.alp-store-template .alp-plan-card.is-current {
  border-color: color-mix(in srgb, var(--alp-primary) 56%, var(--alp-stroke));
  box-shadow: var(--alp-shadow-soft);
}

body.alp-store-template .alp-plan-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.alp-store-template .alp-plan-card h2 {
  margin: 0;
  font-size: 22px;
}

body.alp-store-template .alp-plan-pill {
  min-height: 24px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--alp-primary) 46%, var(--alp-stroke));
  background: color-mix(in srgb, var(--alp-primary) 12%, var(--alp-bg-card));
  font-size: 10px;
  font-weight: 800;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
}

body.alp-store-template .alp-plan-desc {
  margin: 0;
  color: var(--alp-text-secondary);
  font-size: 13px;
}

body.alp-store-template .alp-plan-price {
  display: grid;
  gap: 2px;
}

body.alp-store-template .alp-plan-price strong {
  font-size: 30px;
  line-height: 1;
}

body.alp-store-template .alp-plan-price span,
body.alp-store-template .alp-plan-price em,
body.alp-store-template .alp-plan-price small {
  color: var(--alp-text-secondary);
  font-style: normal;
  font-size: 12px;
}

body.alp-store-template .alp-plan-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

body.alp-store-template .alp-plan-card li {
  font-size: 13px;
  color: var(--alp-text-secondary);
  padding-left: 18px;
  position: relative;
}

body.alp-store-template .alp-plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--alp-primary) 75%, #ffd84d);
}

body.alp-store-template .alp-pricing-compare-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.alp-store-template .alp-pricing-compare-grid div {
  border: 1px solid var(--alp-stroke);
  border-radius: 13px;
  padding: 14px;
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
}

body.alp-store-template .alp-pricing-compare-grid h3 {
  margin: 0;
  font-size: 15px;
}

body.alp-store-template .alp-pricing-compare-grid p {
  margin: 6px 0 0;
  color: var(--alp-text-secondary);
  font-size: 12px;
}
body.alp-store-template .alp-pricing-compare-actions {
  margin-top: 14px;
}

body.alp-store-template .alp-faq-shell {
  padding: clamp(18px, 2.6vw, 30px);
}

body.alp-store-template .alp-faq-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

body.alp-store-template .alp-faq-search input {
  min-height: 44px;
}

body.alp-store-template .alp-faq-toolbar-actions {
  display: inline-flex;
  gap: 6px;
}

body.alp-store-template .alp-faq-count {
  justify-self: end;
  font-size: 12px;
  color: var(--alp-text-disabled);
}

body.alp-store-template .alp-faq-cta {
  text-align: center;
  display: grid;
  gap: 10px;
  justify-items: center;
}

body.alp-store-template .alp-single-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 16px;
}

body.alp-store-template .alp-single-gallery,
body.alp-store-template .alp-single-content {
  border: 1px solid var(--alp-stroke);
  border-radius: var(--alp-radius-lg);
  background: color-mix(in srgb, var(--alp-bg-section) 92%, transparent);
  padding: clamp(16px, 2vw, 24px);
}

body.alp-store-template .alp-single-main-media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 15px;
  overflow: hidden;
  background: color-mix(in srgb, var(--alp-secondary) 24%, var(--alp-bg-card));
  border: 1px solid var(--alp-stroke);
}

body.alp-store-template .alp-single-main-media img,
body.alp-store-template .alp-single-fallback {
  width: 100%;
  height: 100%;
}

body.alp-store-template .alp-single-main-media img {
  object-fit: cover;
}

body.alp-store-template .alp-single-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  font-weight: 800;
  color: color-mix(in srgb, var(--alp-text-primary) 88%, transparent);
}

body.alp-store-template .alp-single-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(2, 2, 6, 0.62);
  color: #f0ecdf;
}

body.alp-store-template .alp-single-thumb-row {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

body.alp-store-template .alp-single-thumb-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--alp-stroke);
}

body.alp-store-template .alp-single-program {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-single-content h1 {
  margin: 14px 0 0;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1;
}

body.alp-store-template .alp-single-content p {
  margin: 12px 0 0;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-single-meta {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.alp-store-template .alp-single-meta span {
  min-height: 28px;
  border-radius: 999px;
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-single-price {
  margin-top: 14px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
}

body.alp-store-template .alp-single-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.alp-store-template .alp-single-note {
  margin-top: 14px;
  color: var(--alp-text-disabled);
  font-size: 12px;
}

body.alp-store-template .alp-single-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.alp-store-template .alp-single-panel h2 {
  margin: 0;
  font-size: 22px;
}

body.alp-store-template .alp-single-panel ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--alp-text-secondary);
  display: grid;
  gap: 6px;
}

body.alp-store-template .alp-single-panel p {
  margin: 10px 0 0;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-store-footer {
  position: relative;
  border-top: 1px solid var(--alp-divider);
  margin-top: 60px;
  background: color-mix(in srgb, var(--alp-bg-base) 95%, transparent);
  overflow: hidden;
}

body.alp-store-template .alp-store-footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 240px at 10% 0%, color-mix(in srgb, var(--alp-primary) 12%, transparent), transparent 74%),
    radial-gradient(700px 240px at 90% 0%, color-mix(in srgb, var(--alp-secondary) 12%, transparent), transparent 74%);
  pointer-events: none;
}

body.alp-store-template .alp-store-footer-inner {
  position: relative;
  width: min(1320px, 94vw);
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 16px;
}

body.alp-store-template .alp-store-footer-brand a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

body.alp-store-template .alp-store-footer-brand img {
  height: 40px;
  width: auto;
}

body.alp-store-template .alp-store-footer p,
body.alp-store-template .alp-store-footer small {
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-store-footer-col h4 {
  margin: 0 0 10px;
  font-size: 14px;
}

body.alp-store-template .alp-store-footer-col a {
  display: flex;
  min-height: 30px;
  align-items: center;
  font-size: 13px;
  color: var(--alp-text-secondary);
}

body.alp-store-template .alp-store-footer-col a:hover {
  color: var(--alp-primary);
}

body.alp-store-template .alp-store-footer form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

body.alp-store-template .alp-store-footer form button {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--alp-primary) 64%, var(--alp-divider));
  background: var(--alp-gradient);
  color: #111217;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
}

body.alp-store-template .alp-store-footer-connect {
  margin-top: 10px;
  display: flex;
  gap: 7px;
}

body.alp-store-template .alp-store-footer-connect a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--alp-stroke);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

body.alp-store-template .alp-store-footer-connect a:hover {
  border-color: color-mix(in srgb, var(--alp-secondary) 56%, var(--alp-stroke));
}

@media (max-width: 1320px) {
  body.alp-store-template .alp-market-card-grid,
  body.alp-store-template .alp-browse-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.alp-store-template .alp-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  body.alp-store-template .aa-store-header-left,
  body.alp-store-template .aa-store-search {
    display: none;
  }

  body.alp-store-template .aa-store-header-inner {
    grid-template-columns: auto 1fr;
  }

  body.alp-store-template .aa-store-header-right {
    justify-content: flex-end;
  }

  body.alp-store-template .aa-store-mobile-open {
    display: inline-flex;
  }

  body.alp-store-template .alp-store-shell {
    padding-top: 116px;
  }

  body.alp-store-template .alp-home-hero,
  body.alp-store-template .alp-support-layout,
  body.alp-store-template .alp-single-hero,
  body.alp-store-template .alp-single-panels {
    grid-template-columns: 1fr;
  }

  body.alp-store-template .alp-account-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.alp-store-template .alp-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.alp-store-template .alp-pricing-compare-grid,
  body.alp-store-template .alp-store-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.alp-store-template .alp-market-card-grid,
  body.alp-store-template .alp-browse-grid,
  body.alp-store-template .alp-category-grid,
  body.alp-store-template .alp-account-detail-grid,
  body.alp-store-template .alp-pricing-grid,
  body.alp-store-template .alp-pricing-compare-grid,
  body.alp-store-template .alp-account-wishlist-grid,
  body.alp-store-template .alp-store-footer-inner {
    grid-template-columns: 1fr;
  }

  body.alp-store-template .alp-browse-toolbar,
  body.alp-store-template .alp-support-ticket-filter,
  body.alp-store-template .alp-faq-toolbar {
    grid-template-columns: 1fr;
  }

  body.alp-store-template .alp-faq-count {
    justify-self: start;
  }

  body.alp-store-template .alp-support-grid-two,
  body.alp-store-template .aa-store-cart-actions {
    grid-template-columns: 1fr;
  }

  body.alp-store-template .aa-store-license-btn,
  body.alp-store-template .aa-store-user-btn {
    display: none;
  }

  body.alp-store-template .aa-store-theme-toggle span[data-aa-theme-label] {
    display: none;
  }
}

@media (max-width: 640px) {
  body.alp-store-template .aa-store-btn,
  body.alp-store-template .alp-btn,
  body.alp-store-template .aa-store-cart-btn {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  body.alp-store-template .alp-home-hero h1,
  body.alp-store-template .alp-single-content h1,
  body.alp-store-template .alp-browse-hero h1,
  body.alp-store-template .alp-support-hero h1,
  body.alp-store-template .alp-account-hero h1,
  body.alp-store-template .alp-pricing-hero h1,
  body.alp-store-template .alp-faq-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  body.alp-store-template .alp-account-grid {
    grid-template-columns: 1fr;
  }

  body.alp-store-template .alp-store-shell {
    padding-top: 104px;
  }
}
/* =========================================================
   Header Refinement (PluginPlay-like)
   ========================================================= */
body.alp-store-template .aa-header-store {
  height: 80px;
}

body.alp-store-template .aa-header-store .header-bg {
  background: color-mix(in srgb, var(--alp-bg-base) 88%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--alp-divider) 82%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

body.alp-store-template .aa-header-store.is-scrolled .header-bg {
  background: color-mix(in srgb, var(--alp-bg-base) 93%, transparent);
  border-bottom-color: color-mix(in srgb, var(--alp-divider) 92%, transparent);
}

body.alp-store-template .aa-store-header-inner {
  width: min(1280px, 96vw);
  height: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
}

body.alp-store-template .aa-store-header-cluster {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

body.alp-store-template .aa-store-brand {
  height: 34px;
  min-width: auto;
}

body.alp-store-template .aa-store-header-divider {
  width: 1px;
  height: 24px;
  background: color-mix(in srgb, var(--alp-divider) 90%, transparent);
}

body.alp-store-template .aa-store-header-left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.alp-store-template .aa-store-dd-btn,
body.alp-store-template .aa-store-inline-link {
  min-height: 34px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--alp-text-secondary);
}

body.alp-store-template .aa-store-dd-btn {
  border: 1px solid transparent;
  background: transparent;
  padding: 0 10px;
}

body.alp-store-template .aa-store-dd-btn:hover,
body.alp-store-template .aa-store-dd-btn:focus-visible,
body.alp-store-template .aa-store-dropdown.is-open .aa-store-dd-btn,
body.alp-store-template .aa-store-inline-link:hover,
body.alp-store-template .aa-store-inline-link:focus-visible {
  background: color-mix(in srgb, var(--alp-bg-card) 76%, transparent);
  border-color: color-mix(in srgb, var(--alp-stroke) 80%, transparent);
  color: var(--alp-text-primary);
}

body.alp-store-template .aa-store-inline-link {
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
}

body.alp-store-template .aa-store-dd-arrow {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.alp-store-template .aa-store-dd-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.alp-store-template .aa-store-dd-panel {
  top: calc(100% + 9px);
  border-radius: 12px;
  background: color-mix(in srgb, var(--alp-bg-section) 96%, transparent);
  border-color: color-mix(in srgb, var(--alp-divider) 94%, transparent);
}

body.alp-store-template .aa-store-dd-panel a {
  min-height: 32px;
  font-size: 13px;
}

body.alp-store-template .aa-store-search {
  position: relative;
  flex: 1 1 auto;
  max-width: 42rem;
  margin-inline: auto;
}

body.alp-store-template .aa-store-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--alp-text-disabled);
  pointer-events: none;
}

body.alp-store-template .aa-store-search-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.alp-store-template .aa-store-search input {
  min-height: 40px;
  border-radius: 10px;
  border-color: color-mix(in srgb, var(--alp-stroke) 90%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 74%, transparent);
  font-size: 15px;
  padding: 0 12px 0 34px;
}

body.alp-store-template .aa-store-search input:focus {
  border-color: color-mix(in srgb, var(--alp-secondary) 66%, var(--alp-stroke));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--alp-secondary) 20%, transparent);
}

body.alp-store-template .aa-store-header-right {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

body.alp-store-template .aa-store-desktop-only {
  display: inline-flex;
}

body.alp-store-template .aa-store-license-btn,
body.alp-store-template .aa-store-top-link,
body.alp-store-template .aa-store-theme-toggle,
body.alp-store-template .aa-store-cart-btn,
body.alp-store-template .aa-store-user-btn,
body.alp-store-template .aa-store-btn {
  min-height: 34px;
  border-radius: 8px;
}

body.alp-store-template .aa-store-license-btn {
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 85%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 76%, transparent);
  gap: 8px;
  padding: 0 10px;
}

body.alp-store-template .aa-store-license-label {
  font-size: 10px;
  letter-spacing: 0.08em;
}

body.alp-store-template .aa-store-license-btn code {
  max-width: 132px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  font-size: 10px;
}

body.alp-store-template .aa-store-top-link {
  padding: 0 10px;
  border: 1px solid transparent;
  color: var(--alp-text-secondary);
}

body.alp-store-template .aa-store-top-link:hover {
  border-color: color-mix(in srgb, var(--alp-stroke) 86%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 74%, transparent);
  color: var(--alp-text-primary);
}

body.alp-store-template .aa-store-btn {
  min-height: 34px;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 13px;
}

body.alp-store-template .aa-store-theme-toggle {
  padding: 0 10px;
  border-color: color-mix(in srgb, var(--alp-stroke) 86%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 74%, transparent);
  font-size: 12px;
}

body.alp-store-template .aa-store-theme-dot {
  width: 9px;
  height: 9px;
}

body.alp-store-template .aa-store-user-dropdown .aa-store-dd-panel {
  right: 0;
  left: auto;
}

body.alp-store-template .aa-store-user-btn {
  padding: 0 8px;
  border-color: color-mix(in srgb, var(--alp-stroke) 90%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 70%, transparent);
  gap: 6px;
}

body.alp-store-template .aa-store-avatar-icon {
  width: 24px;
  height: 24px;
  font-size: 11px;
}

body.alp-store-template .aa-store-user-meta {
  display: none;
}

body.alp-store-template .aa-store-cart-btn {
  padding: 0 10px;
  border-color: color-mix(in srgb, var(--alp-secondary) 48%, var(--alp-stroke));
  background: color-mix(in srgb, var(--alp-secondary) 12%, var(--alp-bg-card));
}

body.alp-store-template .aa-store-cart-btn strong {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
}

body.alp-store-template .aa-store-mobile-open {
  display: none;
}

body.alp-store-template .aa-store-mobile-search {
  position: relative;
  padding: 10px 14px 0;
}

body.alp-store-template .aa-store-mobile-search input {
  width: 100%;
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid var(--alp-stroke);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  color: var(--alp-text-primary);
  padding: 0 12px 0 34px;
}

body.alp-store-template .aa-store-mobile-search .aa-store-search-icon {
  left: 24px;
}

body.alp-store-template .aa-store-mobile-panel {
  grid-template-rows: auto auto 1fr;
}

@media (max-width: 1180px) {
  body.alp-store-template .aa-store-header-divider,
  body.alp-store-template .aa-store-header-left,
  body.alp-store-template .aa-store-search,
  body.alp-store-template .aa-store-desktop-only {
    display: none !important;
  }

  body.alp-store-template .aa-store-header-inner {
    justify-content: space-between;
  }

  body.alp-store-template .aa-store-theme-toggle span[data-aa-theme-label] {
    display: none;
  }

  body.alp-store-template .aa-store-mobile-open {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  body.alp-store-template .aa-store-cart-btn span {
    display: none;
  }

  body.alp-store-template .aa-store-theme-toggle,
  body.alp-store-template .aa-store-user-dropdown {
    display: none;
  }
}
/* =========================================================
   Header Final (User requested)
   ========================================================= */
body.alp-store-template .aa-store-header-inner {
  width: min(1280px, 94vw);
}

body.alp-store-template .aa-store-dd-menu-link,
body.alp-store-template .aa-store-inline-link,
body.alp-store-template .aa-store-mobile-nav a {
  gap: 9px;
}

body.alp-store-template .aa-store-menu-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--alp-text-disabled);
  flex-shrink: 0;
}

body.alp-store-template .aa-store-menu-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.alp-store-template .aa-store-menu-text {
  line-height: 1;
}

body.alp-store-template .aa-store-dd-menu-link:hover .aa-store-menu-icon,
body.alp-store-template .aa-store-inline-link:hover .aa-store-menu-icon {
  color: var(--alp-text-primary);
}

body.alp-store-template .aa-store-search {
  max-width: 34rem;
}

body.alp-store-template .aa-store-search input,
body.alp-store-template .aa-store-mobile-search input {
  height: 40px;
  min-height: 40px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 88%, transparent);
  padding: 0 12px 0 34px;
  font-size: 14px;
  color: var(--alp-text-primary);
  background: color-mix(in srgb, var(--alp-bg-base) 62%, transparent);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

body.alp-store-template .aa-store-search input:focus,
body.alp-store-template .aa-store-mobile-search input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--alp-secondary) 62%, var(--alp-stroke));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--alp-secondary) 20%, transparent);
}

body.alp-store-template .aa-store-search input::placeholder,
body.alp-store-template .aa-store-mobile-search input::placeholder {
  color: var(--alp-text-disabled);
}

body.alp-store-template .aa-store-user-btn {
  width: 34px;
  min-width: 34px;
  height: 34px;
  padding: 0;
  justify-content: center;
}

body.alp-store-template .aa-store-avatar-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
}

body.alp-store-template .aa-store-avatar-icon img,
body.alp-store-template .aa-store-dd-account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.alp-store-template .aa-store-dd-account {
  width: 248px;
  min-width: 248px;
  padding: 8px 0;
  border-radius: 12px;
  background: color-mix(in srgb, var(--alp-bg-section) 98%, transparent);
}

body.alp-store-template .aa-store-dd-account-head {
  padding: 0 12px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.alp-store-template .aa-store-dd-account-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 88%, transparent);
  flex-shrink: 0;
}

body.alp-store-template .aa-store-dd-account-head strong {
  font-size: 13px;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

body.alp-store-template .aa-store-dd-account-head span {
  margin-top: 2px;
  display: block;
  font-size: 12px;
  color: var(--alp-text-secondary);
  line-height: 1.2;
}

body.alp-store-template .aa-store-dd-account-head span em {
  margin-left: 6px;
  font-style: normal;
  color: var(--alp-text-disabled);
  font-size: 11px;
  text-transform: lowercase;
}

body.alp-store-template .aa-store-dd-sep {
  height: 1px;
  background: color-mix(in srgb, var(--alp-divider) 90%, transparent);
  margin: 4px 0;
}

body.alp-store-template .aa-store-dd-item {
  width: 100%;
  border: 0;
  background: transparent;
  min-height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-size: 14px;
  color: var(--alp-text-primary);
  cursor: pointer;
}

body.alp-store-template .aa-store-dd-item:hover,
body.alp-store-template .aa-store-dd-item:focus-visible {
  background: color-mix(in srgb, var(--alp-bg-card) 82%, transparent);
}

body.alp-store-template .aa-store-dd-item-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--alp-text-secondary);
  flex-shrink: 0;
}

body.alp-store-template .aa-store-dd-item-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.alp-store-template .aa-store-dd-item.is-logout,
body.alp-store-template .aa-store-dd-item.is-logout .aa-store-dd-item-icon {
  color: var(--alp-error);
}

body.alp-store-template .aa-store-mobile-license {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 88%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 90%, transparent);
  color: var(--alp-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

body.alp-store-template .aa-store-trial-ico {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.alp-store-template .aa-store-trial-ico svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.alp-store-template .aa-store-mobile-nav .is-logout {
  color: var(--alp-error);
}

body.alp-store-template .aa-store-license-open {
  min-width: 74px;
}

body.alp-store-template .aa-store-license-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 8, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 100007;
}

body.alp-store-template .aa-store-license-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.alp-store-template .aa-store-license-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(380px, calc(100vw - 24px));
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  border: 1px solid color-mix(in srgb, var(--alp-divider) 90%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--alp-bg-section) 98%, transparent);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  z-index: 100008;
  padding: 14px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.alp-store-template .aa-store-license-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

body.alp-store-template .aa-store-license-modal > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

body.alp-store-template .aa-store-license-modal h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

body.alp-store-template .aa-store-license-modal > header button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 90%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 88%, transparent);
  color: var(--alp-text-secondary);
  cursor: pointer;
}

body.alp-store-template .aa-store-license-modal p {
  margin: 0;
  color: var(--alp-text-secondary);
  font-size: 13px;
  line-height: 1.45;
}

body.alp-store-template .aa-store-license-modal label {
  margin-top: 12px;
  margin-bottom: 6px;
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--alp-text-secondary);
}

body.alp-store-template .aa-store-license-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

body.alp-store-template .aa-store-license-field input {
  min-height: 36px;
  border-radius: 9px;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 88%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 90%, transparent);
  color: var(--alp-text-primary);
  padding: 0 10px;
  font-size: 12px;
  font-family: "JetBrains Mono", "Consolas", monospace;
}

body.alp-store-template .aa-store-license-field button {
  min-width: 58px;
  min-height: 36px;
  border-radius: 9px;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 88%, transparent);
  background: #ece6db;
  color: #12121f;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

body.alp-store-template .aa-store-license-field button.is-copied {
  background: color-mix(in srgb, var(--alp-success) 20%, #ece6db);
}

body.alp-store-template.aa-store-license-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  body.alp-store-template .aa-store-inline-link,
  body.alp-store-template .aa-store-desktop-only {
    display: none !important;
  }
}

/* =========================================================
   Header Icons + Footer Compact Fix
   ========================================================= */
body.alp-store-template .aa-store-icon-btn {
  width: 34px;
  min-width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 90%, transparent);
  border-radius: 9px;
  background: color-mix(in srgb, var(--alp-bg-card) 78%, transparent);
  color: var(--alp-text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

body.alp-store-template .aa-store-icon-btn:hover,
body.alp-store-template .aa-store-icon-btn:focus-visible {
  border-color: color-mix(in srgb, var(--alp-secondary) 60%, var(--alp-stroke));
  background: color-mix(in srgb, var(--alp-secondary) 14%, var(--alp-bg-card));
  color: var(--alp-text-primary);
}

body.alp-store-template .aa-store-mode-btn,
body.alp-store-template .aa-store-cart-btn {
  width: 34px;
  min-width: 34px;
  height: 34px;
  padding: 0;
}

body.alp-store-template .aa-store-mode-icon,
body.alp-store-template .aa-store-cart-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.alp-store-template .aa-store-mode-icon svg,
body.alp-store-template .aa-store-cart-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.alp-store-template .aa-store-user-btn {
  border-radius: 999px;
  padding: 0;
}

body.alp-store-template .aa-store-user-btn .aa-store-dd-arrow {
  display: none;
}

body.alp-store-template .aa-store-cart-btn strong {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  position: absolute;
  top: -6px;
  right: -6px;
  border: 1px solid color-mix(in srgb, var(--alp-bg-base) 84%, transparent);
  background: var(--alp-secondary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 0 5px;
}

body.alp-store-template #footer.alp-store-footer {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin-top: 28px;
  padding: 0;
}

body.alp-store-template #footer.alp-store-footer .alp-store-footer-inner {
  width: min(1280px, 94vw);
  padding: 24px 0 20px;
  gap: 20px;
  align-items: start;
}

body.alp-store-template #footer.alp-store-footer .alp-store-footer-brand p,
body.alp-store-template #footer.alp-store-footer .alp-store-footer-brand small,
body.alp-store-template #footer.alp-store-footer .alp-store-footer-col p,
body.alp-store-template #footer.alp-store-footer .alp-store-footer-col a,
body.alp-store-template #footer.alp-store-footer .alp-store-footer-connect a {
  color: var(--alp-text-secondary) !important;
}

body.alp-store-template #footer.alp-store-footer .alp-store-footer-col h4 {
  margin: 0 0 8px;
  color: var(--alp-text-primary) !important;
}

body.alp-store-template #footer.alp-store-footer .alp-store-footer-col a {
  min-height: 28px;
  font-weight: 500;
}

body.alp-store-template #footer.alp-store-footer .alp-store-footer-col a:hover,
body.alp-store-template #footer.alp-store-footer .alp-store-footer-connect a:hover {
  color: var(--alp-text-primary) !important;
}

@media (max-width: 900px) {
  body.alp-store-template .aa-store-user-dropdown {
    display: inline-flex !important;
  }

  body.alp-store-template #footer.alp-store-footer .alp-store-footer-inner {
    padding: 20px 0 16px;
    gap: 14px;
  }
}

/* =========================================================
   Store Header Expert Pass
   ========================================================= */
body.alp-store-template .aa-store-header-inner {
  gap: 10px !important;
}

body.alp-store-template .aa-store-header-right {
  gap: 8px !important;
}

body.alp-store-template .aa-store-dd-btn.aa-store-btn,
body.alp-store-template .aa-store-chip-btn {
  min-height: 36px !important;
  border-radius: 10px !important;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 88%, transparent) !important;
  background: color-mix(in srgb, var(--alp-bg-card) 76%, transparent) !important;
  color: var(--alp-text-primary) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px !important;
}

body.alp-store-template .aa-store-dd-btn.aa-store-btn:hover,
body.alp-store-template .aa-store-dd-btn.aa-store-btn:focus-visible,
body.alp-store-template .aa-store-chip-btn:hover,
body.alp-store-template .aa-store-chip-btn:focus-visible {
  border-color: color-mix(in srgb, var(--alp-secondary) 62%, var(--alp-stroke)) !important;
  background: color-mix(in srgb, var(--alp-secondary) 14%, var(--alp-bg-card)) !important;
}

body.alp-store-template .aa-store-search {
  max-width: 36rem !important;
}

body.alp-store-template .aa-store-search .aa-store-search-input,
body.alp-store-template .aa-store-mobile-search .aa-store-search-input {
  width: 100% !important;
  min-height: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 90%, transparent) !important;
  background: color-mix(in srgb, var(--alp-bg-base) 64%, transparent) !important;
  color: var(--alp-text-primary) !important;
  padding: 0 12px 0 34px !important;
  font-size: 14px !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #ffffff 3%, transparent);
}

body.alp-store-template .aa-store-search .aa-store-search-input::placeholder,
body.alp-store-template .aa-store-mobile-search .aa-store-search-input::placeholder {
  color: var(--alp-text-disabled) !important;
}

body.alp-store-template .aa-store-search .aa-store-search-input:focus,
body.alp-store-template .aa-store-mobile-search .aa-store-search-input:focus {
  outline: none !important;
  border-color: color-mix(in srgb, var(--alp-secondary) 64%, var(--alp-stroke)) !important;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--alp-secondary) 20%, transparent) !important;
}

body.alp-store-template .aa-store-icon-btn {
  border-radius: 10px !important;
}

body.alp-store-template .aa-store-cart-btn,
body.alp-store-template .aa-store-mode-btn {
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
}

body.alp-store-template .aa-store-user-btn {
  min-width: 44px !important;
  width: auto !important;
  height: 36px !important;
  padding: 0 7px !important;
  gap: 4px !important;
}

body.alp-store-template .aa-store-cart-btn {
  border-color: color-mix(in srgb, var(--alp-secondary) 55%, var(--alp-stroke)) !important;
  background: color-mix(in srgb, var(--alp-secondary) 12%, var(--alp-bg-card)) !important;
}

body.alp-store-template .aa-store-mode-icon i,
body.alp-store-template .aa-store-cart-icon i,
body.alp-store-template .aa-store-menu-icon i,
body.alp-store-template .aa-store-dd-item-icon i {
  font-size: 13px;
  line-height: 1;
}

body.alp-store-template .aa-store-menu-icon,
body.alp-store-template .aa-store-dd-item-icon {
  color: var(--alp-text-secondary);
}

body.alp-store-template .aa-store-user-dropdown .aa-store-dd-panel {
  right: 0;
  left: auto;
}

body.alp-store-template .aa-store-user-btn .aa-store-dd-arrow {
  display: inline-flex !important;
  width: 11px;
  height: 11px;
  color: var(--alp-text-secondary);
}

body.alp-store-template .aa-store-dd-account {
  width: 284px !important;
  min-width: 284px !important;
}

body.alp-store-template .aa-store-dd-account-head {
  padding: 4px 12px 10px !important;
}

body.alp-store-template .aa-store-dd-account-head strong {
  color: var(--alp-text-primary);
}

body.alp-store-template .aa-store-dd-account-head span {
  color: var(--alp-text-secondary) !important;
}

body.alp-store-template .aa-store-dd-item {
  min-height: 40px !important;
  align-items: center;
  color: var(--alp-text-primary) !important;
}

body.alp-store-template .aa-store-dd-item:hover,
body.alp-store-template .aa-store-dd-item:focus-visible {
  background: color-mix(in srgb, var(--alp-bg-card) 86%, transparent) !important;
}

body.alp-store-template .aa-store-dd-item.is-logout {
  color: var(--alp-error) !important;
}

body.alp-store-template .aa-store-mobile-nav a,
body.alp-store-template .aa-store-mobile-nav button {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 86%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 82%, transparent);
  color: var(--alp-text-primary);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 12px;
}

body.alp-store-template .aa-store-mobile-theme {
  justify-content: space-between !important;
}

body.alp-store-template .aa-store-mobile-nav .is-logout {
  color: var(--alp-error) !important;
}

body.alp-store-template .aa-store-license-overlay {
  background: rgba(3, 4, 9, 0.66) !important;
}

body.alp-store-template .aa-store-license-modal {
  width: min(420px, calc(100vw - 24px)) !important;
  border-radius: 14px !important;
  border: 1px solid color-mix(in srgb, var(--alp-divider) 92%, transparent) !important;
  background: color-mix(in srgb, var(--alp-bg-section) 97%, transparent) !important;
  padding: 16px !important;
}

body.alp-store-template .aa-store-license-modal h3 {
  font-size: 26px !important;
  line-height: 1.1;
}

body.alp-store-template .aa-store-license-modal p,
body.alp-store-template .aa-store-license-modal label {
  color: var(--alp-text-secondary) !important;
}

body.alp-store-template .aa-store-license-field input {
  min-height: 38px !important;
  border-radius: 10px !important;
}

body.alp-store-template .aa-store-license-field button {
  min-height: 38px !important;
  border-radius: 10px !important;
}

body.alp-store-template .aa-store-cart-drawer,
body.alp-store-template .aa-store-cart-drawer h3,
body.alp-store-template .aa-store-cart-drawer span,
body.alp-store-template .aa-store-cart-drawer strong,
body.alp-store-template .aa-store-cart-drawer p,
body.alp-store-template .aa-store-cart-drawer small {
  color: var(--alp-text-primary) !important;
}

@media (max-width: 1180px) {
  body.alp-store-template .aa-store-header-divider,
  body.alp-store-template .aa-store-header-left,
  body.alp-store-template .aa-store-search,
  body.alp-store-template .aa-store-desktop-only,
  body.alp-store-template .aa-store-user-dropdown,
  body.alp-store-template .aa-store-mode-btn {
    display: none !important;
  }

  body.alp-store-template .aa-store-mobile-open {
    display: inline-flex !important;
  }
}

@media (max-width: 900px) {
  body.alp-store-template .aa-store-cart-btn {
    display: inline-flex !important;
  }
}

body.alp-store-template .alp-account-row.is-download-row {
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

body.alp-store-template .alp-account-row-main {
  display: grid;
  gap: 3px;
}

body.alp-store-template .alp-account-row-main strong {
  color: var(--alp-text-primary);
}

body.alp-store-template .alp-account-row-main span,
body.alp-store-template .alp-account-row-main em {
  color: var(--alp-text-secondary);
  font-style: normal;
}

body.alp-store-template .alp-account-row-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================================================
   Unified Glass Footer
   ========================================================= */

body.alp-store-template .aa-site-footer {
  margin-top: 26px !important;
  border-top: 1px solid var(--alp-divider) !important;
  color: var(--alp-text-primary) !important;
  background:
    radial-gradient(620px 180px at 8% 0%, color-mix(in srgb, var(--alp-primary) 12%, transparent), transparent 74%),
    radial-gradient(620px 180px at 92% 0%, color-mix(in srgb, var(--alp-secondary) 12%, transparent), transparent 74%),
    color-mix(in srgb, var(--alp-bg-base) 96%, transparent) !important;
}

body.alp-store-template .aa-site-footer .aa-footer-brand p,
body.alp-store-template .aa-site-footer .aa-footer-brand small,
body.alp-store-template .aa-site-footer .aa-footer-brand strong,
body.alp-store-template .aa-site-footer .aa-footer-nav a,
body.alp-store-template .aa-site-footer .aa-footer-social a {
  color: var(--alp-text-secondary) !important;
}

body.alp-store-template .aa-site-footer .aa-footer-nav a,
body.alp-store-template .aa-site-footer .aa-footer-social a {
  border-color: var(--alp-stroke) !important;
  background: color-mix(in srgb, var(--alp-bg-card) 84%, transparent) !important;
}

body.alp-store-template .aa-site-footer .aa-footer-nav a:hover,
body.alp-store-template .aa-site-footer .aa-footer-social a:hover {
  color: var(--alp-text-primary) !important;
  border-color: color-mix(in srgb, var(--alp-primary) 60%, var(--alp-stroke)) !important;
  background: color-mix(in srgb, var(--alp-primary) 12%, var(--alp-bg-card)) !important;
}

body.alp-store-template .aa-store-license-modal h3 {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 34px !important;
  font-weight: 800 !important;
}

body.alp-store-template .aa-store-license-field button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

body.alp-store-template .aa-store-license-field button i {
  font-size: 12px;
}

/* =========================================================
   Store UI Harmonization
   ========================================================= */
body.alp-store-template {
  --aa-store-radius-control: 10px;
  --aa-store-radius-panel: 14px;
  --aa-store-radius-card: 16px;
}

body.alp-store-template .aa-store-btn,
body.alp-store-template .aa-store-dd-btn,
body.alp-store-template .aa-store-chip-btn,
body.alp-store-template .aa-store-icon-btn,
body.alp-store-template .aa-store-search .aa-store-search-input,
body.alp-store-template .aa-store-mobile-search .aa-store-search-input,
body.alp-store-template .aa-store-mobile-nav a,
body.alp-store-template .aa-store-mobile-nav button,
body.alp-store-template .aa-store-license-field input,
body.alp-store-template .aa-store-license-field button,
body.alp-store-template .aa-store-cart-actions .aa-store-btn,
body.alp-store-template .alp-btn {
  border-radius: var(--aa-store-radius-control) !important;
}

body.alp-store-template .aa-store-dd-panel,
body.alp-store-template .aa-store-license-modal,
body.alp-store-template .aa-store-cart-drawer,
body.alp-store-template .alp-market-section,
body.alp-store-template .alp-support-card,
body.alp-store-template .alp-account-card,
body.alp-store-template .alp-pricing-compare,
body.alp-store-template .alp-faq-shell,
body.alp-store-template .alp-faq-cta,
body.alp-store-template .alp-single-panel,
body.alp-store-template .alp-store-card {
  border-radius: var(--aa-store-radius-panel) !important;
}

body.alp-store-template .aa-store-dd-item,
body.alp-store-template .aa-store-menu-text,
body.alp-store-template .aa-store-top-link,
body.alp-store-template .alp-store-card h3,
body.alp-store-template .alp-store-card p,
body.alp-store-template .alp-account-row span,
body.alp-store-template .alp-account-row em,
body.alp-store-template .alp-account-row a {
  line-height: 1.35;
}

/* =========================================================
   Visual Reference Pass (Neon Glass System)
   ========================================================= */
body.alp-store-template {
  --aa-panel-shadow:
    0 18px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --aa-panel-glass:
    linear-gradient(
      165deg,
      color-mix(in srgb, var(--alp-bg-card) 92%, rgba(255, 255, 255, 0.05)) 0%,
      color-mix(in srgb, var(--alp-bg-section) 94%, rgba(255, 255, 255, 0.02)) 100%
    );
}

body.alp-store-template .alp-store-shell {
  position: relative;
  overflow: clip;
}

body.alp-store-template .alp-store-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 300px at 12% -10%, rgba(76, 111, 255, 0.24), transparent 72%),
    radial-gradient(900px 300px at 92% -14%, rgba(245, 124, 31, 0.2), transparent 74%),
    repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 38px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 38px
    );
  opacity: 0.5;
  z-index: 0;
}

body.alp-store-template .alp-store-main > * {
  position: relative;
  z-index: 1;
}

body.alp-store-template .alp-home-hero,
body.alp-store-template .alp-browse-hero,
body.alp-store-template .alp-support-hero,
body.alp-store-template .alp-account-hero,
body.alp-store-template .alp-pricing-hero,
body.alp-store-template .alp-faq-hero,
body.alp-store-template .alp-market-section,
body.alp-store-template .alp-support-card,
body.alp-store-template .alp-account-card,
body.alp-store-template .alp-pricing-compare,
body.alp-store-template .alp-faq-shell,
body.alp-store-template .alp-faq-cta,
body.alp-store-template .alp-single-panel {
  background: var(--aa-panel-glass) !important;
  border: 1px solid color-mix(in srgb, var(--alp-divider) 88%, rgba(255, 255, 255, 0.06)) !important;
  box-shadow: var(--aa-panel-shadow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

body.alp-store-template .alp-home-hero h1,
body.alp-store-template .alp-browse-hero h1,
body.alp-store-template .alp-support-hero h1,
body.alp-store-template .alp-account-hero h1,
body.alp-store-template .alp-pricing-hero h1,
body.alp-store-template .alp-faq-hero h1,
body.alp-store-template .alp-single-content h1 {
  letter-spacing: -0.022em;
  font-weight: 760;
  text-wrap: balance;
}

body.alp-store-template .alp-home-subline,
body.alp-store-template .alp-home-description,
body.alp-store-template .alp-browse-hero p,
body.alp-store-template .alp-support-hero p,
body.alp-store-template .alp-account-hero p,
body.alp-store-template .alp-pricing-hero p,
body.alp-store-template .alp-faq-hero p {
  color: color-mix(in srgb, var(--alp-text-secondary) 92%, #ffffff 8%) !important;
}

body.alp-store-template .alp-home-badge {
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--alp-primary) 58%, var(--alp-stroke));
  background:
    linear-gradient(130deg, rgba(245, 124, 31, 0.26), rgba(255, 216, 77, 0.26)),
    color-mix(in srgb, var(--alp-bg-card) 86%, transparent);
  box-shadow: 0 10px 24px rgba(245, 124, 31, 0.26);
}

body.alp-store-template .alp-section-head {
  margin-bottom: 14px;
}

body.alp-store-template .alp-section-head h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.018em;
}

body.alp-store-template .alp-section-head a {
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 86%, transparent);
  border-radius: 999px;
  padding: 7px 12px;
  background: color-mix(in srgb, var(--alp-bg-card) 76%, transparent);
  font-size: 12px;
  font-weight: 700;
}

body.alp-store-template .alp-section-head a:hover {
  border-color: color-mix(in srgb, var(--alp-primary) 58%, var(--alp-stroke));
  background: color-mix(in srgb, var(--alp-primary) 12%, var(--alp-bg-card));
}

body.alp-store-template .alp-market-carousel {
  padding: 6px 40px;
}

body.alp-store-template .alp-market-carousel-track {
  gap: 12px;
}

body.alp-store-template .alp-market-carousel-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 86%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 82%, transparent);
}

body.alp-store-template .alp-market-carousel-btn:hover {
  border-color: color-mix(in srgb, var(--alp-secondary) 58%, var(--alp-stroke));
  background: color-mix(in srgb, var(--alp-secondary) 14%, var(--alp-bg-card));
}

body.alp-store-template .alp-store-card {
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 84%, rgba(255, 255, 255, 0.06));
  background:
    linear-gradient(
      160deg,
      color-mix(in srgb, var(--alp-bg-card) 94%, rgba(255, 255, 255, 0.06)),
      color-mix(in srgb, var(--alp-bg-section) 96%, rgba(255, 255, 255, 0.02))
    ) !important;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

body.alp-store-template .alp-store-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  pointer-events: none;
}

body.alp-store-template .alp-store-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--alp-secondary) 50%, var(--alp-stroke));
  box-shadow:
    0 24px 42px rgba(0, 0, 0, 0.42),
    0 0 0 1px color-mix(in srgb, var(--alp-secondary) 22%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.alp-store-template .alp-store-card-media {
  border-bottom: 1px solid color-mix(in srgb, var(--alp-stroke) 76%, transparent);
}

body.alp-store-template .alp-store-card-program-badge,
body.alp-store-template .alp-store-card-plan-badge {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

body.alp-store-template .alp-store-card h3 {
  font-size: 17px;
}

body.alp-store-template .alp-store-card p {
  font-size: 13px;
}

body.alp-store-template .alp-store-card-icon-btn {
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 84%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--alp-bg-card) 80%, transparent);
}

body.alp-store-template .alp-store-card-icon-btn:hover {
  border-color: color-mix(in srgb, var(--alp-primary) 56%, var(--alp-stroke));
  background: color-mix(in srgb, var(--alp-primary) 10%, var(--alp-bg-card));
}

body.alp-store-template .alp-store-card-icon-btn svg {
  width: 16px;
  height: 16px;
}

body.alp-store-template .alp-browse-chip-row {
  margin-top: -6px;
}

body.alp-store-template .alp-browse-chip {
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 84%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 82%, transparent);
  font-size: 12px;
  font-weight: 700;
}

body.alp-store-template .alp-browse-toolbar,
body.alp-store-template .alp-support-ticket-filter,
body.alp-store-template .alp-faq-toolbar {
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--alp-divider) 86%, rgba(255, 255, 255, 0.05));
  background:
    linear-gradient(
      160deg,
      color-mix(in srgb, var(--alp-bg-section) 94%, rgba(255, 255, 255, 0.04)),
      color-mix(in srgb, var(--alp-bg-card) 92%, rgba(255, 255, 255, 0.02))
    );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.alp-store-template .alp-browse-toolbar input,
body.alp-store-template .alp-browse-toolbar select,
body.alp-store-template .alp-support-form input,
body.alp-store-template .alp-support-form select,
body.alp-store-template .alp-support-form textarea,
body.alp-store-template .alp-support-ticket-filter input,
body.alp-store-template .alp-support-ticket-filter select,
body.alp-store-template .alp-faq-search input,
body.alp-store-template .alp-account-license-input {
  min-height: 40px;
  border-radius: 10px !important;
  border-color: color-mix(in srgb, var(--alp-stroke) 86%, transparent) !important;
  background: color-mix(in srgb, var(--alp-bg-card) 84%, transparent) !important;
}

body.alp-store-template .alp-support-form textarea {
  min-height: 140px;
  padding-top: 10px;
  padding-bottom: 10px;
}

body.alp-store-template .alp-support-preset-btn,
body.alp-store-template .alp-faq-action-btn,
body.alp-store-template .alp-billing-pill,
body.alp-store-template .alp-page-pill {
  border-radius: 10px !important;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 84%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 82%, transparent);
}

body.alp-store-template .alp-ticket-row,
body.alp-store-template .alp-account-row {
  border-radius: 12px;
  border-color: color-mix(in srgb, var(--alp-stroke) 84%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 86%, transparent);
}

body.alp-store-template .alp-account-stats article {
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 84%, transparent);
  background:
    linear-gradient(
      160deg,
      color-mix(in srgb, var(--alp-bg-card) 92%, rgba(255, 255, 255, 0.06)),
      color-mix(in srgb, var(--alp-bg-section) 94%, rgba(255, 255, 255, 0.03))
    );
  box-shadow: var(--aa-panel-shadow);
}

body.alp-store-template .alp-account-avatar {
  box-shadow: 0 8px 24px rgba(76, 111, 255, 0.35);
}

body.alp-store-template .alp-plan-card {
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 84%, transparent);
  background:
    linear-gradient(
      160deg,
      color-mix(in srgb, var(--alp-bg-card) 94%, rgba(255, 255, 255, 0.06)),
      color-mix(in srgb, var(--alp-bg-section) 94%, rgba(255, 255, 255, 0.03))
    );
  box-shadow: var(--aa-panel-shadow);
}

body.alp-store-template .alp-plan-card.is-current {
  border-color: color-mix(in srgb, var(--alp-primary) 68%, var(--alp-stroke));
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.46),
    0 0 0 1px color-mix(in srgb, var(--alp-primary) 24%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.alp-store-template .alp-plan-pill {
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--alp-primary) 64%, var(--alp-stroke));
  background: color-mix(in srgb, var(--alp-primary) 15%, var(--alp-bg-card));
}

body.alp-store-template .alp-plan-price strong {
  background: var(--alp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.alp-store-template .alp-faq-list details {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 84%, transparent);
  background:
    linear-gradient(
      160deg,
      color-mix(in srgb, var(--alp-bg-card) 92%, rgba(255, 255, 255, 0.05)),
      color-mix(in srgb, var(--alp-bg-section) 92%, rgba(255, 255, 255, 0.02))
    );
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

body.alp-store-template .alp-faq-list details[open] {
  border-color: color-mix(in srgb, var(--alp-secondary) 52%, var(--alp-stroke));
}

body.alp-store-template .alp-single-main-media {
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 84%, transparent);
  background:
    radial-gradient(80% 80% at 0% 0%, rgba(76, 111, 255, 0.2), transparent 70%),
    radial-gradient(80% 80% at 100% 100%, rgba(245, 124, 31, 0.18), transparent 72%),
    color-mix(in srgb, var(--alp-bg-card) 94%, rgba(255, 255, 255, 0.02));
}

body.alp-store-template .aa-store-cart-drawer {
  background:
    linear-gradient(
      160deg,
      color-mix(in srgb, var(--alp-bg-section) 95%, rgba(255, 255, 255, 0.05)),
      color-mix(in srgb, var(--alp-bg-card) 95%, rgba(255, 255, 255, 0.03))
    ) !important;
}

body.alp-store-template .aa-store-cart-item {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 82%, transparent);
  background: color-mix(in srgb, var(--alp-bg-card) 86%, transparent);
}

body.alp-store-template .aa-store-cart-actions .aa-store-btn-primary {
  box-shadow: 0 10px 26px rgba(245, 124, 31, 0.3);
}

body.alp-store-template .aa-store-mobile-panel {
  background:
    linear-gradient(
      165deg,
      color-mix(in srgb, var(--alp-bg-section) 97%, rgba(255, 255, 255, 0.04)),
      color-mix(in srgb, var(--alp-bg-card) 95%, rgba(255, 255, 255, 0.02))
    );
}

body.alp-store-template .aa-store-reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.99);
  transition:
    opacity 0.45s ease,
    transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--aa-reveal-delay, 0ms);
}

body.alp-store-template .aa-store-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  body.alp-store-template .aa-store-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   Final Header + Footer Corrections
   ========================================================= */
body.alp-store-template .aa-store-main-nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

body.alp-store-template .aa-store-main-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  font-size: 14px;
  font-weight: 600;
  color: var(--alp-text-primary);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

body.alp-store-template .aa-store-main-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--alp-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s cubic-bezier(0.7, 0, 0.3, 1);
}

body.alp-store-template .aa-store-main-link:hover,
body.alp-store-template .aa-store-main-link:focus-visible {
  color: var(--alp-primary);
}

body.alp-store-template .aa-store-main-link:hover::after,
body.alp-store-template .aa-store-main-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

body.alp-store-template .aa-store-search {
  max-width: 40rem !important;
}

body.alp-store-template .aa-store-search .aa-store-search-input,
body.alp-store-template .aa-store-mobile-search .aa-store-search-input {
  min-height: 40px !important;
  height: 40px !important;
  border-radius: 12px !important;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 88%, transparent) !important;
  background: color-mix(in srgb, var(--alp-bg-base) 58%, transparent) !important;
  color: var(--alp-text-primary) !important;
  font-size: 14px !important;
  padding: 0 14px 0 36px !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #ffffff 3%, transparent);
}

body.alp-store-template .aa-store-search .aa-store-search-input::placeholder,
body.alp-store-template .aa-store-mobile-search .aa-store-search-input::placeholder {
  color: color-mix(in srgb, var(--alp-text-secondary) 72%, transparent) !important;
}

body.alp-store-template .aa-store-search .aa-store-search-input:focus,
body.alp-store-template .aa-store-mobile-search .aa-store-search-input:focus {
  border-color: color-mix(in srgb, var(--alp-secondary) 64%, var(--alp-stroke)) !important;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--alp-secondary) 18%, transparent) !important;
}

body.alp-store-template .aa-store-search-icon {
  left: 12px !important;
  color: var(--alp-text-secondary) !important;
}

body.alp-store-template .aa-store-chip-btn {
  min-height: 36px !important;
  border-radius: 10px !important;
  border: 1px solid color-mix(in srgb, var(--alp-stroke) 88%, transparent) !important;
  background: color-mix(in srgb, var(--alp-bg-card) 78%, transparent) !important;
  color: var(--alp-text-primary) !important;
}

body.alp-store-template .aa-store-chip-btn:hover,
body.alp-store-template .aa-store-chip-btn:focus-visible {
  border-color: color-mix(in srgb, var(--alp-secondary) 60%, var(--alp-stroke)) !important;
  background: color-mix(in srgb, var(--alp-secondary) 13%, var(--alp-bg-card)) !important;
}

body.alp-store-template .aa-store-user-btn {
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  border-radius: 10px !important;
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.alp-store-template .aa-store-user-icon-plain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--alp-text-primary);
  font-size: 15px;
  line-height: 1;
}

body.alp-store-template .aa-store-user-btn:hover,
body.alp-store-template .aa-store-user-btn:focus-visible {
  border-color: transparent !important;
  background: transparent !important;
}

body.alp-store-template .aa-store-user-btn .aa-store-dd-arrow {
  display: none !important;
}

body.alp-store-template .aa-store-dd-account-head {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 6px 12px 10px !important;
}

body.alp-store-template .aa-store-dd-account-avatar {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: var(--alp-text-secondary);
  font-size: 14px;
  line-height: 1;
  margin-top: 3px;
}

body.alp-store-template .aa-store-dd-account-user {
  display: grid;
  gap: 3px;
  min-width: 0;
}

body.alp-store-template .aa-store-dd-account-user strong {
  color: var(--alp-text-primary);
  font-size: 14px;
  line-height: 1.2;
}

body.alp-store-template .aa-store-dd-account-user span {
  color: var(--alp-text-secondary) !important;
  font-size: 12px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

body.alp-store-template .aa-store-dd-account-user span em {
  margin-inline-start: 6px;
  color: var(--alp-text-disabled);
}

body.alp-store-template .aa-site-footer {
  height: auto !important;
  min-height: 0 !important;
  margin-top: 28px !important;
}

body.alp-store-template .aa-site-footer .aa-footer-inner {
  grid-template-columns: 1.35fr minmax(180px, 0.7fr) minmax(180px, 0.7fr) !important;
  gap: 22px !important;
  padding: 24px 0 22px !important;
}

body.alp-store-template .aa-site-footer .aa-footer-brand p,
body.alp-store-template .aa-site-footer .aa-footer-brand small {
  color: var(--alp-text-secondary) !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col h4 {
  color: var(--alp-text-primary) !important;
}

body.alp-store-template .aa-site-footer .aa-footer-links a {
  color: var(--alp-text-secondary) !important;
}

body.alp-store-template .aa-site-footer .aa-footer-links a:hover {
  color: var(--alp-text-primary) !important;
}

body.alp-store-template .aa-site-footer .aa-footer-social a {
  border-color: var(--alp-stroke) !important;
  background: color-mix(in srgb, var(--alp-bg-card) 84%, transparent) !important;
  color: var(--alp-text-secondary) !important;
}

body.alp-store-template .aa-site-footer .aa-footer-social a:hover {
  border-color: color-mix(in srgb, var(--alp-primary) 58%, var(--alp-stroke)) !important;
  background: color-mix(in srgb, var(--alp-primary) 12%, var(--alp-bg-card)) !important;
  color: var(--alp-text-primary) !important;
}

@media (min-width: 1025px) {
  body.alp-store-template .aa-store-header-left {
    display: inline-flex !important;
  }

  body.alp-store-template .aa-store-search {
    display: block !important;
  }

  body.alp-store-template .aa-store-desktop-only,
  body.alp-store-template .aa-store-user-dropdown,
  body.alp-store-template .aa-store-mode-btn {
    display: inline-flex !important;
  }

  body.alp-store-template .aa-store-mobile-open {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  body.alp-store-template .aa-store-header-divider,
  body.alp-store-template .aa-store-header-left,
  body.alp-store-template .aa-store-search,
  body.alp-store-template .aa-store-desktop-only,
  body.alp-store-template .aa-store-user-dropdown,
  body.alp-store-template .aa-store-mode-btn {
    display: none !important;
  }

  body.alp-store-template .aa-store-mobile-open {
    display: inline-flex !important;
  }
}

@media (max-width: 900px) {
  body.alp-store-template .aa-site-footer .aa-footer-inner {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    text-align: center;
  }

  body.alp-store-template .aa-site-footer .aa-footer-brand-link,
  body.alp-store-template .aa-site-footer .aa-footer-links a,
  body.alp-store-template .aa-site-footer .aa-footer-social {
    margin-inline: auto;
    justify-content: center;
  }
}

/* =========================================================
   Final Dark Solid Pass (No Gradients)
   ========================================================= */
body.alp-store-template:not(.alp-store-light),
body.alp-store-template:not(.alp-store-light) #page,
body.alp-store-template:not(.alp-store-light) .site-main,
body.alp-store-template:not(.alp-store-light) .alp-store-shell {
  background: #080812 !important;
  background-image: none !important;
}

body.alp-store-template:not(.alp-store-light) .alp-store-shell::before {
  display: none !important;
  background: none !important;
}

body.alp-store-template:not(.alp-store-light) .aa-header-store .header-bg,
body.alp-store-template:not(.alp-store-light) .aa-header-store.is-scrolled .header-bg {
  background: rgba(8, 8, 18, 0.92) !important;
  background-image: none !important;
}

body.alp-store-template:not(.alp-store-light) .alp-home-hero,
body.alp-store-template:not(.alp-store-light) .alp-browse-hero,
body.alp-store-template:not(.alp-store-light) .alp-support-hero,
body.alp-store-template:not(.alp-store-light) .alp-account-hero,
body.alp-store-template:not(.alp-store-light) .alp-pricing-hero,
body.alp-store-template:not(.alp-store-light) .alp-faq-hero,
body.alp-store-template:not(.alp-store-light) .alp-market-section,
body.alp-store-template:not(.alp-store-light) .alp-support-card,
body.alp-store-template:not(.alp-store-light) .alp-account-card,
body.alp-store-template:not(.alp-store-light) .alp-pricing-compare,
body.alp-store-template:not(.alp-store-light) .alp-faq-shell,
body.alp-store-template:not(.alp-store-light) .alp-faq-cta,
body.alp-store-template:not(.alp-store-light) .alp-single-panel,
body.alp-store-template:not(.alp-store-light) .alp-plan-card,
body.alp-store-template:not(.alp-store-light) .alp-account-stats article,
body.alp-store-template:not(.alp-store-light) .alp-store-card,
body.alp-store-template:not(.alp-store-light) .alp-market-value-strip,
body.alp-store-template:not(.alp-store-light) .alp-browse-toolbar,
body.alp-store-template:not(.alp-store-light) .alp-support-ticket-filter,
body.alp-store-template:not(.alp-store-light) .alp-faq-toolbar,
body.alp-store-template:not(.alp-store-light) .aa-store-mobile-panel,
body.alp-store-template:not(.alp-store-light) .aa-store-cart-drawer,
body.alp-store-template:not(.alp-store-light) .aa-store-license-modal {
  background: #12121f !important;
  background-image: none !important;
}

body.alp-store-template:not(.alp-store-light) .alp-store-card,
body.alp-store-template:not(.alp-store-light) .alp-store-card-media,
body.alp-store-template:not(.alp-store-light) .alp-store-card-footer,
body.alp-store-template:not(.alp-store-light) .alp-category-card,
body.alp-store-template:not(.alp-store-light) .alp-browse-chip,
body.alp-store-template:not(.alp-store-light) .alp-page-pill,
body.alp-store-template:not(.alp-store-light) .alp-store-card-icon-btn,
body.alp-store-template:not(.alp-store-light) .aa-store-icon-btn,
body.alp-store-template:not(.alp-store-light) .aa-store-dd-btn,
body.alp-store-template:not(.alp-store-light) .aa-store-chip-btn,
body.alp-store-template:not(.alp-store-light) .aa-store-dd-panel,
body.alp-store-template:not(.alp-store-light) .aa-store-mobile-nav a,
body.alp-store-template:not(.alp-store-light) .aa-store-mobile-nav button,
body.alp-store-template:not(.alp-store-light) .aa-store-search .aa-store-search-input,
body.alp-store-template:not(.alp-store-light) .aa-store-mobile-search .aa-store-search-input,
body.alp-store-template:not(.alp-store-light) .alp-browse-toolbar input,
body.alp-store-template:not(.alp-store-light) .alp-browse-toolbar select,
body.alp-store-template:not(.alp-store-light) .alp-support-form input,
body.alp-store-template:not(.alp-store-light) .alp-support-form select,
body.alp-store-template:not(.alp-store-light) .alp-support-form textarea,
body.alp-store-template:not(.alp-store-light) .alp-faq-search input,
body.alp-store-template:not(.alp-store-light) .alp-account-license-input {
  background-color: #1a1a2b !important;
  background-image: none !important;
}

body.alp-store-template .alp-market-value-kicker,
body.alp-store-template .alp-home-kicker,
body.alp-store-template .alp-home-badge,
body.alp-store-template .alp-store-card-plan-badge,
body.alp-store-template .alp-store-card-program-badge {
  background-image: none !important;
}

body.alp-store-template .aa-store-chip-btn .aa-store-menu-icon {
  display: none !important;
}

body.alp-store-template .aa-store-chip-btn {
  justify-content: center !important;
  padding: 0 14px !important;
  font-weight: 700 !important;
}

body.alp-store-template .aa-store-cart-btn {
  border-color: #f57c1f !important;
  background: rgba(245, 124, 31, 0.14) !important;
  color: #f5f2ea !important;
}

body.alp-store-template .aa-store-cart-btn strong {
  background: #f57c1f !important;
  border-color: #f57c1f !important;
  color: #f5f2ea !important;
}

body.alp-store-template:not(.alp-store-light) .aa-site-footer {
  background: #080812 !important;
  background-image: none !important;
}

/* =========================================================
   Awwward-Level Unified Component Pass
   ========================================================= */
body.alp-store-template {
  --aa-font-main: "Inter", "IBM Plex Sans Arabic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --aa-radius-xl: 18px;
  --aa-radius-lg: 14px;
  --aa-radius-md: 12px;
  --aa-radius-sm: 10px;
  --aa-radius-xs: 8px;
  --aa-shadow-1: 0 14px 30px rgba(0, 0, 0, 0.34);
  --aa-shadow-2: 0 8px 18px rgba(0, 0, 0, 0.28);
}

body.alp-store-template,
body.alp-store-template * {
  font-family: var(--aa-font-main) !important;
}

body.alp-store-template h1,
body.alp-store-template h2,
body.alp-store-template h3,
body.alp-store-template h4 {
  color: #f5f2ea !important;
  letter-spacing: -0.02em !important;
  line-height: 1.14 !important;
}

body.alp-store-template p,
body.alp-store-template span,
body.alp-store-template em,
body.alp-store-template small,
body.alp-store-template li,
body.alp-store-template label,
body.alp-store-template strong {
  color: #d9d4c8 !important;
}

body.alp-store-template strong {
  color: #f5f2ea !important;
}

body.alp-store-template .alp-store-main {
  width: min(1360px, 94vw) !important;
  gap: 24px !important;
}

body.alp-store-template .alp-store-main > section,
body.alp-store-template .alp-store-main > div {
  margin: 0 !important;
}

body.alp-store-template .alp-home-hero,
body.alp-store-template .alp-browse-hero,
body.alp-store-template .alp-support-hero,
body.alp-store-template .alp-account-hero,
body.alp-store-template .alp-pricing-hero,
body.alp-store-template .alp-faq-hero {
  border: 1px solid #2e2e46 !important;
  border-radius: var(--aa-radius-xl) !important;
  box-shadow: var(--aa-shadow-1) !important;
  padding: clamp(20px, 2.2vw, 30px) !important;
}

body.alp-store-template .alp-home-hero h1,
body.alp-store-template .alp-browse-hero h1,
body.alp-store-template .alp-support-hero h1,
body.alp-store-template .alp-account-hero h1,
body.alp-store-template .alp-pricing-hero h1,
body.alp-store-template .alp-faq-hero h1 {
  font-size: clamp(30px, 3.5vw, 54px) !important;
  margin: 0 0 10px !important;
}

body.alp-store-template .alp-home-subline,
body.alp-store-template .alp-home-description,
body.alp-store-template .alp-browse-hero p,
body.alp-store-template .alp-support-hero p,
body.alp-store-template .alp-account-hero p,
body.alp-store-template .alp-pricing-hero p,
body.alp-store-template .alp-faq-hero p {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #d9d4c8 !important;
}

body.alp-store-template .alp-market-section,
body.alp-store-template .alp-support-card,
body.alp-store-template .alp-account-card,
body.alp-store-template .alp-pricing-compare,
body.alp-store-template .alp-faq-shell,
body.alp-store-template .alp-faq-cta,
body.alp-store-template .alp-plan-card,
body.alp-store-template .alp-market-value-strip {
  border: 1px solid #2e2e46 !important;
  border-radius: var(--aa-radius-lg) !important;
  box-shadow: var(--aa-shadow-2) !important;
}

body.alp-store-template .alp-market-section,
body.alp-store-template .alp-pricing-compare,
body.alp-store-template .alp-faq-shell,
body.alp-store-template .alp-faq-cta,
body.alp-store-template .alp-market-value-strip {
  padding: clamp(16px, 1.8vw, 24px) !important;
}

body.alp-store-template .alp-section-head {
  margin-bottom: 14px !important;
  gap: 12px !important;
}

body.alp-store-template .alp-section-head h2 {
  margin: 0 !important;
  font-size: clamp(20px, 2.2vw, 30px) !important;
  font-weight: 800 !important;
}

body.alp-store-template .alp-section-head > a {
  min-height: 34px !important;
  border-radius: var(--aa-radius-sm) !important;
  border: 1px solid #2e2e46 !important;
  padding: 0 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #f5f2ea !important;
  background: #1a1a2b !important;
}

body.alp-store-template .alp-section-head > a:hover {
  border-color: #f57c1f !important;
  color: #f5f2ea !important;
}

body.alp-store-template .alp-btn,
body.alp-store-template .aa-store-btn {
  min-height: 38px !important;
  border-radius: var(--aa-radius-sm) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
}

body.alp-store-template .alp-btn-primary,
body.alp-store-template .aa-store-btn-primary {
  background: #f57c1f !important;
  border: 1px solid #f57c1f !important;
  color: #f5f2ea !important;
  box-shadow: none !important;
}

body.alp-store-template .alp-btn-primary:hover,
body.alp-store-template .aa-store-btn-primary:hover {
  background: #f79444 !important;
  border-color: #f79444 !important;
}

body.alp-store-template .alp-btn-ghost,
body.alp-store-template .aa-store-btn-ghost {
  background: #1a1a2b !important;
  border: 1px solid #2e2e46 !important;
  color: #f5f2ea !important;
}

body.alp-store-template .alp-btn-ghost:hover,
body.alp-store-template .aa-store-btn-ghost:hover {
  border-color: #f57c1f !important;
  color: #f5f2ea !important;
}

body.alp-store-template input,
body.alp-store-template select,
body.alp-store-template textarea,
body.alp-store-template .alp-account-license-input {
  min-height: 40px !important;
  border-radius: var(--aa-radius-sm) !important;
  border: 1px solid #2e2e46 !important;
  color: #f5f2ea !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  padding: 0 12px !important;
}

body.alp-store-template textarea {
  min-height: 130px !important;
  padding: 10px 12px !important;
  resize: vertical !important;
}

body.alp-store-template input::placeholder,
body.alp-store-template select::placeholder,
body.alp-store-template textarea::placeholder {
  color: #a8a49a !important;
}

body.alp-store-template input:focus,
body.alp-store-template select:focus,
body.alp-store-template textarea:focus {
  border-color: #f57c1f !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(245, 124, 31, 0.22) !important;
}

body.alp-store-template .alp-market-carousel {
  padding: 0 34px !important;
}

body.alp-store-template .alp-market-carousel-track {
  grid-auto-columns: minmax(270px, 1fr) !important;
  gap: 12px !important;
}

body.alp-store-template .alp-market-carousel-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: 999px !important;
  border: 1px solid #2e2e46 !important;
  background: #1a1a2b !important;
  color: #f5f2ea !important;
}

body.alp-store-template .alp-market-carousel-btn:hover {
  border-color: #f57c1f !important;
}

body.alp-store-template .alp-store-card {
  border-radius: var(--aa-radius-md) !important;
  border: 1px solid #2e2e46 !important;
  overflow: hidden !important;
  transition: transform 0.16s ease, border-color 0.16s ease !important;
}

body.alp-store-template .alp-store-card:hover {
  transform: translateY(-3px) !important;
  border-color: #f57c1f !important;
}

body.alp-store-template .alp-store-card-media {
  border-bottom: 1px solid #2e2e46 !important;
  aspect-ratio: 16/10 !important;
}

body.alp-store-template .alp-store-card-body {
  padding: 12px !important;
  gap: 8px !important;
}

body.alp-store-template .alp-store-card h3 {
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1.32 !important;
}

body.alp-store-template .alp-store-card p {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

body.alp-store-template .alp-store-card-price {
  color: #f5f2ea !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

body.alp-store-template .alp-store-card-program-badge,
body.alp-store-template .alp-store-card-plan-badge {
  min-height: 24px !important;
  border-radius: var(--aa-radius-xs) !important;
  border: 1px solid #2e2e46 !important;
  color: #f5f2ea !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  padding: 0 8px !important;
}

body.alp-store-template .alp-store-card-plan-badge {
  border-color: #f57c1f !important;
  color: #f5f2ea !important;
}

body.alp-store-template .alp-store-card-footer {
  border-top: 1px solid #2e2e46 !important;
  padding: 10px 12px !important;
}

body.alp-store-template .alp-store-card-icon-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: var(--aa-radius-xs) !important;
  border: 1px solid #2e2e46 !important;
  color: #f5f2ea !important;
  background: #1a1a2b !important;
}

body.alp-store-template .alp-store-card-icon-btn:hover {
  border-color: #f57c1f !important;
  color: #f5f2ea !important;
}

body.alp-store-template .alp-browse-chip-row,
body.alp-store-template .alp-pricing-toggle-row {
  gap: 8px !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

body.alp-store-template .alp-browse-chip,
body.alp-store-template .alp-billing-pill {
  min-height: 34px !important;
  border-radius: var(--aa-radius-sm) !important;
  border: 1px solid #2e2e46 !important;
  color: #d9d4c8 !important;
  background: #1a1a2b !important;
  padding: 0 12px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

body.alp-store-template .alp-browse-chip.is-active,
body.alp-store-template .alp-billing-pill.is-active {
  border-color: #f57c1f !important;
  color: #f5f2ea !important;
}

body.alp-store-template .alp-browse-toolbar {
  display: grid !important;
  grid-template-columns: minmax(220px, 1.7fr) repeat(4, minmax(120px, 1fr)) auto !important;
  gap: 8px !important;
  align-items: center !important;
  padding: 12px !important;
}

body.alp-store-template .alp-browse-result-bar {
  color: #d9d4c8 !important;
  font-size: 14px !important;
  margin-top: -4px !important;
}

body.alp-store-template .alp-browse-result-bar strong {
  color: #f5f2ea !important;
}

body.alp-store-template .alp-pagination {
  margin-top: 4px !important;
  gap: 7px !important;
}

body.alp-store-template .alp-page-pill {
  width: 34px !important;
  height: 34px !important;
  border-radius: var(--aa-radius-xs) !important;
  border: 1px solid #2e2e46 !important;
  color: #d9d4c8 !important;
}

body.alp-store-template .alp-page-pill.is-active {
  border-color: #f57c1f !important;
  color: #f5f2ea !important;
}

body.alp-store-template .alp-support-layout,
body.alp-store-template .alp-account-grid,
body.alp-store-template .alp-account-detail-grid,
body.alp-store-template .alp-pricing-grid,
body.alp-store-template .alp-pricing-compare-grid {
  gap: 12px !important;
}

body.alp-store-template .alp-account-stats {
  gap: 10px !important;
}

body.alp-store-template .alp-account-stats article {
  border-radius: var(--aa-radius-sm) !important;
  padding: 12px !important;
}

body.alp-store-template .alp-account-profile {
  gap: 10px !important;
}

body.alp-store-template .alp-account-avatar {
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px !important;
  border: 1px solid #2e2e46 !important;
  background: #1a1a2b !important;
  color: #f5f2ea !important;
}

body.alp-store-template .alp-account-table,
body.alp-store-template .alp-support-ticket-list {
  display: grid !important;
  gap: 8px !important;
}

body.alp-store-template .alp-account-row,
body.alp-store-template .alp-ticket-row {
  border: 1px solid #2e2e46 !important;
  border-radius: var(--aa-radius-sm) !important;
  background: #1a1a2b !important;
  padding: 10px 12px !important;
}

body.alp-store-template .alp-ticket-row p,
body.alp-store-template .alp-account-row span,
body.alp-store-template .alp-account-row em {
  color: #d9d4c8 !important;
}

body.alp-store-template .alp-plan-card header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
}

body.alp-store-template .alp-plan-pill {
  min-height: 24px !important;
  border-radius: var(--aa-radius-xs) !important;
  padding: 0 8px !important;
  border: 1px solid #f57c1f !important;
  color: #f5f2ea !important;
  background: rgba(245, 124, 31, 0.12) !important;
}

body.alp-store-template .alp-plan-price strong {
  color: #f5f2ea !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  background: none !important;
  -webkit-text-fill-color: #f5f2ea !important;
}

body.alp-store-template .alp-plan-price span,
body.alp-store-template .alp-plan-price em,
body.alp-store-template .alp-plan-price small {
  color: #d9d4c8 !important;
}

body.alp-store-template .alp-plan-card ul {
  margin: 10px 0 0 !important;
  padding: 0 0 0 16px !important;
  display: grid !important;
  gap: 6px !important;
}

body.alp-store-template .alp-plan-card li {
  color: #d9d4c8 !important;
  font-size: 13px !important;
}

body.alp-store-template .alp-pricing-faq .alp-faq-list,
body.alp-store-template .alp-faq-list {
  gap: 8px !important;
}

body.alp-store-template .alp-faq-list details {
  border: 1px solid #2e2e46 !important;
  border-radius: var(--aa-radius-sm) !important;
  background: #1a1a2b !important;
  overflow: hidden !important;
}

body.alp-store-template .alp-faq-list summary {
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  padding: 10px 12px !important;
  font-size: 14px !important;
  color: #f5f2ea !important;
  cursor: pointer !important;
}

body.alp-store-template .alp-faq-list details p {
  margin: 0 !important;
  padding: 0 12px 12px !important;
  color: #d9d4c8 !important;
  font-size: 13px !important;
}

body.alp-store-template .alp-faq-action-btn {
  min-height: 34px !important;
  border-radius: var(--aa-radius-xs) !important;
  border: 1px solid #2e2e46 !important;
  background: #1a1a2b !important;
  color: #f5f2ea !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 0 10px !important;
}

body.alp-store-template .alp-faq-action-btn:hover {
  border-color: #f57c1f !important;
}

body.alp-store-template .alp-store-empty,
body.alp-store-template .alp-support-empty,
body.alp-store-template .alp-account-empty,
body.alp-store-template .alp-pricing-empty,
body.alp-store-template .alp-account-wishlist-empty {
  border: 1px dashed #2e2e46 !important;
  border-radius: var(--aa-radius-sm) !important;
  padding: 14px !important;
  color: #d9d4c8 !important;
  background: #1a1a2b !important;
}

body.alp-store-template .aa-store-dd-panel,
body.alp-store-template .aa-store-license-modal,
body.alp-store-template .aa-store-cart-drawer,
body.alp-store-template .aa-store-mobile-panel {
  border: 1px solid #2e2e46 !important;
}

body.alp-store-template .aa-store-license-field input {
  color: #f5f2ea !important;
}

body.alp-store-template .aa-store-license-field button {
  min-width: 70px !important;
  border-radius: var(--aa-radius-xs) !important;
  border: 1px solid #2e2e46 !important;
  background: #f57c1f !important;
  color: #f5f2ea !important;
  font-weight: 700 !important;
}

body.alp-store-template .aa-store-license-field button:hover {
  background: #f79444 !important;
}

body.alp-store-template .aa-store-cart-total span,
body.alp-store-template .aa-store-cart-total strong,
body.alp-store-template .aa-store-cart-item strong,
body.alp-store-template .aa-store-cart-item span,
body.alp-store-template .aa-store-cart-item small {
  color: #f5f2ea !important;
}

body.alp-store-template .aa-store-cart-empty {
  border: 1px dashed #2e2e46 !important;
  color: #d9d4c8 !important;
}

body.alp-store-template .aa-store-mode-btn,
body.alp-store-template .aa-store-user-btn,
body.alp-store-template .aa-store-mobile-open {
  color: #f5f2ea !important;
}

body.alp-store-template.alp-store-light,
body.alp-store-template.alp-store-light #page,
body.alp-store-template.alp-store-light .site-main,
body.alp-store-template.alp-store-light .alp-store-shell {
  background: #f5f2ea !important;
  background-image: none !important;
}

body.alp-store-template.alp-store-light .alp-store-shell::before {
  display: none !important;
}

body.alp-store-template.alp-store-light .aa-header-store .header-bg,
body.alp-store-template.alp-store-light .aa-header-store.is-scrolled .header-bg {
  background: rgba(245, 242, 234, 0.92) !important;
  background-image: none !important;
  border-bottom-color: #d2cabb !important;
}

body.alp-store-template.alp-store-light .alp-home-hero,
body.alp-store-template.alp-store-light .alp-browse-hero,
body.alp-store-template.alp-store-light .alp-support-hero,
body.alp-store-template.alp-store-light .alp-account-hero,
body.alp-store-template.alp-store-light .alp-pricing-hero,
body.alp-store-template.alp-store-light .alp-faq-hero,
body.alp-store-template.alp-store-light .alp-market-section,
body.alp-store-template.alp-store-light .alp-support-card,
body.alp-store-template.alp-store-light .alp-account-card,
body.alp-store-template.alp-store-light .alp-pricing-compare,
body.alp-store-template.alp-store-light .alp-faq-shell,
body.alp-store-template.alp-store-light .alp-faq-cta,
body.alp-store-template.alp-store-light .alp-single-panel,
body.alp-store-template.alp-store-light .alp-plan-card,
body.alp-store-template.alp-store-light .alp-account-stats article,
body.alp-store-template.alp-store-light .alp-store-card,
body.alp-store-template.alp-store-light .alp-market-value-strip,
body.alp-store-template.alp-store-light .alp-browse-toolbar,
body.alp-store-template.alp-store-light .alp-support-ticket-filter,
body.alp-store-template.alp-store-light .alp-faq-toolbar,
body.alp-store-template.alp-store-light .aa-store-mobile-panel,
body.alp-store-template.alp-store-light .aa-store-cart-drawer,
body.alp-store-template.alp-store-light .aa-store-license-modal,
body.alp-store-template.alp-store-light .aa-site-footer {
  background: #ffffff !important;
  background-image: none !important;
}

body.alp-store-template.alp-store-light h1,
body.alp-store-template.alp-store-light h2,
body.alp-store-template.alp-store-light h3,
body.alp-store-template.alp-store-light h4,
body.alp-store-template.alp-store-light strong {
  color: #14141e !important;
}

body.alp-store-template.alp-store-light p,
body.alp-store-template.alp-store-light span,
body.alp-store-template.alp-store-light em,
body.alp-store-template.alp-store-light small,
body.alp-store-template.alp-store-light li,
body.alp-store-template.alp-store-light label,
body.alp-store-template.alp-store-light a {
  color: #42424f !important;
}

body.alp-store-template.alp-store-light input,
body.alp-store-template.alp-store-light select,
body.alp-store-template.alp-store-light textarea,
body.alp-store-template.alp-store-light .alp-account-license-input,
body.alp-store-template.alp-store-light .aa-store-search .aa-store-search-input,
body.alp-store-template.alp-store-light .aa-store-mobile-search .aa-store-search-input,
body.alp-store-template.alp-store-light .alp-store-card-icon-btn,
body.alp-store-template.alp-store-light .alp-browse-chip,
body.alp-store-template.alp-store-light .alp-billing-pill,
body.alp-store-template.alp-store-light .alp-page-pill,
body.alp-store-template.alp-store-light .aa-store-dd-btn,
body.alp-store-template.alp-store-light .aa-store-chip-btn,
body.alp-store-template.alp-store-light .aa-store-dd-panel,
body.alp-store-template.alp-store-light .aa-store-icon-btn {
  background: #f5f2ea !important;
  border-color: #d2cabb !important;
  color: #14141e !important;
}

body.alp-store-template.alp-store-light .aa-store-cart-btn strong {
  color: #f5f2ea !important;
}

body.alp-store-template .aa-site-footer .aa-footer-links a {
  position: relative;
  min-height: 28px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  transform: none !important;
}

body.alp-store-template .aa-site-footer .aa-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: #f57c1f;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

body.alp-store-template .aa-site-footer .aa-footer-links a:hover,
body.alp-store-template .aa-site-footer .aa-footer-links a:focus-visible {
  transform: none !important;
}

body.alp-store-template .aa-site-footer .aa-footer-links a:hover::after,
body.alp-store-template .aa-site-footer .aa-footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

body.alp-store-template .aa-store-cart-drawer > header button,
body.alp-store-template .aa-store-mobile-head button,
body.alp-store-template .aa-store-license-modal > header button {
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  font-size: 18px !important;
  padding: 0 !important;
}

body.alp-store-template .aa-store-cart-drawer > header button {
  color: #f5f2ea !important;
}

body.alp-store-template .aa-store-license-modal {
  width: min(430px, calc(100vw - 24px)) !important;
  padding: 16px !important;
}

body.alp-store-template .aa-store-license-modal > header {
  align-items: center !important;
}

body.alp-store-template .aa-store-license-modal h3 {
  margin: 0 !important;
  font-size: 24px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.alp-store-template .aa-store-license-modal p {
  margin: 10px 0 12px !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

body.alp-store-template .aa-store-license-modal label {
  display: block !important;
  margin: 0 0 6px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

body.alp-store-template .aa-store-license-field {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 8px !important;
  align-items: center !important;
}

body.alp-store-template .aa-store-license-field input {
  min-height: 38px !important;
  border-radius: 10px !important;
  border: 1px solid #2e2e46 !important;
  background: rgba(26, 26, 43, 0.66) !important;
  color: #f5f2ea !important;
  font-size: 13px !important;
}

body.alp-store-template.alp-store-light .aa-store-license-field input {
  background: rgba(245, 242, 234, 0.86) !important;
  border-color: #d2cabb !important;
  color: #14141e !important;
}

body.alp-store-template .aa-store-license-field button {
  min-width: 74px !important;
  min-height: 38px !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
}

body.alp-store-template .aa-store-copy-toast {
  position: fixed;
  top: 84px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  z-index: 100020;
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(245, 242, 234, 0.28);
  background: rgba(18, 18, 31, 0.72);
  color: #f5f2ea;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 700;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

body.alp-store-template .aa-store-copy-toast.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

body.alp-store-template.alp-store-light .aa-store-copy-toast {
  border-color: #d2cabb;
  background: rgba(255, 255, 255, 0.88);
  color: #14141e;
}

body.alp-store-template .alp-home-kicker svg,
body.alp-store-template .alp-home-actions svg,
body.alp-store-template .alp-home-meta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.alp-store-template .alp-home-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 34px !important;
  border: 1px solid #2e2e46 !important;
  border-radius: 999px !important;
  padding: 0 12px !important;
  color: #d9d4c8 !important;
}

body.alp-store-template .alp-home-hero-title {
  margin: 0 !important;
}

body.alp-store-template .alp-home-hero-highlight {
  color: #f57c1f !important;
}

body.alp-store-template .alp-home-app-rotator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  margin: 0 8px;
  border: 1px solid #2e2e46;
  border-radius: 14px;
  background: #1a1a2b;
  position: relative;
  vertical-align: middle;
}

body.alp-store-template .alp-home-app-logo {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.24s ease;
}

body.alp-store-template .alp-home-app-logo.is-active {
  opacity: 1;
  pointer-events: auto;
}

body.alp-store-template .alp-home-app-logo img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

body.alp-store-template .alp-home-meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: #d9d4c8;
}

body.alp-store-template .alp-home-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.alp-store-template .alp-home-meta span i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f57c1f;
  display: inline-block;
}

body.alp-store-template .alp-home-showcase {
  display: grid;
  gap: 10px;
}

body.alp-store-template .alp-home-showcase-stack {
  position: relative;
  min-height: 370px;
}

body.alp-store-template .alp-home-showcase-card {
  position: absolute;
  width: min(100%, 430px);
  aspect-ratio: 16/9;
  border: 1px solid #2e2e46;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a2b;
  box-shadow: var(--aa-shadow-2);
}

body.alp-store-template .alp-home-showcase-card.card-1 {
  left: 0;
  top: 38px;
  transform: translateZ(0) rotate(-6deg) scale(0.9);
  opacity: 0.75;
}

body.alp-store-template .alp-home-showcase-card.card-2 {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
}

body.alp-store-template .alp-home-showcase-card.card-3 {
  right: 0;
  top: 38px;
  transform: translateZ(0) rotate(6deg) scale(0.9);
  opacity: 0.75;
}

body.alp-store-template .alp-home-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.alp-store-template .alp-home-showcase-overlay {
  position: absolute;
  inset: auto 0 0 0;
  min-height: 84px;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(8, 8, 18, 0) 0%, rgba(8, 8, 18, 0.86) 100%);
  display: grid;
  gap: 3px;
}

body.alp-store-template .alp-home-showcase-overlay strong {
  font-size: 15px;
  line-height: 1.2;
  color: #f5f2ea;
}

body.alp-store-template .alp-home-showcase-overlay span {
  font-size: 12px;
  color: #d9d4c8;
}

body.alp-store-template .alp-home-showcase-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}

body.alp-store-template .alp-home-showcase-dots span {
  width: 14px;
  height: 6px;
  border-radius: 999px;
  background: #2e2e46;
  display: inline-block;
}

body.alp-store-template .alp-home-showcase-dots span.is-active {
  background: #f57c1f;
}

@media (max-width: 1024px) {
  body.alp-store-template .alp-home-showcase {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  body.alp-store-template .alp-browse-toolbar {
    grid-template-columns: minmax(200px, 1.6fr) repeat(3, minmax(110px, 1fr)) auto !important;
  }
}

@media (max-width: 1024px) {
  body.alp-store-template .alp-home-hero {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  body.alp-store-template .alp-browse-toolbar {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  body.alp-store-template .alp-store-main {
    width: min(100%, 95vw) !important;
    gap: 16px !important;
  }

  body.alp-store-template .alp-market-carousel {
    padding: 0 28px !important;
  }

  body.alp-store-template .alp-market-carousel-track {
    grid-auto-columns: minmax(235px, 1fr) !important;
  }

  body.alp-store-template .alp-browse-toolbar {
    grid-template-columns: 1fr !important;
  }

  body.alp-store-template .alp-support-layout,
  body.alp-store-template .alp-account-grid,
  body.alp-store-template .alp-account-detail-grid,
  body.alp-store-template .alp-pricing-grid,
  body.alp-store-template .alp-pricing-compare-grid {
    grid-template-columns: 1fr !important;
  }
}
/* === Final Store Polish Fix Pack (2026-02-19) === */

/* Keep footer links stable: no grow/scale, only underline reveal */
body.alp-store-template .aa-site-footer .aa-footer-links a,
body.alp-store-template .aa-site-footer .aa-footer-links a:hover,
body.alp-store-template .aa-site-footer .aa-footer-links a:focus-visible {
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  transform: none !important;
  scale: 1 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
}

body.alp-store-template .aa-site-footer .aa-footer-links a {
  position: relative !important;
  width: fit-content !important;
  min-height: 24px !important;
  padding: 0 !important;
}

body.alp-store-template .aa-site-footer .aa-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: #f57c1f;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

body.alp-store-template .aa-site-footer .aa-footer-links a:hover::after,
body.alp-store-template .aa-site-footer .aa-footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Header search visual parity with reference */
body.alp-store-template .aa-store-search .aa-store-search-input,
body.alp-store-template .aa-store-mobile-search .aa-store-search-input {
  min-height: 40px !important;
  border-radius: 10px !important;
  border: 1px solid #2e2e46 !important;
  background: rgba(8, 8, 18, 0.58) !important;
  color: #f5f2ea !important;
  padding-left: 38px !important;
  box-shadow: inset 0 0 0 1px rgba(245, 242, 234, 0.04) !important;
}

body.alp-store-template .aa-store-search .aa-store-search-input::placeholder,
body.alp-store-template .aa-store-mobile-search .aa-store-search-input::placeholder {
  color: #a8a49a !important;
}

body.alp-store-template .aa-store-search .aa-store-search-input:focus,
body.alp-store-template .aa-store-mobile-search .aa-store-search-input:focus {
  border-color: #4c6fff !important;
  box-shadow: 0 0 0 3px rgba(76, 111, 255, 0.2), inset 0 0 0 1px rgba(245, 242, 234, 0.08) !important;
}

/* Close buttons: cart / mobile / license */
body.alp-store-template .aa-store-cart-drawer > header button,
body.alp-store-template .aa-store-mobile-head button,
body.alp-store-template .aa-store-license-modal > header button {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  border: 1px solid #2e2e46 !important;
  background: rgba(26, 26, 43, 0.75) !important;
  color: #f5f2ea !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  padding: 0 !important;
}

body.alp-store-template .aa-store-cart-drawer > header button i,
body.alp-store-template .aa-store-mobile-head button i,
body.alp-store-template .aa-store-license-modal > header button i {
  font-size: 16px !important;
  line-height: 1 !important;
}

body.alp-store-template .aa-store-cart-drawer > header button:hover,
body.alp-store-template .aa-store-mobile-head button:hover,
body.alp-store-template .aa-store-license-modal > header button:hover {
  border-color: #f57c1f !important;
  background: rgba(245, 124, 31, 0.16) !important;
}

/* License modal: compact, aligned, transparent field */
body.alp-store-template .aa-store-license-modal {
  width: min(430px, calc(100vw - 24px)) !important;
  border-radius: 14px !important;
  border: 1px solid #2e2e46 !important;
  background: rgba(18, 18, 31, 0.88) !important;
  padding: 16px !important;
  display: grid !important;
  gap: 10px !important;
}

body.alp-store-template .aa-store-license-modal > header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

body.alp-store-template .aa-store-license-modal h3 {
  margin: 0 !important;
  font-size: 30px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #f5f2ea !important;
}

body.alp-store-template .aa-store-license-modal p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: #d9d4c8 !important;
}

body.alp-store-template .aa-store-license-modal label {
  margin: 0 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #f5f2ea !important;
}

body.alp-store-template .aa-store-license-field {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 8px !important;
  align-items: center !important;
}

body.alp-store-template .aa-store-license-field input {
  min-height: 40px !important;
  border-radius: 10px !important;
  border: 1px solid #2e2e46 !important;
  background: rgba(8, 8, 18, 0.4) !important;
  color: #f5f2ea !important;
  padding: 0 12px !important;
  font-size: 14px !important;
}

body.alp-store-template .aa-store-license-field button {
  min-width: 82px !important;
  min-height: 40px !important;
  border-radius: 10px !important;
  border: 1px solid #d9d4c8 !important;
  background: #f5f2ea !important;
  color: #12121f !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 0 12px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

body.alp-store-template .aa-store-license-field button i {
  font-size: 14px !important;
}

body.alp-store-template .aa-store-license-field button.is-copied {
  border-color: #2fbf71 !important;
  background: #2fbf71 !important;
  color: #08150e !important;
}

/* Apple-like glass toast for copy feedback */
body.alp-store-template .aa-store-copy-toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(0.98);
  z-index: 100200;
  opacity: 0;
  pointer-events: none;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 242, 234, 0.35);
  background: rgba(12, 14, 26, 0.62);
  color: #f5f2ea;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

body.alp-store-template .aa-store-copy-toast::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #8decae, #2fbf71);
  box-shadow: 0 0 0 2px rgba(47, 191, 113, 0.25);
}

body.alp-store-template .aa-store-copy-toast.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Product hero section: tighter reverse structure */
body.alp-store-template .alp-home-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr) !important;
  gap: 34px !important;
  align-items: center !important;
  padding-top: 14px !important;
}

body.alp-store-template .alp-home-hero-copy {
  display: grid !important;
  gap: 16px !important;
}

body.alp-store-template .alp-home-hero-title {
  font-size: clamp(36px, 5vw, 64px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.015em !important;
  font-weight: 800 !important;
}

body.alp-store-template .alp-home-description {
  max-width: 620px !important;
  font-size: clamp(16px, 2vw, 22px) !important;
  line-height: 1.45 !important;
}

body.alp-store-template .alp-home-showcase-stack {
  min-height: clamp(320px, 36vw, 430px) !important;
}

body.alp-store-template .alp-home-showcase-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease !important;
}

body.alp-store-template .alp-home-showcase-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 124, 31, 0.35) !important;
}

body.alp-store-template .alp-home-showcase-overlay {
  background: rgba(8, 8, 18, 0.72) !important;
  border-top: 1px solid rgba(245, 242, 234, 0.12) !important;
}

/* Light mode restoration */
body.alp-store-template.alp-store-light,
body.alp-store-template.alp-store-light #page,
body.alp-store-template.alp-store-light .site-main,
body.alp-store-template.alp-store-light .alp-store-shell {
  background: #f5f2ea !important;
  color: #171824 !important;
}

body.alp-store-template.alp-store-light .aa-header-store .header-bg,
body.alp-store-template.alp-store-light .aa-header-store.is-scrolled .header-bg {
  background: rgba(245, 242, 234, 0.84) !important;
  border-bottom-color: #d8cfbe !important;
}

body.alp-store-template.alp-store-light .alp-home-hero,
body.alp-store-template.alp-store-light .alp-browse-hero,
body.alp-store-template.alp-store-light .alp-support-hero,
body.alp-store-template.alp-store-light .alp-account-hero,
body.alp-store-template.alp-store-light .alp-pricing-hero,
body.alp-store-template.alp-store-light .alp-faq-hero,
body.alp-store-template.alp-store-light .alp-market-section,
body.alp-store-template.alp-store-light .alp-support-card,
body.alp-store-template.alp-store-light .alp-account-card,
body.alp-store-template.alp-store-light .alp-pricing-compare,
body.alp-store-template.alp-store-light .alp-faq-shell,
body.alp-store-template.alp-store-light .alp-faq-cta,
body.alp-store-template.alp-store-light .alp-single-panel,
body.alp-store-template.alp-store-light .alp-plan-card,
body.alp-store-template.alp-store-light .alp-account-stats article,
body.alp-store-template.alp-store-light .alp-store-card,
body.alp-store-template.alp-store-light .alp-market-value-strip,
body.alp-store-template.alp-store-light .alp-browse-toolbar,
body.alp-store-template.alp-store-light .alp-support-ticket-filter,
body.alp-store-template.alp-store-light .alp-faq-toolbar,
body.alp-store-template.alp-store-light .aa-store-mobile-panel,
body.alp-store-template.alp-store-light .aa-store-cart-drawer,
body.alp-store-template.alp-store-light .aa-store-license-modal,
body.alp-store-template.alp-store-light .aa-site-footer {
  background: #fffaf2 !important;
  border-color: #d8cfbe !important;
  color: #171824 !important;
}

body.alp-store-template.alp-store-light h1,
body.alp-store-template.alp-store-light h2,
body.alp-store-template.alp-store-light h3,
body.alp-store-template.alp-store-light h4,
body.alp-store-template.alp-store-light strong,
body.alp-store-template.alp-store-light .aa-footer-col h4,
body.alp-store-template.alp-store-light .aa-footer-brand strong {
  color: #171824 !important;
}

body.alp-store-template.alp-store-light p,
body.alp-store-template.alp-store-light span,
body.alp-store-template.alp-store-light small,
body.alp-store-template.alp-store-light li,
body.alp-store-template.alp-store-light label,
body.alp-store-template.alp-store-light a,
body.alp-store-template.alp-store-light .aa-footer-brand p,
body.alp-store-template.alp-store-light .aa-footer-brand small,
body.alp-store-template.alp-store-light .aa-footer-links a {
  color: #3a3b47 !important;
}

body.alp-store-template.alp-store-light .aa-store-search .aa-store-search-input,
body.alp-store-template.alp-store-light .aa-store-mobile-search .aa-store-search-input,
body.alp-store-template.alp-store-light .aa-store-license-field input {
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: #d8cfbe !important;
  color: #171824 !important;
}

body.alp-store-template.alp-store-light .aa-store-copy-toast {
  border-color: #d8cfbe !important;
  background: rgba(255, 255, 255, 0.86) !important;
  color: #171824 !important;
}

body.alp-store-template.alp-store-light .aa-store-license-field button {
  border-color: #171824 !important;
  background: #171824 !important;
  color: #f5f2ea !important;
}

body.alp-store-template.alp-store-light .aa-store-cart-drawer > header button,
body.alp-store-template.alp-store-light .aa-store-mobile-head button,
body.alp-store-template.alp-store-light .aa-store-license-modal > header button {
  border-color: #d8cfbe !important;
  background: rgba(255, 255, 255, 0.86) !important;
  color: #171824 !important;
}

@media (max-width: 1024px) {
  body.alp-store-template .alp-home-hero {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}
/* === Owner Products + Footer Contact Column === */
body.alp-store-template .alp-owner-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body.alp-store-template .alp-owner-product-card {
  border: 1px solid #2e2e46;
  border-radius: 14px;
  overflow: hidden;
  background: #12121f;
  display: grid;
  grid-template-rows: auto 1fr;
}

body.alp-store-template .alp-owner-product-media {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

body.alp-store-template .alp-owner-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.alp-store-template .alp-owner-product-media-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 242, 234, 0.24);
  background: rgba(8, 8, 18, 0.72);
  color: #f5f2ea;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
}

body.alp-store-template .alp-owner-product-content {
  padding: 12px;
  display: grid;
  gap: 10px;
}

body.alp-store-template .alp-owner-product-meta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.alp-store-template .alp-owner-product-meta span {
  font-size: 12px;
  color: #d9d4c8;
  font-weight: 700;
}

body.alp-store-template .alp-owner-product-meta img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

body.alp-store-template .alp-owner-product-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  color: #f5f2ea;
}

body.alp-store-template .alp-owner-product-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #d9d4c8;
}

body.alp-store-template .alp-owner-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.alp-store-template .alp-owner-product-more {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid #2e2e46;
  background: rgba(26, 26, 43, 0.78);
  color: #f5f2ea;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

body.alp-store-template .alp-owner-product-more:hover {
  border-color: #f57c1f;
  color: #f5f2ea;
}

body.alp-store-template .alp-owner-product-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.alp-store-template .alp-owner-product-price strong {
  font-size: 22px;
  color: #f5f2ea;
  line-height: 1;
}

body.alp-store-template .alp-owner-product-price del {
  color: #a8a49a;
  font-size: 14px;
  text-decoration-color: #f57c1f;
}

body.alp-store-template .aa-site-footer .aa-footer-owner {
  display: block;
  margin-top: 6px;
  margin-bottom: 2px;
  font-size: 26px;
  line-height: 1.1;
  color: #f5f2ea;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-footer-social {
  margin-top: 2px;
}

body.alp-store-template .aa-site-footer .aa-footer-social a {
  width: 38px !important;
  height: 36px !important;
  border-radius: 10px !important;
}

@media (min-width: 1025px) {
  body.alp-store-template .aa-site-footer .aa-footer-inner {
    grid-template-columns: 1.35fr minmax(170px, 0.62fr) minmax(170px, 0.62fr) minmax(170px, 0.62fr) !important;
  }
}

@media (max-width: 1024px) {
  body.alp-store-template .alp-owner-products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  body.alp-store-template .alp-owner-products-grid {
    grid-template-columns: 1fr;
  }
}

body.alp-store-template.alp-store-light .alp-owner-product-card {
  background: #fffaf2;
  border-color: #d8cfbe;
}

body.alp-store-template.alp-store-light .alp-owner-product-media-label {
  background: rgba(255, 255, 255, 0.84);
  border-color: #d8cfbe;
  color: #171824;
}

body.alp-store-template.alp-store-light .alp-owner-product-card h3,
body.alp-store-template.alp-store-light .alp-owner-product-price strong,
body.alp-store-template.alp-store-light .aa-site-footer .aa-footer-owner {
  color: #171824;
}

body.alp-store-template.alp-store-light .alp-owner-product-card p,
body.alp-store-template.alp-store-light .alp-owner-product-meta span {
  color: #3a3b47;
}

body.alp-store-template.alp-store-light .alp-owner-product-more {
  background: rgba(255, 255, 255, 0.86);
  border-color: #d8cfbe;
  color: #171824;
}
/* === Emergency fixes: icon-font independence + content visibility === */
body.alp-store-template .aa-store-icon-btn svg,
body.alp-store-template .aa-store-menu-icon svg,
body.alp-store-template .aa-store-dd-item-icon svg,
body.alp-store-template .aa-store-cart-icon svg,
body.alp-store-template .aa-store-mode-icon svg,
body.alp-store-template [data-aa-store-mobile-close] svg,
body.alp-store-template [data-aa-cart-close] svg,
body.alp-store-template [data-aa-license-close] svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

body.alp-store-template .alp-owner-product-more svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* If JS reveal fails, never hide store sections */
body.alp-store-template .aa-store-reveal {
  opacity: 1 !important;
  transform: none !important;
}

body.alp-store-template .alp-store-main > section,
body.alp-store-template .alp-store-main > div {
  visibility: visible !important;
}

/* Footer contact column explicit layout */
body.alp-store-template .aa-site-footer .aa-footer-col-contact {
  display: grid !important;
  gap: 10px !important;
  align-content: start !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-footer-social {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 9px !important;
  justify-content: flex-start !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-footer-social a svg {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
}
body.alp-store-template .aa-store-license-field button svg {
  width: 14px !important;
  height: 14px !important;
  display: block !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}



/* === Footer Hard Fix (Store Context) === */
body.alp-store-template .aa-site-footer .aa-footer-inner {
  grid-template-columns: 1.3fr minmax(140px, 0.7fr) minmax(140px, 0.7fr) minmax(160px, 0.85fr) !important;
  gap: 20px !important;
  margin-bottom: 24px !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col h4 {
  margin-bottom: 8px !important;
  letter-spacing: 0.06em !important;
}

body.alp-store-template .aa-site-footer .aa-footer-links {
  gap: 6px !important;
}

body.alp-store-template .aa-site-footer .aa-footer-links a,
body.alp-store-template .aa-site-footer .aa-footer-links a:hover,
body.alp-store-template .aa-site-footer .aa-footer-links a:focus-visible {
  line-height: 1.2 !important;
  transform: none !important;
}

body.alp-store-template .aa-site-footer .aa-footer-brand {
  gap: 2px !important;
}

body.alp-store-template .aa-site-footer .aa-footer-name {
  margin: 0 !important;
  line-height: 1.2 !important;
}

body.alp-store-template .aa-site-footer .aa-footer-title {
  margin: 0 0 6px !important;
  line-height: 1.2 !important;
}

body.alp-store-template .aa-site-footer .aa-footer-email {
  margin-top: 0 !important;
  line-height: 1.2 !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact {
  align-content: start !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-footer-social {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 6px !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
  height: auto !important;
  min-height: 24px !important;
  gap: 8px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-icon {
  width: 16px !important;
  height: 16px !important;
  opacity: 1 !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-icon svg {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-label {
  display: inline !important;
}

body.alp-store-template .aa-site-footer .aa-footer-bottom {
  justify-content: center !important;
  padding-top: 14px !important;
}

body.alp-store-template .aa-site-footer .aa-footer-bottom small {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

@media (max-width: 900px) {
  body.alp-store-template .aa-site-footer .aa-footer-inner {
    grid-template-columns: 1fr 1fr !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-brand {
    grid-column: 1 / -1 !important;
  }
}
/* === Footer Final Polish Override (Store Context) === */
body.alp-store-template .aa-site-footer,
body.alp-store-template .aa-site-footer * {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col h4 {
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-bottom: 8px !important;
}

body.alp-store-template .aa-site-footer .aa-footer-links {
  gap: 8px !important;
}

body.alp-store-template .aa-site-footer .aa-footer-links a,
body.alp-store-template .aa-site-footer .aa-footer-links a:hover,
body.alp-store-template .aa-site-footer .aa-footer-links a:focus-visible {
  position: relative !important;
  width: fit-content !important;
  min-height: 24px !important;
  line-height: 1.25 !important;
  transform: none !important;
  text-decoration: none !important;
}

body.alp-store-template .aa-site-footer .aa-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: #f57c1f;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

body.alp-store-template .aa-site-footer .aa-footer-links a:hover::after,
body.alp-store-template .aa-site-footer .aa-footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

body.alp-store-template .aa-site-footer .aa-footer-name {
  margin: 0 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

body.alp-store-template .aa-site-footer .aa-footer-title {
  margin: 0 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

body.alp-store-template .aa-site-footer .aa-footer-email,
body.alp-store-template .aa-site-footer .aa-footer-email:hover,
body.alp-store-template .aa-site-footer .aa-footer-email:focus-visible {
  position: relative !important;
  display: inline-block !important;
  margin-top: 8px !important;
  line-height: 1.2 !important;
  transform: none !important;
  text-decoration: none !important;
  border: 0 !important;
}

body.alp-store-template .aa-site-footer .aa-footer-email::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: #f57c1f;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

body.alp-store-template .aa-site-footer .aa-footer-email:hover::after,
body.alp-store-template .aa-site-footer .aa-footer-email:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-footer-social {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 8px !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item:hover,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item:focus-visible {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  min-height: 34px !important;
  padding: 0 10px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(245, 242, 234, 0.2) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  transform: none !important;
  text-decoration: none !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-icon {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px !important;
  overflow: visible !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-icon svg {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
  overflow: visible !important;
}

body.alp-store-template .aa-site-footer .aa-footer-bottom {
  justify-content: center !important;
}

/* Store pages: footer logo size parity with header logo (40px) */
body.alp-store-template .aa-site-footer .aa-footer-brand-link {
  display: inline-flex !important;
  align-items: center !important;
  height: 40px !important;
  line-height: 0 !important;
}

body.alp-store-template .aa-site-footer .aa-footer-brand-link img {
  display: block !important;
  width: auto !important;
  height: 40px !important;
  max-height: 40px !important;
  object-fit: contain !important;
}

/* Store footer social icon buttons: outline rounded-square like cart icon style */
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item::after {
  display: none !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item:hover,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item:focus-visible {
  min-height: 36px !important;
  padding: 0 12px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(46, 46, 70, 0.95) !important;
  background: rgba(18, 18, 31, 0.78) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  transform: none !important;
  box-shadow: inset 0 0 0 1px rgba(245, 242, 234, 0.03) !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item:hover,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item:focus-visible {
  border-color: rgba(245, 124, 31, 0.72) !important;
  background: rgba(26, 26, 43, 0.92) !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-icon {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-icon svg {
  width: 18px !important;
  height: 18px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.9 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-label {
  line-height: 1 !important;
}

/* Store footer social: icons only (no text) */
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item:hover,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item:focus-visible {
  width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 !important;
  gap: 0 !important;
  justify-content: center !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-label {
  display: none !important;
}

/* Mobile footer balance (store): [brand | explore] then [company | contact] */
@media (max-width: 767px) {
  body.alp-store-template .aa-site-footer .aa-footer-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    grid-template-areas:
      "brand explore"
      "company contact" !important;
    column-gap: 20px !important;
    row-gap: 22px !important;
    align-items: start !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-brand {
    grid-area: brand !important;
    justify-self: start !important;
    text-align: left !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-col-explore {
    grid-area: explore !important;
    justify-self: end !important;
    text-align: left !important;
    width: fit-content !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-col-work {
    grid-area: company !important;
    justify-self: start !important;
    text-align: left !important;
    width: fit-content !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-col-contact {
    grid-area: contact !important;
    justify-self: end !important;
    text-align: left !important;
    width: fit-content !important;
  }
}

/* Store footer: filled brand icons + centered in rounded buttons */
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item:hover,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item:focus-visible {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-icon {
  margin: 0 !important;
  line-height: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  width: 20px !important;
  height: 20px !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="linkedin"] .aa-social-icon svg,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="behance"] .aa-social-icon svg,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="facebook"] .aa-social-icon svg,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="youtube"] .aa-social-icon svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  overflow: visible !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="linkedin"] .aa-social-icon svg path,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="behance"] .aa-social-icon svg path,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="facebook"] .aa-social-icon svg path,
body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="youtube"] .aa-social-icon svg path {
  fill: currentColor !important;
  stroke: none !important;
}

body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="behance"] .aa-social-icon svg {
  width: 17px !important;
  height: 17px !important;
}

/* Store mobile footer visual balance + smaller social icons */
@media (max-width: 767px) {
  body.alp-store-template .aa-site-footer .aa-footer-inner {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr) !important;
    column-gap: 14px !important;
    row-gap: 16px !important;
    padding: 0 16px !important;
    margin-bottom: 30px !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-brand {
    gap: 3px !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-brand-link {
    margin-bottom: 10px !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-col h4 {
    margin-bottom: 8px !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-links {
    gap: 8px !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-col-explore,
  body.alp-store-template .aa-site-footer .aa-footer-col-contact {
    justify-self: end !important;
    width: 118px !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-col-work {
    width: 118px !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-footer-social {
    gap: 8px !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item,
  body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item:hover,
  body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item:focus-visible {
    width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    border-radius: 10px !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-icon {
    width: 14px !important;
    height: 14px !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="linkedin"] .aa-social-icon svg,
  body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="behance"] .aa-social-icon svg,
  body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="facebook"] .aa-social-icon svg,
  body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="youtube"] .aa-social-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  body.alp-store-template .aa-site-footer .aa-footer-col-contact .aa-social-item[data-social="behance"] .aa-social-icon svg {
    width: 13px !important;
    height: 13px !important;
  }
}
