/* =============================================================
   AlphaStoreHome.css
   Scoped under .ash-home | No global overrides
   ============================================================= */

/* --- Variables -------------------------------------------- */
.ash-home {
  --ash-green:       #039006;
  --ash-green-dark:  #027505;
  --ash-green-deep:  #013d03;
  --ash-green-light: #e8fbe9;
  --ash-bg:          #f3faf3;
  --ash-white:       #ffffff;
  --ash-text:        #102013;
  --ash-muted:       #5f6f62;
  --ash-border:      #dcefdc;
  --ash-radius:      10px;
  --ash-radius-lg:   16px;
  --ash-shadow:      0 1px 4px rgba(3,144,6,.07), 0 4px 16px rgba(3,144,6,.05);
  --ash-shadow-md:   0 2px 8px rgba(3,144,6,.10), 0 8px 32px rgba(3,144,6,.08);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ash-text);
  background: var(--ash-white);
  line-height: 1.6;
}

/* --- Container -------------------------------------------- */
.ash-home .ash-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --- Section headers -------------------------------------- */
.ash-home .ash-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.ash-home .ash-section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ash-home .ash-section-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--ash-text);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.ash-home .ash-section-sub {
  font-size: 1rem;
  color: var(--ash-muted);
  margin: 0;
  max-width: 600px;
}

/* --- Badge ------------------------------------------------ */
.ash-home .ash-badge {
  display: inline-block;
  background: var(--ash-green-light);
  color: var(--ash-green-dark);
  border: 1px solid var(--ash-border);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.ash-home .ash-badge--accent {
  background: var(--ash-green);
  color: var(--ash-white);
  border-color: var(--ash-green-dark);
}

/* --- Buttons ---------------------------------------------- */
.ash-home .ash-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--ash-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
  background: none;
  font-family: inherit;
}
.ash-home .ash-btn--primary {
  background: var(--ash-green);
  color: var(--ash-white);
  border-color: var(--ash-green);
}
.ash-home .ash-btn--primary:hover {
  background: var(--ash-green-dark);
  border-color: var(--ash-green-dark);
}
.ash-home .ash-btn--secondary {
  background: var(--ash-white);
  color: var(--ash-text);
  border-color: var(--ash-border);
}
.ash-home .ash-btn--secondary:hover {
  background: var(--ash-green-light);
  border-color: var(--ash-green);
}
.ash-home .ash-btn--ghost {
  background: transparent;
  color: var(--ash-text);
  border-color: var(--ash-border);
}
.ash-home .ash-btn--ghost:hover {
  background: var(--ash-green-light);
  border-color: var(--ash-green);
}
.ash-home .ash-btn--outline {
  background: transparent;
  color: var(--ash-green);
  border-color: var(--ash-green);
}
.ash-home .ash-btn--outline:hover {
  background: var(--ash-green-light);
}
.ash-home .ash-btn--white {
  background: var(--ash-white);
  color: var(--ash-text);
  border-color: var(--ash-white);
}
.ash-home .ash-btn--white:hover {
  background: var(--ash-green-light);
  border-color: var(--ash-green);
}
.ash-home .ash-btn--sm {
  font-size: 0.82rem;
  padding: 7px 14px;
}
.ash-home .ash-btn--lg {
  font-size: 1rem;
  padding: 13px 28px;
}

/* =============================================================
   1. HERO
   ============================================================= */
.ash-home .ash-hero {
  background: var(--ash-bg);
  border-bottom: 1px solid var(--ash-border);
  padding-top: 100px;
}
.ash-home .ash-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
}
.ash-home .ash-hero__content {
  max-width: 540px;
}
.ash-home .ash-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ash-text);
  margin: 0 0 16px;
  line-height: 1.15;
}
.ash-home .ash-hero__text {
  font-size: 1.02rem;
  color: var(--ash-muted);
  margin: 0 0 24px;
  line-height: 1.65;
}
.ash-home .ash-hero__usps {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ash-home .ash-hero__usps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ash-text);
}
.ash-home .ash-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Hero visual collage */
.ash-home .ash-hero__visual {
  display: flex;
  align-items: flex-start;
}
.ash-home .ash-hero__collage {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 420px;
}
.ash-home .ash-hero__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ash-home .ash-hero__col--main {
  flex: 1.3;
}
.ash-home .ash-hero__col--side {
  flex: 1;
}
.ash-home .ash-hero__img {
  position: relative;
  flex: 1;
  border-radius: var(--ash-radius);
  overflow: hidden;
  border: 1px solid var(--ash-border);
  min-height: 0;
}
.ash-home .ash-hero__img--tall {
  flex: 1.6;
}
.ash-home .ash-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ash-home .ash-hero__img:hover img {
  transform: scale(1.04);
}
.ash-home .ash-hero__img-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(1,61,3,.72);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 4px;
  pointer-events: none;
}

/* Hero stat bar */
.ash-home .ash-hero__stat-bar {
  background: var(--ash-white);
  border-top: 1px solid var(--ash-border);
}
.ash-home .ash-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
}
.ash-home .ash-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 32px;
}
.ash-home .ash-hero__stat strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ash-text);
}
.ash-home .ash-hero__stat span {
  font-size: 0.78rem;
  color: var(--ash-muted);
}
.ash-home .ash-hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--ash-border);
  flex-shrink: 0;
}

/* =============================================================
   2. CATEGORIES
   ============================================================= */
.ash-home .ash-categories {
  padding: 64px 0 48px;
  background: var(--ash-white);
}
.ash-home .ash-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ash-home .ash-cat-card {
  display: flex;
  flex-direction: column;
  background: var(--ash-bg);
  border: 1px solid var(--ash-border);
  border-radius: var(--ash-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.ash-home .ash-cat-card:hover {
  border-color: var(--ash-green);
  box-shadow: var(--ash-shadow-md);
  transform: translateY(-2px);
}
.ash-home .ash-cat-card__thumb {
  display: flex;
  height: 100px;
  overflow: hidden;
}
.ash-home .ash-cat-card__thumb img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  transition: transform 0.35s;
}
.ash-home .ash-cat-card:hover .ash-cat-card__thumb img {
  transform: scale(1.06);
}
.ash-home .ash-cat-card__body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ash-home .ash-cat-card__body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: var(--ash-text);
}
.ash-home .ash-cat-card__body p {
  font-size: 0.82rem;
  color: var(--ash-muted);
  margin: 0;
  flex: 1;
  line-height: 1.5;
}
.ash-home .ash-cat-card__link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ash-green);
  margin-top: 8px;
}
.ash-home .ash-cat-card--all {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ash-green-light);
}
.ash-home .ash-cat-card--all .ash-cat-card__body {
  align-items: center;
}
.ash-home .ash-cat-card__all-icon {
  padding-top: 20px;
}

/* =============================================================
   3. POPULAR PRODUCTS
   ============================================================= */
.ash-home .ash-popular {
  padding: 64px 0;
  background: var(--ash-bg);
  border-top: 1px solid var(--ash-border);
}
.ash-home .ash-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ash-home .ash-product-card {
  background: var(--ash-white);
  border: 1px solid var(--ash-border);
  border-radius: var(--ash-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.ash-home .ash-product-card:hover {
  border-color: var(--ash-green);
  box-shadow: var(--ash-shadow-md);
  transform: translateY(-3px);
}
.ash-home .ash-product-card__img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--ash-bg);
}
.ash-home .ash-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.ash-home .ash-product-card:hover .ash-product-card__img img {
  transform: scale(1.05);
}
.ash-home .ash-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.ash-home .ash-product-card__badge--featured {
  background: var(--ash-green);
  color: #fff;
}
.ash-home .ash-product-card__badge--free {
  background: var(--ash-green-light);
  color: var(--ash-green-dark);
  border: 1px solid var(--ash-border);
  position: static;
  display: inline-block;
  margin-bottom: 4px;
}
.ash-home .ash-product-card__body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ash-home .ash-product-card__cat {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ash-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ash-home .ash-product-card__body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: var(--ash-text);
  line-height: 1.3;
}
.ash-home .ash-product-card__body p {
  font-size: 0.83rem;
  color: var(--ash-muted);
  margin: 0;
  flex: 1;
  line-height: 1.5;
}
.ash-home .ash-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--ash-border);
}
.ash-home .ash-product-card__price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ash-green-dark);
}
.ash-home .ash-product-card__cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ash-green);
}
.ash-home .ash-popular__more {
  text-align: center;
  margin-top: 36px;
}

/* =============================================================
   4. FEATURED RELEASE
   ============================================================= */
.ash-home .ash-featured {
  padding: 72px 0;
  background: var(--ash-white);
  border-top: 1px solid var(--ash-border);
}
.ash-home .ash-featured__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ash-home .ash-featured__media {
  position: relative;
}
.ash-home .ash-featured__imgs {
  position: relative;
  height: 380px;
}
.ash-home .ash-featured__img {
  border-radius: var(--ash-radius-lg);
  object-fit: cover;
  display: block;
  position: absolute;
  border: 2px solid var(--ash-white);
  box-shadow: var(--ash-shadow-md);
}
.ash-home .ash-featured__img--main {
  width: 82%;
  height: 82%;
  top: 0;
  left: 0;
  z-index: 1;
}
.ash-home .ash-featured__img--s1 {
  width: 48%;
  height: 48%;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.ash-home .ash-featured__img--s2 {
  width: 38%;
  height: 34%;
  bottom: 10px;
  left: 52%;
  z-index: 3;
  display: none;
}
.ash-home .ash-featured__title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ash-text);
  margin: 8px 0 14px;
  line-height: 1.15;
}
.ash-home .ash-featured__text {
  color: var(--ash-muted);
  font-size: 0.98rem;
  margin: 0 0 16px;
  line-height: 1.65;
}
.ash-home .ash-featured__claim {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--ash-green-light);
  border: 1px solid var(--ash-border);
  border-radius: var(--ash-radius);
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ash-green-deep);
  margin-bottom: 24px;
  line-height: 1.4;
}
.ash-home .ash-featured__claim svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.ash-home .ash-featured__pricing {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--ash-bg);
  border: 1px solid var(--ash-border);
  border-radius: var(--ash-radius);
  margin-bottom: 24px;
  overflow: hidden;
}
.ash-home .ash-featured__price-block {
  flex: 1;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.ash-home .ash-featured__price-divider {
  width: 1px;
  height: 48px;
  background: var(--ash-border);
  flex-shrink: 0;
}
.ash-home .ash-featured__price-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ash-muted);
}
.ash-home .ash-featured__price-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ash-text);
}
.ash-home .ash-featured__price-value small {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ash-muted);
}
.ash-home .ash-featured__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =============================================================
   5. CATEGORY SHOWCASE (tabs)
   ============================================================= */
.ash-home .ash-showcase {
  padding: 72px 0;
  background: var(--ash-bg);
  border-top: 1px solid var(--ash-border);
}
.ash-home .ash-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--ash-border);
  padding-bottom: 0;
}
.ash-home .ash-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ash-muted);
  cursor: pointer;
  transition: color 0.16s, border-color 0.16s;
  font-family: inherit;
  border-radius: var(--ash-radius) var(--ash-radius) 0 0;
}
.ash-home .ash-tab:hover {
  color: var(--ash-text);
}
.ash-home .ash-tab--active {
  color: var(--ash-green-dark);
  border-bottom-color: var(--ash-green);
}
.ash-home .ash-tab-panels {
  position: relative;
}
.ash-home .ash-tab-panel {
  display: none;
}
.ash-home .ash-tab-panel--active {
  display: block;
}
.ash-home .ash-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ash-home .ash-showcase-card {
  background: var(--ash-white);
  border: 1px solid var(--ash-border);
  border-radius: var(--ash-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.ash-home .ash-showcase-card:hover {
  border-color: var(--ash-green);
  box-shadow: var(--ash-shadow-md);
  transform: translateY(-2px);
}
.ash-home .ash-showcase-card__img {
  height: 160px;
  overflow: hidden;
  background: var(--ash-bg);
}
.ash-home .ash-showcase-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.ash-home .ash-showcase-card:hover .ash-showcase-card__img img {
  transform: scale(1.05);
}
.ash-home .ash-showcase-card__body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ash-home .ash-showcase-card__body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
  color: var(--ash-text);
  line-height: 1.3;
}
.ash-home .ash-showcase-card__body p {
  font-size: 0.82rem;
  color: var(--ash-muted);
  margin: 0;
  line-height: 1.5;
}
.ash-home .ash-showcase__more {
  text-align: center;
  margin-top: 32px;
}

/* =============================================================
   6. WHY ALPHASTORE
   ============================================================= */
.ash-home .ash-why {
  padding: 72px 0;
  background: var(--ash-white);
  border-top: 1px solid var(--ash-border);
}
.ash-home .ash-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ash-home .ash-why-card {
  background: var(--ash-bg);
  border: 1px solid var(--ash-border);
  border-radius: var(--ash-radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ash-home .ash-why-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ash-home .ash-why-card__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.ash-home .ash-why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: var(--ash-text);
}
.ash-home .ash-why-card p {
  font-size: 0.85rem;
  color: var(--ash-muted);
  margin: 0;
  line-height: 1.6;
}

/* =============================================================
   7. GALLERY
   ============================================================= */
.ash-home .ash-gallery {
  padding: 72px 0;
  background: var(--ash-bg);
  border-top: 1px solid var(--ash-border);
}
.ash-home .ash-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 12px;
}
.ash-home .ash-gallery-item {
  border-radius: var(--ash-radius);
  overflow: hidden;
  border: 1px solid var(--ash-border);
  background: var(--ash-bg);
}
.ash-home .ash-gallery-item--tall {
  grid-row: span 2;
}
.ash-home .ash-gallery-item--wide {
  grid-column: span 2;
}
.ash-home .ash-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.ash-home .ash-gallery-item:hover img {
  transform: scale(1.05);
}
.ash-home .ash-gallery__cta {
  text-align: center;
  margin-top: 32px;
}

/* =============================================================
   8. REVIEWS
   ============================================================= */
.ash-home .ash-reviews {
  padding: 72px 0;
  background: var(--ash-white);
  border-top: 1px solid var(--ash-border);
}
.ash-home .ash-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ash-home .ash-review-card {
  background: var(--ash-bg);
  border: 1px solid var(--ash-border);
  border-radius: var(--ash-radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ash-home .ash-review-card__stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
}
.ash-home .ash-review-card p {
  font-size: 0.88rem;
  color: var(--ash-text);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.ash-home .ash-review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--ash-border);
}
.ash-home .ash-review-card__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ash-green);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ash-home .ash-review-card__author strong {
  font-size: 0.88rem;
  color: var(--ash-text);
}
.ash-home .ash-reviews__cta {
  text-align: center;
  margin-top: 36px;
}

/* =============================================================
   9. PARTNERS
   ============================================================= */
.ash-home .ash-partners {
  padding: 56px 0;
  background: var(--ash-bg);
  border-top: 1px solid var(--ash-border);
}
.ash-home .ash-partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.ash-home .ash-partner-card {
  background: var(--ash-white);
  border: 1px solid var(--ash-border);
  border-radius: var(--ash-radius-lg);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  min-width: 180px;
}
.ash-home .ash-partner-card:hover {
  border-color: var(--ash-green);
  box-shadow: var(--ash-shadow);
  transform: translateY(-2px);
}
.ash-home .ash-partner-card img {
  height: 40px;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* =============================================================
   10. FINAL CTA
   ============================================================= */
.ash-home .ash-cta-final {
  padding: 72px 0;
  background: var(--ash-green-deep);
  border-top: 1px solid var(--ash-green-dark);
}
.ash-home .ash-cta-final__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ash-home .ash-cta-final__inner h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--ash-white);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.ash-home .ash-cta-final__inner p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}
.ash-home .ash-cta-final__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

/* =============================================================
   HEADER FIX — page-scoped, outside .ash-home
   Forces nav links to be readable on the light hero background.
   Reverts automatically once .ash-home-scrolled is added by JS.
   ============================================================= */

/* Nav links — dark text when at top of page */
html.ash-home-active:not(.ash-home-scrolled) header a,
html.ash-home-active:not(.ash-home-scrolled) header nav a,
html.ash-home-active:not(.ash-home-scrolled) .store-header a,
html.ash-home-active:not(.ash-home-scrolled) .navbar a,
html.ash-home-active:not(.ash-home-scrolled) .nav-link,
html.ash-home-active:not(.ash-home-scrolled) .navbar-nav a,
html.ash-home-active:not(.ash-home-scrolled) [class*="nav"] a {
  color: #102013 !important;
}
html.ash-home-active:not(.ash-home-scrolled) header a:hover,
html.ash-home-active:not(.ash-home-scrolled) header nav a:hover,
html.ash-home-active:not(.ash-home-scrolled) .navbar a:hover,
html.ash-home-active:not(.ash-home-scrolled) [class*="nav"] a:hover {
  color: #039006 !important;
}

/* Hamburger / mobile menu icon lines — dark */
html.ash-home-active:not(.ash-home-scrolled) .navbar-toggler-icon,
html.ash-home-active:not(.ash-home-scrolled) [class*="burger"] span,
html.ash-home-active:not(.ash-home-scrolled) [class*="menu-toggle"] span,
html.ash-home-active:not(.ash-home-scrolled) header button span {
  background-color: #102013 !important;
}
html.ash-home-active:not(.ash-home-scrolled) .navbar-toggler {
  border-color: #dcefdc !important;
}

/* Force dark AlphaStore logo — preserve original dimensions */
html.ash-home-active .store-header__logo img,
html.ash-home-active header .logo img,
html.ash-home-active .header-logo img,
html.ash-home-active .navbar-brand img {
  content: url('https://cdn.tebex.io/store/1039415/templates/109221/assets/14c28b8dcf9ad3eaaf250ac3657c2714964d4031.webp');
  width: auto !important;
  height: auto !important;
  max-height: 40px !important;
  max-width: none !important;
}


html.ash-home-active header,
html.ash-home-active .store-header,
html.ash-home-active .navbar {
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

/* Tablet: 900px */
@media (max-width: 900px) {
  .ash-home .ash-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  .ash-home .ash-hero__content {
    max-width: 100%;
  }
  .ash-home .ash-hero__collage {
    height: 300px;
  }
  .ash-home .ash-hero__stat {
    padding: 0 16px;
  }
  .ash-home .ash-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ash-home .ash-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ash-home .ash-featured__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ash-home .ash-featured__imgs {
    height: 280px;
  }
  .ash-home .ash-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ash-home .ash-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ash-home .ash-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ash-home .ash-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ash-home .ash-gallery-item--wide {
    grid-column: span 2;
  }
}

/* Mobile: 640px */
@media (max-width: 640px) {
  .ash-home .ash-hero {
    padding-top: 36px;
  }
  .ash-home .ash-hero__collage {
    height: 220px;
  }
  .ash-home .ash-hero__col--side {
    display: none;
  }
  .ash-home .ash-hero__stats {
    flex-wrap: wrap;
    gap: 0;
  }
  .ash-home .ash-hero__stat-divider {
    display: none;
  }
  .ash-home .ash-hero__stat {
    width: 50%;
    padding: 10px 0;
    border-bottom: 1px solid var(--ash-border);
  }
  .ash-home .ash-cat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ash-home .ash-products-grid {
    grid-template-columns: 1fr;
  }
  .ash-home .ash-showcase-grid {
    grid-template-columns: 1fr;
  }
  .ash-home .ash-why-grid {
    grid-template-columns: 1fr;
  }
  .ash-home .ash-reviews-grid {
    grid-template-columns: 1fr;
  }
  .ash-home .ash-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
  }
  .ash-home .ash-gallery-item--wide {
    grid-column: span 2;
  }
  .ash-home .ash-gallery-item--tall {
    grid-row: span 1;
  }
  .ash-home .ash-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ash-home .ash-tabs::-webkit-scrollbar {
    display: none;
  }
  .ash-home .ash-featured__ctas {
    flex-direction: column;
  }
  .ash-home .ash-featured__ctas .ash-btn {
    text-align: center;
    justify-content: center;
  }
  .ash-home .ash-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .ash-home .ash-partners-row {
    flex-direction: column;
  }
  .ash-home .ash-cta-final__btns {
    flex-direction: column;
    width: 100%;
  }
  .ash-home .ash-cta-final__btns .ash-btn {
    justify-content: center;
  }
}