/** Shopify CDN: Minification failed

Line 6650:0 Expected "}" to go with "{"

**/
/* ========================================
   ADDITIONAL PARITY FIXES - 2026-02-21
   ======================================== */

/* Background color parity */
body.ag-shell {
  background: var(--bg-cream, #f9f8f6);
}

/* ============================================================================
   PRODUCT CARDS - Burlap Texture Overlay
   ============================================================================ */

/* Burlap woven fabric texture for product cards */
.ag-card__texture-overlay {
  background-image:
    /* Woven cross-hatch pattern - horizontal threads */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 1px,
      rgba(139, 115, 85, 0.12) 1px,
      rgba(139, 115, 85, 0.12) 2px,
      transparent 2px,
      transparent 3px
    ),
    /* Woven cross-hatch pattern - vertical threads */
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(139, 115, 85, 0.12) 1px,
      rgba(139, 115, 85, 0.12) 2px,
      transparent 2px,
      transparent 3px
    ),
    /* Subtle fabric weave texture */
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(101, 85, 65, 0.06) 2px,
      rgba(101, 85, 65, 0.06) 3px
    ),
    /* Noise overlay for organic feel */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.6;
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Alternative burlap background directly on card content */
.ag-card__content {
  position: relative;
}

.ag-card__content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    /* Fine woven threads */
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      rgba(139, 115, 85, 0.08) 1px,
      transparent 2px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      rgba(139, 115, 85, 0.08) 1px,
      transparent 2px,
      transparent 3px
    );
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.8;
  mix-blend-mode: soft-light;
  z-index: 0;
}

/* Collection Hero Universal Dark Theme */
.ag-collection-hero {
  background: #000 !important;
}

.ag-collection-hero__img {
  opacity: 0.5 !important;
}

.ag-collection-hero__overlay {
  display: none !important;
}

.ag-collection-hero__subheading {
  color: #ffffff !important;
  font-weight: 500 !important;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5) !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
}

/* Collection Hero Desktop - Critical Fix */
@media (min-width: 1024px) {
  .ag-collection-hero {
    min-height: 85vh;
    position: relative;
  }

  .ag-collection-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .ag-collection-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }



  .ag-collection-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    padding: clamp(6rem, 12vh, 12rem) 2rem;
  }

  .ag-collection-hero__text-wrapper {
    padding: 3rem 4rem;
    background: rgba(26, 71, 49, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    max-width: 52rem;
    text-align: center;
  }

  .ag-collection-hero__title {
    font-family: var(--ag-font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.25rem;
  }

  .ag-collection-hero__title-highlight {
    color: #f6b900;
    opacity: 0.95;
  }

  .ag-collection-hero__subheading {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.6;
    max-width: 52ch;
    margin: 0 auto 2rem;
  }

  .ag-collection-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .ag-collection-hero__btn {
    min-height: 54px;
    min-width: 220px;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
  }

  .ag-collection-hero__btn--primary {
    background: linear-gradient(180deg, #F97316 0%, #ea580c 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4);
  }

  .ag-collection-hero__btn--secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
  }
}

/* Product Grid Desktop - Collection Page */
@media (min-width: 1024px) {
  .ag-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .ag-product-grid__item {
    min-width: 0;
  }

  .ag-collection-section {
    padding-block: 5rem 4rem;
  }
}

/* Homepage Hero Desktop */
@media (min-width: 1024px) {
  .ag-home-hero {
    min-height: clamp(800px, 100svh, 950px);
  }

  .ag-home-hero__video {
    filter: saturate(1.03) contrast(1.08) brightness(0.96);
  }

  .ag-home-hero__content {
    padding-block: clamp(6rem, 14vh, 12rem);
  }

  .ag-home-hero__heading {
    font-size: clamp(2.75rem, 7.5vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.035em;
  }

  .ag-home-hero__subheading {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 52ch;
  }

  .ag-home-hero__actions {
    gap: 1rem;
    margin-top: 0.75rem;
  }

  .ag-home-hero__button {
    min-height: 54px;
    min-width: 220px;
    padding: 1rem 2.25rem;
    font-size: 0.875rem;
  }
}

/* Homepage Featured Collection Desktop */
@media (min-width: 1024px) {
  .ag-featured-collection {
    padding-block: clamp(5rem, 10vw, 8rem);
    background: #fffcf7;
  }

  .ag-featured-collection__header--centered {
    margin-bottom: 4.5rem;
    text-align: center;
  }

  .ag-featured-collection__header .ag-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
    color: #1a4731;
  }

  .ag-featured-collection__header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
  }

  .ag-featured-collection__subheading {
    font-size: 1.0625rem;
    color: #5a6370;
    max-width: 44ch;
    margin: 0 auto;
  }

  .ag-featured-collection__grid--home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }
}

/* Trust Band Desktop */
@media (min-width: 1024px) {
  .ag-trust-band {
    padding-block: clamp(2rem, 3.5vw, 3.5rem);
    background: #1a4731;
  }

  .ag-trust-band__inner {
    gap: clamp(3rem, 6vw, 7rem);
  }

  .ag-trust-band__item {
    font-size: clamp(0.75rem, 0.9vw, 0.9375rem);
    gap: 0.875rem;
  }

  .ag-trust-band__icon svg {
    width: 26px;
    height: 26px;
  }
}

/* Testimonials Desktop */
@media (min-width: 1024px) {
  .ag-testimonials {
    padding-block: clamp(5rem, 10vw, 8rem);
    background: #fbf9f4;
  }

  .ag-testimonials__header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .ag-testimonials__editorial-heading {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    margin-bottom: 1.75rem;
  }

  .ag-testimonials__editorial-subheading {
    font-size: 1.125rem;
    max-width: 56ch;
    margin: 0 auto;
  }

  .ag-testimonials__12col-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
  }

  .ag-testimonials__item--span-5 {
    grid-column: span 5;
  }

  .ag-testimonials__item--span-7 {
    grid-column: span 7;
  }

  .ag-testimonials__item--offset-7 {
    grid-column: 7 / span 5;
  }

  .ag-testimonial-card--cinematic {
    padding: clamp(2.5rem, 4vw, 3.5rem);
    border-radius: 24px;
    border-top: 3px solid rgba(237, 180, 77, 0.35);
  }

  .is-featured .ag-testimonial-card--cinematic {
    transform: scale(1.02);
    border-top-color: #f6b900;
  }
}

/* Discovery Links Desktop */
@media (min-width: 1024px) {
  .ag-discovery-links {
    padding-block: clamp(5rem, 10vw, 8rem);
    background: linear-gradient(180deg, #faf7f0 0%, #f5f3f0 100%);
  }

  .ag-discovery-links__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(3rem, 5vw, 5rem);
    max-width: 1100px;
    margin: 0 auto;
  }

  .ag-discovery-links__column {
    padding: clamp(2.5rem, 4vw, 4rem);
    border-radius: 2rem;
  }
}

/* Home Promo Desktop */
@media (min-width: 1024px) {
  .ag-home-promo {
    margin-block: clamp(5rem, 10vw, 8rem);
  }

  .ag-home-promo__card {
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  }

  .ag-home-promo__content {
    padding: clamp(4rem, 8vw, 6rem);
  }

  .ag-home-promo__content h2 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
  }
}

/* Mobile Fixes - 420px and below */
@media (max-width: 420px) {
  .ag-home-hero {
    min-height: 620px;
  }

  .ag-home-hero__text-wrapper {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .ag-home-hero__eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.625rem;
  }

  .ag-home-hero__heading {
    font-size: clamp(1.625rem, 7vw, 2rem);
    line-height: 1.05;
  }

  .ag-home-hero__subheading {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .ag-home-hero__button-primary,
  .ag-home-hero__button-secondary,
  .ag-home-hero__button {
    min-width: 100%;
    min-height: 48px;
    font-size: 0.75rem;
    padding: 0.875rem 1.25rem;
  }

  .ag-home-hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .ag-header__logo {
    height: 44px;
    width: auto;
  }

  .ag-header-wrap {
    min-height: 64px;
  }

  .ag-featured-collection__header--centered {
    margin-bottom: 2rem;
  }

  .ag-featured-collection__grid--home,
  .ag-featured-collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  .ag-card__content {
    padding: 1rem;
  }

  .ag-card__title {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
  }

  .ag-card__excerpt {
    font-size: 0.75rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .ag-card__price {
    font-size: 1.125rem;
  }

  .ag-card__add-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.625rem;
    min-height: 34px;
    border-radius: 8px;
  }

  .ag-card__actions-row {
    gap: 0.75rem;
  }

  .ag-trust-band {
    padding-block: 1.25rem;
  }

  .ag-trust-band__inner {
    flex-direction: column;
    gap: 0.875rem;
  }

  .ag-trust-band__item {
    font-size: 0.625rem;
    gap: 0.5rem;
  }

  .ag-trust-band__icon svg {
    width: 18px;
    height: 18px;
  }

  .ag-kicker {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
  }

  .h1,
  .ag-featured-collection__header h2 {
    font-size: 1.5rem;
  }

  .ag-featured-collection__subheading {
    font-size: 0.8125rem;
  }

  .ag-testimonials {
    padding-block: 3rem;
  }

  .ag-testimonials__editorial-heading {
    font-size: 1.75rem;
  }

  .ag-testimonials__editorial-subheading {
    font-size: 0.9375rem;
  }

  .ag-home-promo {
    margin-block: 2.5rem;
  }

  .ag-home-promo__card {
    border-radius: 20px;
  }

  .ag-home-promo__content {
    padding: 1.75rem 1.25rem;
  }

  .ag-home-promo__content h2 {
    font-size: 1.5rem;
  }

  .ag-home-promo__subheading {
    font-size: 0.9375rem;
  }

  .ag-discovery-links {
    padding-block: 3rem;
  }

  .ag-discovery-links__column {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .ag-discovery-links__title {
    font-size: 1.25rem;
  }
}

/* Collection Page Mobile Fixes */
@media (max-width: 420px) {
  .ag-collection-hero {
    min-height: 58vh;
  }

  .ag-collection-hero__content {
    padding: 2rem 1rem;
  }

  .ag-collection-hero__text-wrapper {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }

  .ag-collection-hero__eyebrow {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: normal;
    margin-bottom: 0.75rem;
  }

  .ag-collection-hero__title {
    font-weight: 300;
    font-size: 1.375rem;
    line-height: 1.1;
    margin-bottom: 0.625rem;
  }

  .ag-collection-hero__title-highlight {
    color: #f6b900;
  }

  .ag-collection-hero__subheading {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .ag-collection-hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 0.625rem;
  }

  .ag-collection-hero__btn {
    min-width: 100%;
    min-height: 48px;
    font-size: 0.6875rem;
    padding: 0.875rem 1rem;
    border-radius: 999px;
  }

  .ag-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .ag-filter-panel {
    padding: 1.25rem 0;
  }

  .ag-filter-panel__label {
    font-size: 0.5625rem;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0.75rem;
  }

  .ag-filter-panel__heading {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .ag-filter-panel__subheading {
    font-size: 0.8125rem;
  }

  .ag-filter-list {
    gap: 0.5rem;
    margin-top: 1.25rem;
  }

  .ag-filter-pill {
    padding: 0.375rem 0.75rem;
    font-size: 0.625rem;
  }

  .ag-heritage-section {
    padding: 2rem 0;
  }

  .ag-heritage-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .ag-heritage-stat {
    font-size: 1.75rem;
    margin-bottom: 0.125rem;
  }

  .ag-heritage-stat-label {
    font-size: 0.5625rem;
    letter-spacing: 0.08em;
  }

  .ag-story-badge {
    width: 60px;
    height: 60px;
    padding: 0.5rem;
    font-size: 0.5rem;
    top: -0.625rem;
    right: -0.625rem;
    border-radius: 50%;
  }

  .ag-collection-banner__card {
    border-radius: 1rem;
  }

  .ag-collection-banner__content {
    padding: 1.25rem 1rem;
  }

  .ag-collection-banner__icon svg {
    width: 24px;
    height: 24px;
  }

  .ag-collection-banner__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .ag-collection-banner__text {
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }

  .ag-collection-banner__footer {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.5625rem;
    margin-top: 1.5rem;
  }
}

/* Card Premium Styles */
.ag-card--premium {
  background: #fff;
  border-radius: clamp(1rem, 2.5vw, 1.375rem);
  border: 1px solid rgba(14, 62, 41, 0.04);
  box-shadow: 0 4px 20px rgba(14, 62, 41, 0.04), 0 1px 4px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ag-card--premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(14, 62, 41, 0.12), 0 10px 24px rgba(14, 62, 41, 0.06), 0 0 0 1px rgba(246, 185, 0, 0.15);
}

.ag-card--premium .ag-card__media-wrapper {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f9f7f3 0%, #f0e8dc 100%);
}

.ag-card--premium .ag-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ag-card--premium:hover .ag-card__img {
  transform: scale(1.05);
}

/* Accent Text Gradient */
.ag-accent-text {
  background: linear-gradient(90deg, #d4941a, #f6b900);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Skip Link */
.ag-skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background: #1a4731;
  color: #fff;
  text-decoration: none;
  font-family: var(--ag-font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0 0 0.5rem 0.5rem;
  z-index: 10000;
  transition: top 0.2s ease;
}

.ag-skip-link:focus {
  top: 0;
}

/* Collection Section Background */
.ag-collection-section {
  background: #fffcf7;
}

/* Pagination Wrapper */
.ag-pagination-wrapper {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(14, 62, 41, 0.08);
}

/* Footer Spacing */
.ag-site-frame__footer {
  margin-top: 0;
}

/* Ensure body background matches baseline */
body {
  background-color: var(--bg-cream, #f9f8f6);
}

/* Heritage Section Classes */
.ag-collection-section--premium {
  padding-block: 5rem 3rem;
  background: #fffcf5;
}

/* ========================================
   CRITICAL PARITY FIXES - 2026-02-21 FINAL
   Targeting 95%+ visual match
   ======================================== */

/* Global Background Fix */
html,
body,
.ag-shell,
.ag-site-frame,
.ag-main {
  background-color: #f9f8f6 !important;
}

/* Homepage Hero - Exact Match */
.ag-home-hero {
  min-height: clamp(680px, 92vh, 880px) !important;
  margin-bottom: 0 !important;
  position: relative;
  overflow: hidden;
  background: #000 !important;
}

.ag-home-hero__media {
  position: absolute;
  inset: 0;
}

.ag-home-hero__video {
  opacity: 0.5 !important;
}

.ag-home-hero__overlay {
  display: none !important;
}

.ag-home-hero__content {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(4rem, 10vh, 8rem);
}

.ag-home-hero__text-wrapper {
  background: rgba(14, 62, 41, 0.18) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 1.75rem !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  padding: 2rem 2.5rem !important;
  max-width: 42rem !important;
  text-align: center;
}

.ag-home-hero__eyebrow {
  font-family: var(--ag-font-ui) !important;
  font-size: clamp(0.65rem, 0.9vw, 0.8rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255, 244, 228, 0.9) !important;
  margin: 0 0 0.75rem 0 !important;
}

.ag-home-hero__heading {
  font-family: var(--ag-font-display) !important;
  font-size: clamp(2rem, 6.5vw, 4.5rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.03em !important;
  color: #fff !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.2) !important;
  margin: 0 0 1rem 0 !important;
}

.ag-home-hero__subheading {
  font-size: clamp(0.95rem, 1.9vw, 1.2rem) !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5) !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
  margin: 0 0 1.25rem 0 !important;
  max-width: 48ch !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.ag-home-hero__actions {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 0.85rem !important;
  margin-top: 0.5rem !important;
}

.ag-home-hero__button-primary,
.ag-home-hero__button-primary.ag-button--primary {
  background: linear-gradient(180deg, #F97316 0%, #ea580c 100%) !important;
  color: #fff !important;
  min-height: 50px !important;
  min-width: 200px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  padding: 0.875rem 1.35rem !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  border: none !important;
}

.ag-home-hero__button-secondary,
.ag-home-hero__button-secondary.ag-button--ghost {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  min-height: 50px !important;
  min-width: 200px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  padding: 0.875rem 1.35rem !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

/* Trust Band - Exact Match */
.ag-trust-band {
  background: #0e3e29 !important;
  color: #f8efe2 !important;
  padding-block: clamp(1.5rem, 2.8vw, 2.5rem) !important;
}

.ag-trust-band__inner {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: clamp(1.25rem, 3.5vw, 4rem) !important;
}

.ag-trust-band__item {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  margin: 0 !important;
  text-align: left !important;
  font-family: var(--ag-font-ui) !important;
  font-weight: 600 !important;
  font-size: clamp(0.7rem, 0.85vw, 0.875rem) !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.ag-trust-band__icon {
  display: flex !important;
  flex-shrink: 0 !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

.ag-trust-band__icon svg {
  width: clamp(20px, 1.5vw, 24px) !important;
  height: auto !important;
}

/* Featured Collection Section */
.ag-featured-collection {
  background: #fffcf7 !important;
  padding-block: clamp(2.5rem, 5vw, 4rem) !important;
}

.ag-featured-collection__header--centered {
  text-align: center !important;
  margin-bottom: clamp(2rem, 4vw, 3rem) !important;
}

.ag-featured-collection__header .ag-kicker {
  font-size: 0.75rem !important;
  letter-spacing: 0.14em !important;
  color: #1a4731 !important;
  margin-bottom: 0.75rem !important;
}

.ag-featured-collection__header h2,
.ag-featured-collection__header .h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  margin-bottom: 0.75rem !important;
  font-family: var(--ag-font-display) !important;
  color: #1a4731 !important;
}

.ag-featured-collection__subheading {
  font-size: 1rem !important;
  color: #5a6370 !important;
  max-width: 44ch !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
}

.ag-featured-collection__grid--home {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: clamp(1.5rem, 2.5vw, 2rem) !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}

/* Product Card - Exact Match */
.ag-card--premium,
.ag-card.ag-card--premium {
  background: #fff !important;
  border-radius: 16px !important;
  border: 1px solid rgba(14, 62, 41, 0.05) !important;
  box-shadow: 0 4px 16px rgba(14, 62, 41, 0.05) !important;
  overflow: hidden !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ag-card--premium:hover,
.ag-card.ag-card--premium:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 32px rgba(14, 62, 41, 0.08) !important;
  border-color: rgba(246, 185, 0, 0.45) !important;
}

.ag-card--premium .ag-card__media-wrapper,
.ag-card .ag-card__image-container {
  aspect-ratio: 4 / 5 !important;
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(145deg, #f9f7f3 0%, #f0e8dc 100%) !important;
}

.ag-card--premium .ag-card__img,
.ag-card .ag-card__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.ag-card--premium:hover .ag-card__img,
.ag-card:hover .ag-card__img {
  transform: scale(1.06) !important;
}

.ag-card__content {
  padding: 1.75rem !important;
  display: flex !important;
  flex-direction: column !important;
}

.ag-card__title {
  font-family: var(--ag-font-display) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #0e3e29 !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.2 !important;
}

.ag-product-card__rating {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 0.6rem !important;
}

.ag-product-card__stars {
  font-size: 11px !important;
  color: #f38f18 !important;
  letter-spacing: 1px !important;
}

.ag-product-card__rating-label {
  font-size: 9px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: #6b7280 !important;
}

.ag-card__excerpt {
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
  color: #6b7280 !important;
  margin-bottom: 1.5rem !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.ag-card__footer {
  margin-top: auto !important;
  padding-top: 0.875rem !important;
  border-top: 1px solid rgba(14, 62, 41, 0.06) !important;
}

.ag-card__actions-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 1rem !important;
}

.ag-card__price {
  font-family: var(--ag-font-display) !important;
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  color: #0e3e29 !important;
  line-height: 1 !important;
}

.ag-card__add-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem !important;
  padding: 10px 18px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-radius: 10px !important;
  background: #edb44d !important;
  color: #0e3e29 !important;
  box-shadow: 0 4px 12px rgba(237, 180, 77, 0.3) !important;
  border: 0 !important;
  cursor: pointer !important;
  min-height: 44px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.ag-card__add-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(237, 180, 77, 0.4) !important;
}

.ag-card__micro-copy {
  font-size: 0.75rem !important;
  color: #9ca3af !important;
  margin-top: 0.5rem !important;
}

/* Product Badge */
.ag-product-card__badge,
.ag-card .ag-product-card__badge {
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  z-index: 10 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
  font-family: var(--ag-font-ui) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  background: #0e3e29 !important;
  color: #f6b900 !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
}

/* View All Button */
.ag-featured-collection__view-all,
.ag-button--rust {
  background: #CC5500 !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.875rem 2rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(204, 85, 0, 0.2) !important;
}

.ag-featured-collection__view-all:hover,
.ag-button--rust:hover {
  background: #e66000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(204, 85, 0, 0.3) !important;
}

/* Testimonials Section */
.ag-testimonials {
  background: #fbf9f4 !important;
  padding-block: clamp(4rem, 8vw, 6rem) !important;
  position: relative !important;
}

.ag-testimonials__header {
  text-align: center !important;
  margin-bottom: clamp(2.5rem, 5vw, 4rem) !important;
}

.ag-testimonials__editorial-heading {
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
  color: #000 !important;
  font-family: var(--ag-font-display) !important;
}

.ag-testimonials__editorial-subheading {
  font-size: 1.125rem !important;
  line-height: 1.65 !important;
  color: #4a4a4a !important;
  max-width: 48rem !important;
  font-weight: 500 !important;
  margin: 0 auto !important;
}

.ag-testimonials__12col-grid {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 3rem !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

.ag-testimonials__item--span-5 {
  grid-column: span 5 !important;
}

.ag-testimonials__item--span-7 {
  grid-column: span 7 !important;
}

.ag-testimonials__item--offset-7 {
  grid-column: 7 / span 5 !important;
}

.ag-testimonial-card--cinematic {
  height: 100% !important;
  background: #ffffff !important;
  border-top: 2px solid rgba(237, 180, 77, 0.3) !important;
  border-radius: 20px !important;
  padding: clamp(2rem, 4vw, 3rem) !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.3s ease !important;
}

.is-featured .ag-testimonial-card--cinematic {
  transform: scale(1.03) !important;
  border-top-color: #f6b900 !important;
}

.ag-testimonial-card__badge-pill {
  background: #0e3e29 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  border-radius: 999px !important;
  padding: 0.5rem 1rem !important;
  margin-bottom: 1.5rem !important;
  width: fit-content !important;
}

.ag-testimonial-card__stars {
  display: flex !important;
  gap: 0.25rem !important;
  margin-bottom: 1.5rem !important;
}

.ag-testimonial-card__star-icon {
  width: 20px !important;
  height: 20px !important;
  fill: #0e3e29 !important;
  stroke: #0e3e29 !important;
}

.is-featured .ag-testimonial-card__star-icon {
  fill: #f6b900 !important;
  stroke: #f6b900 !important;
}

.ag-testimonial-card__quote {
  font-family: var(--ag-font-display) !important;
  font-size: clamp(1.125rem, 2vw, 1.5rem) !important;
  line-height: 1.6 !important;
  color: #1a1a1a !important;
  font-weight: 500 !important;
  margin: 0 0 2rem 0 !important;
  flex-grow: 1 !important;
}

.ag-testimonial-card__author {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  margin-top: auto !important;
}

.ag-testimonial-card__avatar {
  width: 3.5rem !important;
  height: 3.5rem !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #e2ece8 !important;
}

.ag-testimonial-card__name {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin: 0 !important;
  font-family: var(--ag-font-display) !important;
}

.ag-testimonial-card__role {
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #666 !important;
  margin: 0 !important;
}

/* Discovery Links Section */
.ag-discovery-links {
  background: linear-gradient(180deg, #faf7f0 0%, #f5f3f0 100%) !important;
  padding-block: clamp(4rem, 8vw, 6rem) !important;
}

.ag-discovery-links__grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: clamp(2rem, 4vw, 4rem) !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

.ag-discovery-links__column {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(14, 62, 41, 0.06) !important;
  border-radius: 2rem !important;
  padding: clamp(2rem, 4vw, 3.5rem) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
}

.ag-discovery-links__column:hover {
  background: #ffffff !important;
  box-shadow: 0 25px 50px -12px rgba(14, 62, 41, 0.12) !important;
  border-color: rgba(14, 62, 41, 0.1) !important;
  transform: translateY(-4px) !important;
}

.ag-discovery-links__column-header {
  margin-bottom: 2.5rem !important;
}

.ag-discovery-links__title {
  font-family: var(--ag-font-display) !important;
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  color: #0e3e29 !important;
  margin: 0 0 0.75rem 0 !important;
  font-weight: 500 !important;
}

.ag-discovery-links__title-line {
  width: 40px !important;
  height: 2px !important;
  background: #d4941a !important;
  border-radius: 1px !important;
}

.ag-discovery-links__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.ag-discovery-links__anchor {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-decoration: none !important;
  color: #0e3e29 !important;
  transition: color 0.2s ease !important;
  width: 100% !important;
}

.ag-discovery-links__anchor:hover {
  color: #cc5500 !important;
}

.ag-discovery-links__link-text {
  font-family: var(--ag-font-display) !important;
  font-size: 1.125rem !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

.ag-discovery-links__arrow {
  font-size: 1.25rem !important;
  opacity: 0.4 !important;
  transform: translateX(0) !important;
  transition: all 0.3s ease !important;
}

.ag-discovery-links__anchor:hover .ag-discovery-links__arrow {
  opacity: 1 !important;
  transform: translateX(6px) !important;
  color: #cc5500 !important;
}

.ag-discovery-links__description {
  margin: 0.4rem 0 0 0 !important;
  font-size: 0.9375rem !important;
  color: #525252 !important;
  max-width: 90% !important;
  line-height: 1.5 !important;
}

/* Home Promo Section */
.ag-home-promo {
  margin-block: clamp(3rem, 6vw, 5rem) !important;
}

.ag-home-promo__card {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 32px !important;
  background: #0e3e29 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-items: center !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
}

.ag-home-promo__content {
  position: relative !important;
  z-index: 3 !important;
  padding: clamp(2rem, 6vw, 5rem) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  color: #fff !important;
}

.ag-home-promo__content h2 {
  color: #fff !important;
  font-size: clamp(2rem, 4.6vw, 3.35rem) !important;
  margin: 0 !important;
  line-height: 1.04 !important;
  font-family: var(--ag-font-display) !important;
}

.ag-home-promo__pill {
  margin: 0 !important;
  justify-self: start !important;
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.13) !important;
  padding: 0.32rem 0.75rem !important;
  font-family: var(--ag-font-ui) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.ag-home-promo__subheading {
  color: rgba(255, 255, 255, 0.86) !important;
  max-width: 48ch !important;
  font-size: 1.08rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.ag-home-promo__cta {
  align-self: flex-start !important;
  margin-top: 1rem !important;
  padding-inline: 2.2rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.ag-home-promo__media {
  position: relative !important;
  overflow: hidden !important;
  margin: 0 !important;
}

.ag-home-promo__image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Desktop Layout for Home Promo */
@media (min-width: 1024px) {
  .ag-home-promo__card {
    grid-template-columns: 1.2fr 1fr !important;
  }
}

/* ========================================
   COLLECTION PAGE FIXES
   ======================================== */

/* Collection Hero */
.ag-collection-hero {
  min-height: clamp(400px, 70vh, 80vh) !important;
  position: relative !important;
  overflow: hidden !important;
}

.ag-collection-hero__bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}

.ag-collection-hero__bg video,
.ag-collection-hero__bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.ag-collection-hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom, rgba(14, 62, 41, 0.45) 0%, rgba(14, 62, 41, 0.2) 50%, rgba(14, 62, 41, 0.6) 100%) !important;
  z-index: 1 !important;
}

.ag-collection-hero__content {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: inherit !important;
  padding: clamp(4rem, 10vh, 10rem) 2rem !important;
}

.ag-collection-hero__text-wrapper {
  padding: 2.5rem !important;
  background: rgba(14, 62, 41, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 2rem !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
  max-width: 44rem !important;
  text-align: center !important;
}

.ag-collection-hero__eyebrow {
  font-family: var(--ag-font-ui) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255, 244, 228, 0.9) !important;
  margin: 0 0 0.75rem 0 !important;
  display: block !important;
}

.ag-collection-hero__title {
  font-family: var(--ag-font-display) !important;
  font-size: clamp(2rem, 5vw, 3rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.1 !important;
  margin-bottom: 1rem !important;
}

.ag-collection-hero__title-main {
  display: block !important;
}

.ag-collection-hero__title-highlight {
  color: #f6b900 !important;
  opacity: 0.95 !important;
}

.ag-collection-hero__subheading {
  font-size: clamp(1rem, 1.5vw, 1.125rem) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.5 !important;
  margin-bottom: 1.5rem !important;
}

.ag-collection-hero__actions {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 0.85rem !important;
  margin-top: 0.5rem !important;
}

.ag-collection-hero__btn {
  min-height: 50px !important;
  min-width: 180px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  padding-inline: 1.5rem !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.ag-collection-hero__btn--primary,
.ag-button--primary.ag-collection-hero__btn {
  background: linear-gradient(180deg, #F97316 0%, #ea580c 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35) !important;
  border: none !important;
}

.ag-collection-hero__btn--secondary,
.ag-button--ghost.ag-collection-hero__btn {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: none !important;
}

.ag-collection-hero__btn--secondary:hover,
.ag-button--ghost.ag-collection-hero__btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

/* Collection Section */
.ag-collection-section {
  background: #fffcf7 !important;
  padding-block: clamp(2rem, 3.5vw, 3rem) !important;
}

/* Filter Panel */
.ag-filter-panel {
  padding: 2rem 0 !important;
  text-align: center !important;
}

.ag-filter-panel__header {
  margin-bottom: 2rem !important;
}

.ag-filter-panel__label {
  background: #0e3e29 !important;
  color: #fff !important;
  padding: 0.5rem 1rem !important;
  border-radius: 999px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  margin-bottom: 1rem !important;
}

.ag-filter-panel__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
  font-family: var(--ag-font-display) !important;
  color: #0e3e29 !important;
}

.ag-filter-panel__subheading {
  font-size: 1rem !important;
  color: #5a6370 !important;
  max-width: 32rem !important;
  margin: 0 auto !important;
  line-height: 1.5 !important;
}

.ag-filter-list {
  display: flex !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  flex-wrap: wrap !important;
  margin-top: 2rem !important;
}

/* Product Grid - Desktop 4 columns */
@media (min-width: 1280px) {
  .ag-product-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .ag-product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Heritage Section */
.ag-heritage-section {
  background: #0e3e29 !important;
  color: #fff !important;
  padding: 5rem 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.ag-heritage-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 6rem !important;
  align-items: center !important;
}

.ag-heritage-stat {
  font-family: var(--ag-font-display) !important;
  font-size: clamp(2.5rem, 6vw, 3.5rem) !important;
  font-weight: 500 !important;
  color: #fff !important;
  line-height: 1 !important;
  margin-bottom: 0.25rem !important;
  display: block !important;
}

.ag-heritage-stat-label {
  font-family: var(--ag-font-ui) !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.ag-story-badge {
  background: #CC5500 !important;
  color: #fff !important;
  padding: 1.25rem !important;
  border-radius: 50% !important;
  width: 120px !important;
  height: 120px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-family: var(--ag-font-display) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  position: absolute !important;
  top: -1.5rem !important;
  right: -1.5rem !important;
  z-index: 5 !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
  transform: rotate(12deg) !important;
}

/* ========================================
   MOBILE FIXES - 390px
   ======================================== */

@media (max-width: 390px) {
  .ag-home-hero {
    min-height: 580px !important;
  }

  .ag-home-hero__text-wrapper {
    padding: 1.25rem !important;
    border-radius: 1.25rem !important;
    margin: 0 0.5rem !important;
  }

  .ag-home-hero__eyebrow {
    font-size: 0.58rem !important;
    margin-bottom: 0.5rem !important;
  }

  .ag-home-hero__heading {
    font-size: 1.5rem !important;
    line-height: 1.05 !important;
  }

  .ag-home-hero__subheading {
    font-size: 0.8125rem !important;
    line-height: 1.45 !important;
  }

  .ag-home-hero__actions {
    flex-direction: column !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }

  .ag-home-hero__button-primary,
  .ag-home-hero__button-secondary {
    width: 100% !important;
    min-width: unset !important;
    min-height: 44px !important;
    font-size: 0.6875rem !important;
    padding: 0.75rem 1rem !important;
  }

  .ag-trust-band {
    padding-block: 1rem !important;
  }

  .ag-trust-band__inner {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .ag-trust-band__item {
    font-size: 0.5625rem !important;
    gap: 0.5rem !important;
  }

  .ag-trust-band__icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .ag-featured-collection__header--centered {
    margin-bottom: 1.25rem !important;
  }

  .ag-kicker {
    font-size: 0.6rem !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 0.375rem !important;
  }

  .ag-featured-collection__header h2 {
    font-size: 1.375rem !important;
  }

  .ag-featured-collection__subheading {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }

  .ag-featured-collection__grid--home {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.625rem !important;
  }

  .ag-card__content {
    padding: 0.75rem !important;
  }

  .ag-card__title {
    font-size: 0.875rem !important;
    margin-bottom: 0.25rem !important;
  }

  .ag-product-card__rating {
    margin-bottom: 0.375rem !important;
  }

  .ag-product-card__stars {
    font-size: 8px !important;
    letter-spacing: 0.5px !important;
  }

  .ag-product-card__rating-label {
    font-size: 7px !important;
  }

  .ag-card__excerpt {
    font-size: 0.6875rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.625rem !important;
  }

  .ag-card__footer {
    padding-top: 0.625rem !important;
  }

  .ag-card__price {
    font-size: 1rem !important;
  }

  .ag-card__add-btn {
    padding: 0.375rem 0.625rem !important;
    font-size: 0.5625rem !important;
    min-height: 28px !important;
    border-radius: 8px !important;
  }

  .ag-card__add-btn svg {
    width: 12px !important;
    height: 12px !important;
  }

  .ag-card__micro-copy {
    font-size: 0.5625rem !important;
    margin-top: 0.375rem !important;
  }

  .ag-testimonials {
    padding-block: 2.5rem !important;
  }

  .ag-testimonials__12col-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .ag-testimonials__item--span-5,
  .ag-testimonials__item--span-7,
  .ag-testimonials__item--offset-7 {
    grid-column: auto !important;
  }

  .ag-testimonial-card__quote {
    font-size: 1rem !important;
  }

  .ag-home-promo {
    margin-block: 2rem !important;
  }

  .ag-home-promo__card {
    grid-template-columns: 1fr !important;
    border-radius: 20px !important;
  }

  .ag-home-promo__content {
    padding: 1.5rem 1.25rem !important;
    order: 1 !important;
  }

  .ag-home-promo__media {
    order: 0 !important;
    max-height: 200px !important;
  }

  .ag-home-promo__content h2 {
    font-size: 1.5rem !important;
  }

  .ag-home-promo__subheading {
    font-size: 0.875rem !important;
  }

  .ag-discovery-links {
    padding-block: 2.5rem !important;
  }

  .ag-discovery-links__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .ag-discovery-links__column {
    padding: 1.25rem !important;
    border-radius: 1.25rem !important;
  }

  .ag-discovery-links__title {
    font-size: 1.125rem !important;
  }

  /* Collection Page Mobile */
  .ag-collection-hero {
    min-height: 50vh !important;
  }

  .ag-collection-hero__content {
    padding: 2rem 0.75rem !important;
  }

  .ag-collection-hero__text-wrapper {
    padding: 1rem !important;
    border-radius: 1rem !important;
  }

  .ag-collection-hero__eyebrow {
    font-size: 0.5625rem !important;
    margin-bottom: 0.375rem !important;
  }

  .ag-collection-hero__title {
    font-size: 1.25rem !important;
    line-height: 1.1 !important;
    margin-bottom: 0.625rem !important;
  }

  .ag-collection-hero__subheading {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1rem !important;
  }

  .ag-collection-hero__actions {
    flex-direction: column !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }

  .ag-collection-hero__btn {
    width: 100% !important;
    min-width: unset !important;
    min-height: 44px !important;
    font-size: 0.6875rem !important;
    padding: 0.75rem 1rem !important;
    justify-content: center !important;
  }

  .ag-collection-section {
    padding-block: 2.5rem 1.5rem !important;
  }

  .ag-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.625rem !important;
  }

  .ag-filter-panel {
    padding: 1rem 0 !important;
  }

  .ag-filter-panel__label {
    font-size: 0.5625rem !important;
    padding: 0.375rem 0.75rem !important;
    margin-bottom: 0.625rem !important;
  }

  .ag-filter-panel__heading {
    font-size: 1.25rem !important;
  }

  .ag-filter-panel__subheading {
    font-size: 0.75rem !important;
  }

  .ag-filter-list {
    gap: 0.375rem !important;
    margin-top: 1rem !important;
  }

  .ag-filter-pill {
    padding: 0.375rem 0.625rem !important;
    font-size: 0.5625rem !important;
  }

  .ag-heritage-section {
    padding: 2rem 0 !important;
  }

  .ag-heritage-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .ag-heritage-content {
    text-align: center !important;
  }

  .ag-heritage-stat {
    font-size: 1.75rem !important;
    margin-bottom: 0.125rem !important;
  }

  .ag-heritage-stat-label {
    font-size: 0.5625rem !important;
  }

  .ag-story-badge {
    width: 60px !important;
    height: 60px !important;
    padding: 0.5rem !important;
    font-size: 0.5rem !important;
    top: -0.5rem !important;
    right: -0.5rem !important;
  }
}

/* ========================================
   HEADER FIXES
   ======================================== */

.ag-header-wrap {
  position: sticky !important;
  top: 0 !important;
  z-index: 50 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(214, 206, 194, 0.5) !important;
  box-shadow: none !important;
}

.ag-header {
  min-height: 76px !important;
  padding-block: 0.75rem !important;
}

.ag-header__logo {
  height: 56px !important;
  width: auto !important;
}

.ag-header__menu {
  gap: 0.75rem !important;
}

@media (min-width: 1280px) {
  .ag-header__menu {
    gap: 1.5rem !important;
  }
}

.ag-header__menu-link {
  font-family: var(--ag-font-body), 'Crimson Pro', Georgia, serif !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: #0e3e29 !important;
  padding: 0.65rem 0.85rem !important;
  position: relative !important;
}

.ag-header__menu-link:hover {
  color: #ea580c !important;
}

@media (max-width: 390px) {
  .ag-header__logo {
    height: 40px !important;
  }
}

/* ========================================
   FOOTER FIXES  
   ======================================== */

.ag-footer {
  border-top: 1px solid rgba(214, 206, 194, 0.5) !important;
  margin-top: 0 !important;
  padding-top: clamp(4rem, 8vw, 6rem) !important;
  padding-bottom: clamp(4rem, 8vw, 6rem) !important;
  background: linear-gradient(135deg, #133528 0%, #0f3320 50%, #0a2618 100%) !important;
}

.ag-site-frame__footer .ag-cinema-footer {
  background: linear-gradient(135deg, #133528 0%, #0f3320 50%, #0a2618 100%) !important;
}

.ag-site-frame__footer {
  margin-top: 0 !important;
}

/* ========================================
   ANNOUNCEMENT BAR FIXES
   ======================================== */

.ag-announcement {
  background: #0e3e29 !important;
  color: #fff !important;
  font-family: var(--ag-font-ui) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.ag-announcement__inner {
  min-height: 2.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding-block: 0.4rem !important;
}

/* Accent Highlight Text */
.ag-accent-highlight {
  background-image: linear-gradient(to right, #edb44d, #f6b900) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* Accent Text */
.ag-accent-text {
  background: linear-gradient(90deg, #d4941a, #f6b900) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* ========================================
   NEWSLETTER SECTION FIXES
   ======================================== */

.newsletter-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.newsletter-section__container {
  width: min(1240px, 92vw);
  margin-inline: auto;
}

.newsletter-section--forest {
  background: #0e3e29;
}

.newsletter-section--cream {
  background: #faf7f0;
}

.newsletter-section__card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-section__heading {
  font-family: var(--ag-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

.newsletter-section__subheading {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.newsletter-section__form-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-section__input {
  flex: 1;
  min-width: 220px;
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.9375rem;
  font-family: var(--ag-font-ui);
}

.newsletter-section__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-section__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-section__button {
  padding: 0.875rem 2rem;
  background: linear-gradient(180deg, #F97316 0%, #ea580c 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--ag-font-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-section__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.45);
}

.newsletter-section__privacy {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--ag-font-ui);
}

.newsletter-section__message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.newsletter-section__message--success {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.newsletter-section__message--error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

@media (max-width: 390px) {
  .newsletter-section__card {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .newsletter-section__heading {
    font-size: 1.5rem;
  }

  .newsletter-section__subheading {
    font-size: 0.875rem;
  }

  .newsletter-section__form-group {
    flex-direction: column;
  }

  .newsletter-section__input,
  .newsletter-section__button {
    width: 100%;
  }
}

/* ========================================
   FEATURED BLOG SECTION FIXES
   ======================================== */

.ag-featured-blog {
  background: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.ag-featured-blog__grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (max-width: 1023px) {
  .ag-featured-blog__grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .ag-featured-blog__grid-home {
    grid-template-columns: 1fr;
  }
}

.ag-blog-fallback-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(14, 62, 41, 0.06);
  box-shadow: 0 4px 20px rgba(14, 62, 41, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ag-blog-fallback-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(14, 62, 41, 0.08);
}

.ag-blog-fallback-card .ag-search-result__type {
  font-family: var(--ag-font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: #0e3e29;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.ag-blog-fallback-card h3 {
  font-family: var(--ag-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #0e3e29;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ag-blog-fallback-card p {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.ag-accent-rust {
  color: #cc5500;
}

@media (max-width: 390px) {
  .ag-featured-blog__grid-home {
    gap: 1rem;
  }

  .ag-blog-fallback-card {
    padding: 1.25rem;
  }

  .ag-blog-fallback-card h3 {
    font-size: 1.125rem;
  }

  .ag-blog-fallback-card p {
    font-size: 0.875rem;
  }
}

/* ========================================
   SECTION SPACING FIXES
   ======================================== */

.ag-section+.ag-section,
.section-newsletter+.ag-section {
  margin-top: 0;
}

/* Ensure consistent section backgrounds */
.template-index .ag-featured-collection:not(.ag-featured-blog) {
  background: #fffcf7;
}

.template-index .ag-featured-blog {
  background: #fff;
}

.template-index .newsletter-section {
  background: #0e3e29;
}

/* ========================================
   SECTION SEQUENCE FIXES
   ======================================== */

/* Ensure proper section stacking */
.template-index .ag-home-hero {
  margin-bottom: 0 !important;
}

.template-index .ag-trust-band {
  margin-top: 0 !important;
}

/* Section spacing adjustments */
.template-index section+section {
  margin-top: 0 !important;
}

/* ========================================
   MOBILE SECTION ORDER FIXES
   ======================================== */

@media (max-width: 767px) {

  .template-index .ag-featured-collection,
  .template-index .ag-testimonials,
  .template-index .ag-featured-blog {
    padding-block: 3rem !important;
  }

  .template-index .newsletter-section {
    padding-block: 2.5rem !important;
  }

  .template-index .ag-discovery-links {
    padding-block: 2.5rem !important;
  }

  .template-index .ag-home-promo {
    margin-block: 2rem !important;
  }
}

/* ========================================
   PRODUCT GRID RESPONSIVE FIXES
   ======================================== */

@media (min-width: 1024px) and (max-width: 1279px) {
  .ag-featured-collection__grid--home {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 900px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ag-featured-collection__grid--home {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 600px !important;
  }
}

@media (max-width: 767px) {
  .ag-featured-collection__grid--home {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.875rem !important;
  }
}

@media (max-width: 390px) {
  .ag-featured-collection__grid--home {
    gap: 0.625rem !important;
  }
}

/* ========================================
   CRITICAL PARITY FIXES - 2026-02-21 V2
   Targeting exact baseline match
   ======================================== */

/* Global Background Fix */
html {
  background-color: #f9f8f6 !important;
}

body.ag-shell,
.ag-site-frame,
.ag-main {
  background-color: #f9f8f6 !important;
}

/* Homepage Hero Exact Match */
.ag-home-hero {
  min-height: clamp(680px, 92vh, 850px) !important;
  position: relative !important;
  overflow: hidden !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 0 !important;
}

.ag-home-hero__media {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}

.ag-home-hero__media video,
.ag-home-hero__media img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.ag-home-hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(180deg, rgba(139, 90, 43, 0.08) 0%, transparent 50%),
    linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 40%),
    radial-gradient(ellipse 80% 50% at 50% 45%, rgba(0, 0, 0, 0.2), transparent 70%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.3) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.7) 100%) !important;
}

.ag-home-hero__content {
  position: relative !important;
  z-index: 3 !important;
  min-height: inherit !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-block: clamp(4rem, 10vh, 8rem) !important;
}

.ag-home-hero__text-wrapper {
  background: rgba(14, 62, 41, 0.18) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 1.75rem !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  padding: 2rem 2.5rem !important;
  max-width: 42rem !important;
  text-align: center !important;
}

/* Trust Band Exact Match */
.ag-trust-band {
  background: #0e3e29 !important;
  color: #f8efe2 !important;
  padding-top: clamp(1.5rem, 2.8vw, 2.5rem) !important;
  padding-bottom: clamp(1.5rem, 2.8vw, 2.5rem) !important;
}

.ag-trust-band__inner {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: clamp(1.25rem, 3.5vw, 4rem) !important;
}

.ag-trust-band__item {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  margin: 0 !important;
  text-align: left !important;
  font-family: var(--ag-font-ui) !important;
  font-weight: 600 !important;
  font-size: clamp(0.7rem, 0.85vw, 0.875rem) !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #f8efe2 !important;
}

.ag-trust-band__icon {
  color: #ffffff !important;
}

.ag-trust-band__icon svg {
  width: clamp(20px, 1.5vw, 24px) !important;
  height: auto !important;
}

/* Featured Collection Section */
.ag-featured-collection {
  background-color: #fffcf7 !important;
  padding-top: clamp(2.5rem, 5vw, 4rem) !important;
  padding-bottom: clamp(2.5rem, 5vw, 4rem) !important;
}

.ag-featured-collection__header--centered {
  text-align: center !important;
  margin-bottom: clamp(2rem, 4vw, 3rem) !important;
}

.ag-featured-collection__header .ag-kicker {
  font-family: var(--ag-font-ui) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #1a4731 !important;
  margin-bottom: 0.75rem !important;
  display: block !important;
}

.ag-featured-collection__header h2,
.ag-featured-collection__header .h1 {
  font-family: var(--ag-font-display) !important;
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  font-weight: 500 !important;
  color: #1a4731 !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.2 !important;
}

.ag-featured-collection__subheading {
  font-family: var(--ag-font-body) !important;
  font-size: 1rem !important;
  color: #5a6370 !important;
  max-width: 44ch !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
}

/* Product Grid */
.ag-featured-collection__grid--home {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: clamp(1.5rem, 2.5vw, 2rem) !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}

@media (max-width: 1023px) {
  .ag-featured-collection__grid--home {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: none !important;
  }
}

@media (max-width: 639px) {
  .ag-featured-collection__grid--home {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
}

/* Product Card Exact Match */
.ag-card.ag-card--premium,
.ag-product-card {
  background: #ffffff !important;
  border: 1px solid rgba(14, 62, 41, 0.05) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 16px rgba(14, 62, 41, 0.05) !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ag-card.ag-card--premium:hover,
.ag-product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 32px rgba(14, 62, 41, 0.08) !important;
  border-color: rgba(246, 185, 0, 0.45) !important;
}

.ag-card__media-wrapper,
.ag-card__image-container {
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(145deg, #f9f7f3 0%, #f0e8dc 100%) !important;
}

.ag-card__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.ag-card.ag-card--premium:hover .ag-card__img,
.ag-product-card:hover .ag-card__img,
.ag-product-card:hover .ag-product-card__image {
  transform: scale(1.06) !important;
}

.ag-card__content {
  padding: 1.75rem !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.ag-card__title {
  font-family: var(--ag-font-display) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #0e3e29 !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.2 !important;
}

.ag-product-card__rating {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 0.5rem !important;
}

.ag-product-card__stars {
  font-size: 11px !important;
  color: #f38f18 !important;
  letter-spacing: 1px !important;
}

.ag-product-card__rating-label {
  font-family: var(--ag-font-ui) !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: #6b7280 !important;
}

.ag-card__excerpt {
  font-family: var(--ag-font-body) !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
  color: #6b7280 !important;
  margin-bottom: 1.5rem !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.ag-card__footer {
  margin-top: auto !important;
  padding-top: 0.875rem !important;
  border-top: 1px solid rgba(14, 62, 41, 0.06) !important;
}

.ag-card__actions-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 1rem !important;
}

.ag-card__price {
  font-family: var(--ag-font-display) !important;
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  color: #0e3e29 !important;
  line-height: 1 !important;
}

.ag-card__add-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem !important;
  padding: 10px 18px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-radius: 10px !important;
  background: #edb44d !important;
  color: #0e3e29 !important;
  box-shadow: 0 4px 12px rgba(237, 180, 77, 0.3) !important;
  border: 0 !important;
  cursor: pointer !important;
  min-height: 44px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.ag-card__add-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(237, 180, 77, 0.4) !important;
}

.ag-product-card__badge {
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  z-index: 10 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
  font-family: var(--ag-font-ui) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  background: #0e3e29 !important;
  color: #f6b900 !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
}

/* Testimonials Section Exact Match */
.ag-testimonials {
  background: #fbf9f4 !important;
  padding-top: clamp(4rem, 8vw, 6rem) !important;
  padding-bottom: clamp(4rem, 8vw, 6rem) !important;
  position: relative !important;
}

.ag-testimonials__header {
  text-align: center !important;
  margin-bottom: clamp(2.5rem, 5vw, 4rem) !important;
}

.ag-testimonials__editorial-heading {
  font-family: var(--ag-font-display) !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
  color: #000 !important;
}

.ag-testimonials__editorial-subheading {
  font-family: var(--ag-font-body) !important;
  font-size: 1.125rem !important;
  line-height: 1.65 !important;
  color: #4a4a4a !important;
  max-width: 48rem !important;
  font-weight: 500 !important;
  margin: 0 auto !important;
}

.ag-testimonials__12col-grid {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 3rem !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

.ag-testimonials__item--span-5 {
  grid-column: span 5 !important;
}

.ag-testimonials__item--span-7 {
  grid-column: span 7 !important;
}

.ag-testimonials__item--offset-7 {
  grid-column: 7 / span 5 !important;
}

.ag-testimonial-card--cinematic {
  height: 100% !important;
  background: #ffffff !important;
  border-top: 2px solid rgba(237, 180, 77, 0.3) !important;
  border-radius: 20px !important;
  padding: clamp(2rem, 4vw, 3rem) !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.3s ease !important;
}

.is-featured .ag-testimonial-card--cinematic {
  transform: scale(1.03) !important;
  border-top-color: #f6b900 !important;
}

.ag-testimonial-card__quote {
  font-family: var(--ag-font-display) !important;
  font-size: clamp(1.125rem, 2vw, 1.5rem) !important;
  line-height: 1.6 !important;
  color: #1a1a1a !important;
  font-weight: 500 !important;
  margin: 0 0 2rem 0 !important;
  flex-grow: 1 !important;
}

.is-featured .ag-testimonial-card__quote {
  font-size: clamp(1.25rem, 2.5vw, 2.25rem) !important;
}

/* Discovery Links Section */
.ag-discovery-links {
  background: linear-gradient(180deg, #faf7f0 0%, #f5f3f0 100%) !important;
  padding-top: clamp(4rem, 8vw, 6rem) !important;
  padding-bottom: clamp(4rem, 8vw, 6rem) !important;
}

.ag-discovery-links__grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: clamp(2rem, 4vw, 4rem) !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

.ag-discovery-links__column {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(14, 62, 41, 0.06) !important;
  border-radius: 2rem !important;
  padding: clamp(2rem, 4vw, 3.5rem) !important;
  display: flex !important;
  flex-direction: column !important;
  transition: all 0.3s ease !important;
}

.ag-discovery-links__column:hover {
  background: #ffffff !important;
  box-shadow: 0 25px 50px -12px rgba(14, 62, 41, 0.12) !important;
  border-color: rgba(14, 62, 41, 0.1) !important;
  transform: translateY(-4px) !important;
}

.ag-discovery-links__title {
  font-family: var(--ag-font-display) !important;
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  color: #0e3e29 !important;
  margin: 0 0 0.75rem 0 !important;
  font-weight: 500 !important;
}

.ag-discovery-links__title-line {
  width: 40px !important;
  height: 2px !important;
  background: #d4941a !important;
  border-radius: 1px !important;
}

/* Home Promo Section */
.ag-home-promo {
  margin-top: clamp(3rem, 6vw, 5rem) !important;
  margin-bottom: clamp(3rem, 6vw, 5rem) !important;
}

.ag-home-promo__card {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 32px !important;
  background: #0e3e29 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-items: center !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
}

@media (min-width: 1024px) {
  .ag-home-promo__card {
    grid-template-columns: 1.2fr 1fr !important;
  }
}

.ag-home-promo__content {
  position: relative !important;
  z-index: 3 !important;
  padding: clamp(2rem, 6vw, 5rem) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  color: #fff !important;
}

.ag-home-promo__content h2 {
  color: #fff !important;
  font-family: var(--ag-font-display) !important;
  font-size: clamp(2rem, 4.6vw, 3.35rem) !important;
  margin: 0 !important;
  line-height: 1.04 !important;
  font-weight: 500 !important;
}

.ag-home-promo__pill {
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.13) !important;
  padding: 0.32rem 0.75rem !important;
  font-family: var(--ag-font-ui) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.8) !important;
  width: fit-content !important;
}

.ag-home-promo__subheading {
  color: rgba(255, 255, 255, 0.86) !important;
  max-width: 48ch !important;
  font-size: 1.08rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-family: var(--ag-font-body) !important;
}

/* Mobile Fixes - 390px */
@media (max-width: 390px) {
  .ag-home-hero {
    min-height: 580px !important;
  }

  .ag-home-hero__text-wrapper {
    padding: 1.25rem !important;
    border-radius: 1.25rem !important;
    margin: 0 0.5rem !important;
  }

  .ag-home-hero__actions {
    flex-direction: column !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }

  .ag-home-hero__button-primary,
  .ag-home-hero__button-secondary {
    width: 100% !important;
    min-width: unset !important;
    min-height: 44px !important;
    font-size: 0.6875rem !important;
    padding: 0.75rem 1rem !important;
  }

  .ag-trust-band {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .ag-trust-band__inner {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .ag-trust-band__item {
    font-size: 0.5625rem !important;
    gap: 0.5rem !important;
  }

  .ag-trust-band__icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .ag-featured-collection__header--centered {
    margin-bottom: 1.25rem !important;
  }

  .ag-featured-collection__header .ag-kicker {
    font-size: 0.6rem !important;
    margin-bottom: 0.375rem !important;
  }

  .ag-featured-collection__header h2 {
    font-size: 1.375rem !important;
  }

  .ag-featured-collection__subheading {
    font-size: 0.75rem !important;
  }

  .ag-card__content {
    padding: 0.75rem !important;
  }

  .ag-card__title {
    font-size: 0.875rem !important;
    margin-bottom: 0.25rem !important;
  }

  .ag-product-card__rating {
    margin-bottom: 0.375rem !important;
  }

  .ag-product-card__stars {
    font-size: 8px !important;
  }

  .ag-product-card__rating-label {
    font-size: 7px !important;
  }

  .ag-card__excerpt {
    font-size: 0.6875rem !important;
    margin-bottom: 0.625rem !important;
  }

  .ag-card__footer {
    padding-top: 0.625rem !important;
  }

  .ag-card__price {
    font-size: 1rem !important;
  }

  .ag-card__add-btn {
    padding: 0.375rem 0.625rem !important;
    font-size: 0.5625rem !important;
    min-height: 28px !important;
    border-radius: 8px !important;
  }

  .ag-testimonials {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .ag-testimonials__12col-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .ag-testimonials__item--span-5,
  .ag-testimonials__item--span-7,
  .ag-testimonials__item--offset-7 {
    grid-column: auto !important;
  }

  .ag-testimonial-card__quote {
    font-size: 1rem !important;
  }

  .ag-home-promo {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .ag-home-promo__card {
    grid-template-columns: 1fr !important;
    border-radius: 20px !important;
  }

  .ag-home-promo__content {
    padding: 1.5rem 1.25rem !important;
    order: 1 !important;
  }

  .ag-home-promo__media {
    order: 0 !important;
    max-height: 200px !important;
  }

  .ag-home-promo__content h2 {
    font-size: 1.5rem !important;
  }

  .ag-home-promo__subheading {
    font-size: 0.875rem !important;
  }

  .ag-discovery-links {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .ag-discovery-links__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .ag-discovery-links__column {
    padding: 1.25rem !important;
    border-radius: 1.25rem !important;
  }

  .ag-discovery-links__title {
    font-size: 1.125rem !important;
  }
}

/* Collection Page Fixes */
.ag-collection-hero {
  min-height: clamp(400px, 70vh, 80vh) !important;
  position: relative !important;
  overflow: hidden !important;
}

.ag-collection-hero__bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}

.ag-collection-hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom, rgba(14, 62, 41, 0.45) 0%, rgba(14, 62, 41, 0.2) 50%, rgba(14, 62, 41, 0.6) 100%) !important;
  z-index: 1 !important;
}

.ag-collection-hero__content {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: inherit !important;
  padding: clamp(4rem, 10vh, 10rem) 2rem !important;
}

.ag-collection-hero__text-wrapper {
  padding: 2.5rem !important;
  background: rgba(14, 62, 41, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 2rem !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
  max-width: 44rem !important;
  text-align: center !important;
}

.ag-collection-section {
  background: #fffcf7 !important;
  padding-top: clamp(2rem, 3.5vw, 3rem) !important;
  padding-bottom: clamp(2rem, 3.5vw, 3rem) !important;
}

/* 4 Column Grid on Desktop */
@media (min-width: 1280px) {
  .ag-product-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
  }
}

@media (max-width: 767px) {
  .ag-collection-hero {
    min-height: 50vh !important;
  }

  .ag-collection-hero__content {
    padding: 2rem 0.75rem !important;
  }

  .ag-collection-hero__text-wrapper {
    padding: 1rem !important;
    border-radius: 1rem !important;
  }

  .ag-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.625rem !important;
  }
}

/* ========================================
   CRITICAL PARITY FIXES - 2026-02-21 V3
   Final adjustments for 95%+ match
   ======================================== */

/* Product Card Aspect Ratio Fix - Match baseline 4:5 */
.ag-card__media-wrapper,
.ag-card__image-container,
.ag-product-card__media {
  aspect-ratio: 4 / 5 !important;
}

/* Hero Video Filter Adjustment */
.ag-home-hero__video {
  filter: brightness(0.78) contrast(1.12) saturate(0.88) !important;
}

/* Badge Floating Position */
.ag-card__badge-floating {
  bottom: 1rem !important;
  left: 1rem !important;
  top: auto !important;
}

/* Footer View All Button */
.ag-home-section__footer-action {
  text-align: center !important;
  margin-top: clamp(2rem, 4vw, 3rem) !important;
}

.ag-featured-collection__view-all {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

/* Kicker styling exact match */
.ag-kicker {
  font-family: var(--ag-font-ui) !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #1a4731 !important;
  margin-bottom: 0.75rem !important;
}

/* Sub-kicker styling */
.ag-testimonials__sub-kicker {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  margin-bottom: 1rem !important;
}

.ag-testimonials__sub-kicker-text {
  font-family: var(--ag-font-ui) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

.ag-testimonials__sub-kicker-line {
  flex: 1 !important;
  max-width: 60px !important;
  height: 1px !important;
  background: rgba(14, 62, 41, 0.15) !important;
}

/* BG Blurs for Testimonials */
.ag-testimonials__bg-blurs {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.ag-testimonials__blur-1 {
  position: absolute !important;
  top: 10% !important;
  left: -10% !important;
  width: 40% !important;
  height: 40% !important;
  background: radial-gradient(circle, rgba(237, 180, 77, 0.08) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  filter: blur(60px) !important;
}

.ag-testimonials__blur-2 {
  position: absolute !important;
  bottom: 20% !important;
  right: -5% !important;
  width: 35% !important;
  height: 35% !important;
  background: radial-gradient(circle, rgba(14, 62, 41, 0.06) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  filter: blur(50px) !important;
}

/* Container relative for testimonials */
.ag-testimonials .container.relative {
  position: relative !important;
  z-index: 1 !important;
}

/* Hero Sticky CTA Mobile */
@media (max-width: 767px) {
  .ag-home-hero__sticky-cta {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
    padding: 1rem !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent) !important;
  }

  .ag-home-hero__sticky-button {
    width: 100% !important;
    max-width: none !important;
  }
}

/* Hide sticky CTA on desktop */
@media (min-width: 768px) {
  .ag-home-hero__sticky-cta {
    display: none !important;
  }
}

/* Collection Hero Text Wrapper */
.ag-collection-hero__title {
  font-family: var(--ag-font-display) !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.1 !important;
  margin-bottom: 1rem !important;
}

.ag-collection-hero__title-highlight {
  color: #f6b900 !important;
}

/* Ensure proper text colors on hero sections */
.ag-home-hero__eyebrow,
.ag-home-hero__heading,
.ag-home-hero__subheading {
  text-align: center !important;
}

/* Featured Collection Header Centering */
.ag-featured-collection__header {
  text-align: center !important;
}

.ag-featured-collection__header>div {
  display: inline-block !important;
  text-align: center !important;
}

/* Product Card Vignette */
.ag-card__vignette {
  background: linear-gradient(to bottom, transparent 50%, rgba(14, 62, 41, 0.3) 100%) !important;
}

/* Mobile Menu Styling */
.ag-mobile-menu__panel {
  background: #fff !important;
}

.ag-mobile-menu__header {
  padding: 1.5rem !important;
  border-bottom: 1px solid rgba(14, 62, 41, 0.08) !important;
}

.ag-mobile-menu__title {
  font-family: var(--ag-font-display) !important;
  font-size: 1.25rem !important;
  color: #0e3e29 !important;
  margin-bottom: 0.25rem !important;
}

.ag-mobile-menu__rule {
  width: 40px !important;
  height: 2px !important;
  background: #d4941a !important;
  margin: 0.5rem 0 !important;
}

.ag-mobile-menu__links {
  padding: 1.5rem !important;
}

.ag-mobile-menu__link {
  display: block !important;
  padding: 0.875rem 0 !important;
  font-family: var(--ag-font-display) !important;
  font-size: 1.125rem !important;
  color: #0e3e29 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(14, 62, 41, 0.06) !important;
  transition: color 0.2s ease !important;
}

.ag-mobile-menu__link:hover,
.ag-mobile-menu__link.is-active {
  color: #F6B900 !important;
}

/* Rating Stars Exact Color */
.ag-product-card__stars,
.ag-testimonial-card__star-icon {
  color: #f38f18 !important;
}

/* Price Font Weight */
.ag-card__price,
.ag-product-card__price {
  font-weight: 900 !important;
}

/* Add Button Exact Match */
.ag-card__add-btn {
  background: #edb44d !important;
  color: #0e3e29 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

/* View All Arrow */
.ag-featured-collection__view-all::after {
  content: ' →' !important;
}

/* Section spacing reset for parity */
.template-index .ag-main>section:first-child {
  margin-top: 0 !important;
}

.template-index .ag-main>section:last-child {
  margin-bottom: 0 !important;
}

/* Remove any extra spacing between sections */
.ag-main>section+section {
  margin-top: 0 !important;
}

/* Ensure hero starts at top */
.template-index .ag-main {
  padding-top: 0 !important;
}

/* Desktop header adjustments */
@media (min-width: 1024px) {
  .ag-header__menu {
    display: flex !important;
  }

  .ag-header__menu-toggle {
    display: none !important;
  }
}

/* Mobile header adjustments */
@media (max-width: 1023px) {
  .ag-header__nav {
    display: none !important;
  }

  .ag-header__menu-toggle {
    display: flex !important;
  }
}

/* Skip Link Styling */
.ag-skip-link {
  position: absolute !important;
  top: -100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  padding: 1rem 2rem !important;
  background: #0e3e29 !important;
  color: #fff !important;
  text-decoration: none !important;
  font-family: var(--ag-font-ui) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  border-radius: 0 0 0.5rem 0.5rem !important;
  z-index: 10000 !important;
  transition: top 0.2s ease !important;
}

.ag-skip-link:focus {
  top: 0 !important;
}

/* Exact button hover states */
.ag-button--primary:hover {
  background: #f1c575 !important;
}

.ag-button--rust:hover {
  background: #e66000 !important;
}

/* Newsletter input focus */
.newsletter-section__input:focus {
  outline: none !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Ensure card links don't have underline */
.ag-card__link,
.ag-card__title-link {
  text-decoration: none !important;
}

/* Pagination styling for collection pages */
.ag-pagination-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.75rem !important;
  margin-top: 3rem !important;
}

.ag-pagination-wrapper .page,
.ag-pagination-wrapper .next,
.ag-pagination-wrapper .prev {
  padding: 0.5rem 0.875rem !important;
  min-height: 44px !important;
  min-width: 44px !important;
  background: #fff !important;
  border: 1.5px solid rgba(14, 62, 41, 0.1) !important;
  border-radius: 12px !important;
  color: #0e3e29 !important;
  font-size: 0.8125rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.ag-pagination-wrapper .page:hover,
.ag-pagination-wrapper .next:hover,
.ag-pagination-wrapper .prev:hover {
  border-color: #0e3e29 !important;
  background: rgba(14, 62, 41, 0.05) !important;
}

.ag-pagination-wrapper .current {
  background: #0e3e29 !important;
  color: #fff !important;
  border-color: #0e3e29 !important;
  padding: 0.5rem 0.875rem !important;
  min-height: 44px !important;
  min-width: 44px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(14, 62, 41, 0.25) !important;
}

/* ========================================
   BUTTON COLOR FIXES - Orange gradient
   ======================================== */

/* Primary buttons should use orange gradient */
.ag-button--primary,
.ag-home-hero__button-primary {
  background: linear-gradient(180deg, #F97316 0%, #ea580c 100%) !important;
  color: #fff !important;
}

.ag-button--primary:hover,
.ag-home-hero__button-primary:hover {
  background: linear-gradient(180deg, #fb923c 0%, #f97316 100%) !important;
}

/* Add to cart button - golden yellow */
.ag-card__add-btn {
  background: #edb44d !important;
  color: #0e3e29 !important;
}

.ag-card__add-btn:hover {
  background: #f1c575 !important;
}

/* Collection Hero Button Fix */
.ag-collection-hero__btn.ag-button--primary {
  background: linear-gradient(180deg, #F97316 0%, #ea580c 100%) !important;
  color: #fff !important;
}

/* Section Heading Accent Text */
.ag-accent-text {
  font-style: italic !important;
  color: #d4941a !important;
}

/* Filter Panel Label */
.ag-filter-panel__label {
  background: #0e3e29 !important;
  color: #fff !important;
}

/* ========================================
   CRITICAL PARITY FIXES - 2026-02-21 V4
   Targeting 95%+ visual match
   ======================================== */

/* Hero Primary Button - Orange gradient with white text */
.ag-home-hero__button.ag-button--primary,
.ag-home-hero__button-primary {
  background: linear-gradient(180deg, #F97316 0%, #ea580c 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  border: none !important;
  border-radius: 999px !important;
}

.ag-home-hero__button.ag-button--primary:hover,
.ag-home-hero__button-primary:hover {
  background: linear-gradient(180deg, #fb923c 0%, #f97316 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Hero Secondary Button - Transparent with white border */
.ag-home-hero__button.ag-button--ghost,
.ag-home-hero__button-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

.ag-home-hero__button.ag-button--ghost:hover,
.ag-home-hero__button-secondary:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  transform: translateY(-2px) !important;
}

/* Trust Band Exact Match */
.ag-trust-band {
  background: #0e3e29 !important;
  padding-top: clamp(1.5rem, 2.8vw, 2.5rem) !important;
  padding-bottom: clamp(1.5rem, 2.8vw, 2.5rem) !important;
}

.ag-trust-band__inner {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: clamp(2rem, 4vw, 5rem) !important;
}

.ag-trust-band__item-label {
  color: #f8efe2 !important;
}

/* Product Card Badge Position & Style */
.ag-product-card__badge,
.ag-card .ag-product-card__badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 10 !important;
  padding: 5px 12px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  border-radius: 999px !important;
}

/* Product Card Image Aspect Ratio - Square for grid */
.ag-card__image-container,
.ag-product-card__media,
.ag-card__media-wrapper {
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Product Card Content Padding */
.ag-card__content,
.ag-product-card__content {
  padding: 1.25rem 1.5rem 1.5rem !important;
}

/* Product Card Title */
.ag-card__title,
.ag-product-card__title {
  font-family: var(--ag-font-display) !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #0e3e29 !important;
  margin-bottom: 0.5rem !important;
}

/* Product Card Price */
.ag-card__price,
.ag-product-card__price {
  font-family: var(--ag-font-display) !important;
  font-size: 1.375rem !important;
  font-weight: 800 !important;
  color: #0e3e29 !important;
}

/* Product Card Add Button - Golden */
.ag-card__add-btn,
.ag-product-card__cta {
  background: #edb44d !important;
  color: #0e3e29 !important;
  border-radius: 8px !important;
  padding: 8px 16px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 4px 12px rgba(237, 180, 77, 0.3) !important;
  border: none !important;
}

.ag-card__add-btn:hover,
.ag-product-card__cta:hover {
  background: #f1c575 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(237, 180, 77, 0.4) !important;
}

/* Featured Collection Grid */
.ag-featured-collection__grid--home {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}

@media (min-width: 1024px) {
  .ag-featured-collection__grid--home {
    gap: 2rem !important;
  }
}

@media (max-width: 1023px) {
  .ag-featured-collection__grid--home {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 639px) {
  .ag-featured-collection__grid--home {
    gap: 0.75rem !important;
  }
}

/* View All Button - Rust Orange */
.ag-featured-collection__view-all,
.ag-button--rust {
  background: #CC5500 !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.875rem 2rem !important;
  font-weight: 700 !important;
}

.ag-featured-collection__view-all:hover,
.ag-button--rust:hover {
  background: #e66000 !important;
}

/* Featured Collection Section Background */
.ag-featured-collection {
  background: #fffcf7 !important;
}

/* Testimonials Background */
.ag-testimonials {
  background: #fbf9f4 !important;
}

/* Discovery Links Background */
.ag-discovery-links {
  background: linear-gradient(180deg, #faf7f0 0%, #f5f3f0 100%) !important;
}

/* Home Promo Background */
.ag-home-promo {
  background: transparent !important;
}

/* Section Header Typography */
.ag-featured-collection__header .ag-kicker {
  font-size: 0.75rem !important;
  letter-spacing: 0.14em !important;
  color: #1a4731 !important;
  margin-bottom: 0.75rem !important;
}

.ag-featured-collection__header h2,
.ag-featured-collection__header .h1 {
  font-family: var(--ag-font-display) !important;
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  color: #1a4731 !important;
  font-weight: 500 !important;
  margin-bottom: 0.75rem !important;
}

.ag-featured-collection__subheading {
  font-size: 1rem !important;
  color: #5a6370 !important;
  line-height: 1.6 !important;
}

/* Rating Stars */
.ag-product-card__stars {
  color: #f38f18 !important;
  font-size: 10px !important;
  letter-spacing: 1px !important;
}

.ag-product-card__rating-label {
  font-size: 9px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: #6b7280 !important;
}

/* Excerpt Text */
.ag-card__excerpt,
.ag-product-card__excerpt {
  font-size: 0.875rem !important;
  color: #6b7280 !important;
  line-height: 1.5 !important;
  margin-bottom: 1rem !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Card Footer */
.ag-card__footer,
.ag-product-card__footer {
  border-top: 1px solid rgba(14, 62, 41, 0.06) !important;
  padding-top: 0.875rem !important;
  margin-top: auto !important;
}

/* Micro Copy */
.ag-card__micro-copy {
  font-size: 0.75rem !important;
  color: #9ca3af !important;
  margin-top: 0.5rem !important;
}

/* Card Hover Effects */
.ag-card.ag-card--premium:hover,
.ag-product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 32px rgba(14, 62, 41, 0.08), 0 4px 12px rgba(14, 62, 41, 0.04) !important;
  border-color: rgba(246, 185, 0, 0.3) !important;
}

/* Card Image Hover */
.ag-card:hover .ag-card__img,
.ag-product-card:hover .ag-product-card__image {
  transform: scale(1.05) !important;
}

/* Badge Floating */
.ag-card__badge-floating {
  bottom: 12px !important;
  left: 12px !important;
  padding: 0.4rem 0.75rem !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(8px) !important;
  border-radius: 999px !important;
}

/* Desktop Hero Content */
@media (min-width: 1024px) {
  .ag-home-hero__text-wrapper {
    padding: 2.5rem 3rem !important;
    max-width: 44rem !important;
  }

  .ag-home-hero__heading {
    font-size: clamp(2.5rem, 7vw, 4.5rem) !important;
  }

  .ag-home-hero__subheading {
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
  }

  .ag-home-hero__actions {
    gap: 1rem !important;
  }
}

/* Mobile Hero Content */
@media (max-width: 390px) {
  .ag-home-hero__text-wrapper {
    padding: 1.25rem !important;
    border-radius: 1.25rem !important;
  }

  .ag-home-hero__heading {
    font-size: 1.5rem !important;
  }

  .ag-home-hero__subheading {
    font-size: 0.8125rem !important;
  }

  .ag-home-hero__actions {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  .ag-home-hero__button-primary,
  .ag-home-hero__button-secondary {
    width: 100% !important;
    min-width: unset !important;
    min-height: 44px !important;
    font-size: 0.6875rem !important;
  }
}

/* Ensure clean section transitions */
.template-index .ag-home-hero {
  margin-bottom: 0 !important;
}

.template-index .ag-trust-band {
  margin-top: 0 !important;
}

/* Remove default button styles on hero buttons */
.ag-home-hero__button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 50px !important;
  min-width: 200px !important;
  padding: 0.875rem 1.5rem !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  text-decoration: none !important;
}

/* Collection Hero Button Styling */
.ag-collection-hero__btn--primary {
  background: linear-gradient(180deg, #F97316 0%, #ea580c 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35) !important;
}

.ag-collection-hero__btn--secondary {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
}

/* Ensure consistent card heights in grid */
.ag-featured-collection__grid--home>li {
  display: flex !important;
}

.ag-featured-collection__grid--home .ag-card,
.ag-featured-collection__grid--home .ag-product-card {
  height: 100% !important;
  width: 100% !important;
}

/* ========================================
   HOME HERO - NEXT.JS PARITY UPDATE
   2026-02-22 - Exact match to HomeHero
   ======================================== */

/* Multiple overlay layers - matching Next.js homePremiumPolish */
.ag-home-hero__overlay--bottom {
  background: linear-gradient(to bottom, rgba(8, 11, 14, 0.58), rgba(8, 11, 14, 0.48)) !important;
}

.ag-home-hero__overlay--vignette {
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 70%) !important;
}

.ag-home-hero__overlay--warm {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0) 50%) !important;
}

/* Content wrapper glass effect */
.ag-home-hero__content {
  position: relative !important;
  z-index: 3 !important;
  min-height: inherit !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-block: clamp(4rem, 10vh, 8rem) !important;
  width: 100% !important;
}

/* Text wrapper - matches Next.js max-w-[58rem] */
.ag-home-hero__text-wrapper {
  padding: 0 !important;
  max-width: 58rem !important;
  text-align: center !important;
  margin: 0 auto !important;
}

/* Eyebrow container - pill removed */
.ag-home-hero__eyebrow-container {
  display: block !important;
  max-width: 90% !important;
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

/* Eyebrow text - Caveat font style */
.ag-home-hero__eyebrow {
  font-family: 'Caveat', cursive, var(--ag-font-display) !important;
  font-size: clamp(1.4rem, 3.5vw, 2rem) !important;
  line-height: 1.25 !important;
  color: #fff !important;
  margin: 0 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: 400 !important;
}

/* Heading with text shadow - matches Next.js font-light (300) */
.ag-home-hero__heading {
  font-family: 'Fraunces', var(--ag-font-display), serif !important;
  font-weight: 300 !important;
  font-size: clamp(2.25rem, 7.1vw, 4.9rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.015em !important;
  color: #fff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
  margin: 0 0 1rem 0 !important;
}

/* Heading main part */
.ag-home-hero__heading-main {
  display: inline !important;
  color: #fff !important;
  font-weight: 300 !important;
}

/* Heading accent - gold - matches Next.js exactly */
.ag-home-hero__heading-accent {
  color: #E8A735 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

/* Subheading with drop shadow */
.ag-home-hero__subheading {
  font-size: clamp(1.02rem, 2.2vw, 1.55rem) !important;
  font-weight: 600 !important;
  line-height: 1.22 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25) !important;
  margin: 0 0 1.5rem 0 !important;
  max-width: 48ch !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Actions container */
.ag-home-hero__actions {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 1rem !important;
  margin-top: 0.5rem !important;
}

/* Primary CTA button - gold/orange gradient */
.ag-home-hero__button-primary {
  background: linear-gradient(180deg, #d4763f 0%, #b85a2d 100%) !important;
  color: #fff !important;
  min-height: 52px !important;
  min-width: 200px !important;
  padding: 0.875rem 1.75rem !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  border-radius: 9999px !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(184, 90, 45, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.ag-home-hero__button-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(184, 90, 45, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* Secondary CTA button - ghost/outline style */
.ag-home-hero__button-secondary {
  background: transparent !important;
  color: #fff !important;
  min-height: 52px !important;
  min-width: 200px !important;
  padding: 0.875rem 1.75rem !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  border-radius: 9999px !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease !important;
}

.ag-home-hero__button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-1px) !important;
}

/* Video filter - matches Next.js homePremiumPolish */
.ag-home-hero__video {
  filter: saturate(1.03) contrast(1.08) brightness(0.96) !important;
}

/* Desktop adjustments */
@media (min-width: 1024px) {
  .ag-home-hero__text-wrapper {
    padding: 2.5rem 3rem !important;
    max-width: 42rem !important;
  }

  .ag-home-hero__eyebrow-container {
    padding: 0 !important;
  }

  .ag-home-hero__heading {
    font-size: clamp(3rem, 7.1vw, 4.9rem) !important;
  }

  .ag-home-hero__actions {
    gap: 1.25rem !important;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .ag-home-hero__text-wrapper {
    padding: 1.5rem !important;
    border-radius: 1.25rem !important;
    max-width: calc(100% - 2rem) !important;
  }

  .ag-home-hero__eyebrow-container {
    padding: 0 !important;
    max-width: 100% !important;
  }

  .ag-home-hero__eyebrow {
    font-size: clamp(1.1rem, 4vw, 1.5rem) !important;
  }

  .ag-home-hero__heading {
    font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
  }

  .ag-home-hero__subheading {
    font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
    margin-bottom: 1.25rem !important;
  }

  .ag-home-hero__actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }

  .ag-home-hero__button-primary,
  .ag-home-hero__button-secondary {
    width: 100% !important;
    min-width: unset !important;
  }
}

/* Extra small mobile */
@media (max-width: 390px) {
  .ag-home-hero__text-wrapper {
    padding: 1.25rem !important;
    margin: 0 0.5rem !important;
  }

  .ag-home-hero__eyebrow {
    font-size: 1rem !important;
  }

  .ag-home-hero__heading {
    font-size: 1.5rem !important;
  }

  .ag-home-hero__subheading {
    font-size: 0.875rem !important;
  }

  .ag-home-hero__button-primary,
  .ag-home-hero__button-secondary {
    min-height: 44px !important;
    font-size: 0.7rem !important;
    padding: 0.75rem 1rem !important;
  }
}

/* ===========================================
   ABOUT PAGE SECTIONS
   =========================================== */

/* Social Proof Section */
.ag-social-proof {
  background: #ffffff;
  border-top: 1px solid #e8e4dc;
  border-bottom: 1px solid #e8e4dc;
  padding: clamp(2rem, 5vw, 4rem) 1.5rem;
  position: relative;
  overflow: hidden;
}

.ag-social-proof__container {
  max-width: 1280px;
  margin: 0 auto;
}

.ag-social-proof__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #fff7ed, #fef3c7);
  border: 2px solid #fdba74;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  color: #c2410c;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ag-social-proof__title {
  font-family: var(--ag-font-display), Georgia, serif;
  font-size: clamp(2.5rem, 7.5vw, 4.5rem);
  font-weight: 700;
  color: #0e3e29;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.ag-social-proof__title .text-orange-600 {
  background: linear-gradient(to right, #ea580c, #f59e0b, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ag-social-proof__description {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: #5a6370;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Trust Badges Grid */
.ag-trust-badges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .ag-trust-badges {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .ag-trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ag-trust-badge {
  text-align: center;
  padding: 1.25rem;
}

.ag-trust-badge__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  background: linear-gradient(135deg, #f5f3f0, #faf7f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e3e29;
}

.ag-trust-badge__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.ag-trust-badge__title {
  font-weight: 700;
  font-size: 0.875rem;
  color: #1a1a1a;
  display: block;
  margin-bottom: 0.25rem;
}

.ag-trust-badge__subtitle {
  font-size: 0.75rem;
  color: #737373;
}

/* Testimonials */
.ag-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .ag-testimonials {
    grid-template-columns: 1fr;
  }
}

.ag-testimonial-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  border-top: 2px solid;
}

.ag-testimonial-card--forest {
  border-color: #22c55e;
}

.ag-testimonial-card--featured {
  border-color: #f59e0b;
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.ag-testimonial-card--terra {
  border-color: #c9754b;
}

.ag-testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background: #0e3e29;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.ag-testimonial-card__stars {
  color: #f38f18;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.ag-testimonial-card--featured .ag-testimonial-card__stars {
  color: #f35201;
}

.ag-testimonial-card__quote {
  font-family: var(--ag-font-display), Georgia, serif;
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.ag-testimonial-card--featured .ag-testimonial-card__quote {
  font-size: 1.125rem;
}

.ag-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ag-testimonial-card__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.ag-testimonial-card__name {
  display: block;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 0.875rem;
}

.ag-testimonial-card__role {
  display: block;
  font-size: 0.75rem;
  color: #737373;
}

@media (min-width: 1025px) {
  .template-page .ag-about-page .ag-testimonials {
    gap: 1.25rem;
    align-items: stretch;
    margin-bottom: 0;
  }

  .template-page .ag-about-page .ag-testimonial-card {
    border-top-width: 3px;
    border-radius: 1.125rem;
    min-height: 100%;
  }

  .template-page .ag-about-page .ag-testimonial-card--forest {
    background: linear-gradient(155deg, #215840 0%, #1a4731 70%, #143625 100%);
    border-color: #f4b942;
    box-shadow: 0 14px 34px rgba(14, 62, 41, 0.28);
  }

  .template-page .ag-about-page .ag-testimonial-card--forest .ag-testimonial-card__quote,
  .template-page .ag-about-page .ag-testimonial-card--forest .ag-testimonial-card__name {
    color: #ffffff;
  }

  .template-page .ag-about-page .ag-testimonial-card--forest .ag-testimonial-card__role {
    color: rgba(255, 255, 255, 0.75);
  }

  .template-page .ag-about-page .ag-testimonial-card--forest .ag-testimonial-card__stars {
    color: #f6d171;
  }

  .template-page .ag-about-page .ag-testimonial-card--featured {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.13);
  }

  .template-page .ag-about-page .ag-testimonial-card--terra {
    opacity: 0.72;
  }

  .template-page .ag-about-page .ag-social-proof {
    padding-top: 3.25rem;
    padding-bottom: 2.25rem;
  }

  .template-page .ag-about-page .ag-founder-story {
    padding-top: 3.25rem;
    padding-bottom: 4.25rem;
  }

  .template-page .ag-about-page .ag-founder-story__header {
    margin-bottom: 2rem;
  }

  .template-page .ag-about-page .ag-founder-story__label {
    font-size: 0.8rem;
    letter-spacing: 0.13em;
    margin-bottom: 0.6rem;
  }

  .template-page .ag-about-page .ag-founder-story__title {
    font-size: clamp(2.35rem, 4vw, 3.65rem);
    line-height: 1.04;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
  }
}

/* Founder Story Section */
.ag-founder-story {
  background: linear-gradient(to bottom, #f5f3f0, #ffffff, #f5f3f0);
  padding: clamp(2rem, 5vw, 5rem) 1.5rem;
  position: relative;
  overflow: hidden;
}

.ag-founder-story__container {
  max-width: 1152px;
  margin: 0 auto;
  position: relative;
}

.ag-founder-story__watermark {
  position: absolute;
  top: 2rem;
  left: 1.5rem;
  font-size: clamp(2.75rem, 7vw, 7rem);
  color: rgba(30, 58, 38, 0.04);
  font-family: var(--ag-font-display), Georgia, serif;
  font-style: italic;
  transform: rotate(-6deg);
  pointer-events: none;
  white-space: nowrap;
}

.ag-founder-story__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ag-founder-story__chapter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 9999px;
  color: #b45309;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.ag-founder-story__year {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #ffffff, #f9f8f6);
  border: 1px solid #e8e4dc;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-size: 1.5rem;
  font-weight: 700;
  color: #166534;
  font-family: var(--ag-font-display), Georgia, serif;
}

.ag-founder-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .ag-founder-story__grid {
    grid-template-columns: 1fr;
  }
}

.ag-founder-story__content {
  order: 2;
}

.ag-founder-story__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #d97706;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}

.ag-founder-story__title {
  font-family: var(--ag-font-display), Georgia, serif;
  font-size: clamp(2rem, 5.5vw, 2.75rem);
  font-weight: 700;
  color: #0e3e29;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.035em;
}

.ag-founder-story__title .text-gold-600 {
  color: #d97706;
  position: relative;
}

.ag-founder-story__title .text-forest-700 {
  color: #15803d;
}

.ag-founder-story__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.ag-founder-story__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #5a6370;
  line-height: 1.6;
}

.ag-founder-story__bullets li .text-gold-500 {
  color: #f59e0b;
  margin-top: 0.25rem;
}

.ag-founder-story__bullets strong {
  color: #0e3e29;
}

/* Quote Card */
.ag-founder-story__quote-card {
  background: linear-gradient(135deg, rgba(14, 62, 41, 0.92), rgba(10, 62, 41, 0.84), rgba(8, 40, 25, 0.94));
  border: 2px solid rgba(245, 158, 11, 0.35);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.ag-founder-story__quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, #fbbf24, #f59e0b, #fbbf24);
}

.ag-founder-story__quote-mark {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 4rem;
  color: rgba(245, 158, 11, 0.15);
  font-family: var(--ag-font-display), Georgia, serif;
  line-height: 1;
}

.ag-founder-story__quote {
  font-family: var(--ag-font-display), Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.ag-founder-story__quote strong {
  color: #fcd34d;
  font-style: normal;
}

.ag-founder-story__quote-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ag-founder-story__quote-divider span:first-child,
.ag-founder-story__quote-divider span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245, 158, 11, 0.3), transparent);
}

.ag-founder-story__quote-divider .text-gold-300 {
  color: #fcd34d;
  font-size: 0.875rem;
  font-weight: 700;
}

.ag-founder-story__quote-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Discovery Card */
.ag-founder-story__discovery {
  background: linear-gradient(135deg, #f5f3f0, #ffffff, #f5f3f0);
  border: 2px solid #e8e4dc;
  border-radius: 1rem;
  padding: 1.75rem;
  text-align: center;
  order: 1;
}

.ag-founder-story__discovery-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.ag-founder-story__discovery-title {
  font-family: var(--ag-font-display), Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0e3e29;
  margin-bottom: 0.75rem;
}

.ag-founder-story__discovery-text {
  font-size: 0.875rem;
  color: #5a6370;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.ag-founder-story__discovery-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background: #dcfce7;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #166534;
}

/* Ingredients Section */
.ag-ingredients {
  background: linear-gradient(to bottom, #ffffff, #f9f8f6, #ffffff);
  padding: clamp(2rem, 5vw, 5rem) 1.5rem;
  position: relative;
  overflow: hidden;
}

.ag-ingredients__container {
  max-width: 1152px;
  margin: 0 auto;
}

.ag-ingredients__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.ag-ingredients__divider span:first-child,
.ag-ingredients__divider span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #fdba74, transparent);
}

.ag-ingredients__divider span:nth-child(2) {
  color: #ea580c;
  font-weight: 700;
}

.ag-ingredients__title {
  font-family: var(--ag-font-display), Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  color: #0e3e29;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.ag-ingredients__description {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: #5a6370;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.ag-ingredients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .ag-ingredients__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ag-ingredients__grid {
    grid-template-columns: 1fr;
  }
}

/* Ingredient Cards */
.ag-ingredient-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid;
}

.ag-ingredient-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ag-ingredient-card--orange {
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.92), rgba(254, 240, 226, 0.88));
  border-color: rgba(255, 180, 91, 0.25);
}

.ag-ingredient-card--yellow {
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.92), rgba(254, 252, 231, 0.88));
  border-color: rgba(253, 224, 71, 0.25);
}

.ag-ingredient-card--green {
  background: linear-gradient(135deg, rgba(240, 253, 244, 0.92), rgba(236, 253, 245, 0.88));
  border-color: rgba(74, 222, 128, 0.25);
}

.ag-ingredient-card--mint {
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.92), rgba(236, 253, 245, 0.88));
  border-color: rgba(52, 211, 153, 0.25);
}

.ag-ingredient-card--cyan {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.92), rgba(236, 254, 255, 0.88));
  border-color: rgba(34, 211, 238, 0.25);
}

.ag-ingredient-card--beige {
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.92), rgba(254, 248, 224, 0.88));
  border-color: rgba(217, 119, 6, 0.25);
}

.ag-ingredient-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ag-ingredient-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.ag-ingredient-card__title {
  font-family: var(--ag-font-display), Georgia, serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0e3e29;
}

.ag-ingredient-card__subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.7;
  color: #0e3e29;
}

.ag-ingredient-card__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  flex-grow: 1;
}

.ag-ingredient-card__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #5a6370;
  margin-bottom: 0.375rem;
  line-height: 1.4;
}

.ag-ingredient-card--orange .ag-ingredient-card__benefits li span {
  color: #f97316;
}

.ag-ingredient-card--yellow .ag-ingredient-card__benefits li span {
  color: #eab308;
}

.ag-ingredient-card--green .ag-ingredient-card__benefits li span {
  color: #22c55e;
}

.ag-ingredient-card--mint .ag-ingredient-card__benefits li span {
  color: #10b981;
}

.ag-ingredient-card--cyan .ag-ingredient-card__benefits li span {
  color: #06b6d4;
}

.ag-ingredient-card--beige .ag-ingredient-card__benefits li span {
  color: #d97706;
}

.ag-ingredient-card__highlight {
  padding-top: 0.625rem;
  border-top: 1px dashed;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ag-ingredient-card--orange .ag-ingredient-card__highlight {
  color: #9a3412;
  border-color: #fed7aa;
}

.ag-ingredient-card--yellow .ag-ingredient-card__highlight {
  color: #854d0e;
  border-color: #fef08a;
}

.ag-ingredient-card--green .ag-ingredient-card__highlight {
  color: #166534;
  border-color: #bbf7d0;
}

.ag-ingredient-card--mint .ag-ingredient-card__highlight {
  color: #065f46;
  border-color: #a7f3d0;
}

.ag-ingredient-card--cyan .ag-ingredient-card__highlight {
  color: #0e7490;
  border-color: #a5f3fc;
}

.ag-ingredient-card--beige .ag-ingredient-card__highlight {
  color: #92400e;
  border-color: #fde68a;
}

/* CTA */
.ag-ingredients__cta {
  text-align: center;
}

.ag-ingredients__cta-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ea580c, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(194, 65, 12, 0.35);
}

.ag-ingredients__cta-title {
  font-family: var(--ag-font-display), Georgia, serif;
  font-size: clamp(2.5rem, 6.5vw, 3.5rem);
  font-weight: 900;
  color: #0e3e29;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.ag-ingredients__cta-title .text-orange-600 {
  background: linear-gradient(to right, #ea580c, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ag-ingredients__cta-text {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: #5a6370;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.ag-ingredients__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 3.5rem;
  background: linear-gradient(to right, #ea580c, #d97706);
  color: #ffffff;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(194, 65, 12, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ag-ingredients__cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(194, 65, 12, 0.45);
}

/* Timeline Section */
.ag-timeline {
  background: linear-gradient(to bottom, #f5f3f0, #ffffff, rgba(194, 65, 12, 0.02));
  padding: clamp(2rem, 5vw, 5rem) 1.5rem;
  position: relative;
  overflow: hidden;
}

.ag-timeline__container {
  max-width: 1152px;
  margin: 0 auto;
}

.ag-timeline__title {
  font-family: var(--ag-font-display), Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  color: #0e3e29;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.04em;
}

.ag-timeline__title .text-orange-600 {
  background: linear-gradient(to right, #ea580c, #f59e0b, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ag-timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #d1d5db, #6b7280, #d1d5db);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .ag-timeline__line {
    left: 1rem;
  }
}

.ag-timeline__items {
  position: relative;
}

.ag-timeline__item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.ag-timeline__item--left {
  flex-direction: row-reverse;
}

.ag-timeline__item--right {
  flex-direction: row;
}

@media (max-width: 768px) {

  .ag-timeline__item,
  .ag-timeline__item--left,
  .ag-timeline__item--right {
    flex-direction: row;
  }
}

.ag-timeline__year {
  width: 50%;
  padding: 0 2rem;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  color: #166534;
  text-align: right;
}

.ag-timeline__item--right .ag-timeline__year {
  text-align: left;
}

.ag-timeline__item--current .ag-timeline__year,
.ag-timeline__year--current {
  color: #d97706;
}

@media (max-width: 768px) {
  .ag-timeline__year {
    display: none;
  }
}

.ag-timeline__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background: #166534;
  border: 3px solid #ffffff;
  border-radius: 50%;
  z-index: 10;
}

.ag-timeline__dot--current {
  background: #d97706;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
  }

  50% {
    box-shadow: 0 0 0 0.5rem rgba(217, 119, 6, 0);
  }
}

@media (max-width: 768px) {
  .ag-timeline__dot {
    left: 1rem;
  }
}

.ag-timeline__card {
  width: 50%;
  padding: 1rem;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8e4dc;
  position: relative;
  max-width: 24rem;
}

.ag-timeline__item--left .ag-timeline__card {
  margin-left: auto;
  text-align: right;
}

.ag-timeline__item--right .ag-timeline__card {
  margin-right: auto;
  text-align: left;
}

@media (max-width: 768px) {
  .ag-timeline__card {
    width: calc(100% - 3rem);
    margin-left: 2.5rem !important;
    text-align: left !important;
  }
}

.ag-timeline__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.ag-timeline__accent-bar--forest {
  background: #22c55e;
}

.ag-timeline__accent-bar--gold {
  background: #d97706;
}

.ag-timeline__accent-bar--terra {
  background: #c9754b;
}

.ag-timeline__icon {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

.ag-timeline__card-title {
  font-family: var(--ag-font-display), Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0e3e29;
  margin-bottom: 0.375rem;
}

.ag-timeline__card-text {
  font-size: 0.875rem;
  color: #5a6370;
  line-height: 1.5;
}

.ag-timeline__card-text strong {
  color: #15803d;
}

.ag-timeline__current-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  padding: 0.25rem 0.625rem;
  background: #fef3c7;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #b45309;
}

/* Impact Section */
.ag-impact {
  background: #0e3e29;
  padding: clamp(2rem, 5vw, 5rem) 1.5rem;
  position: relative;
  overflow: hidden;
}

.ag-impact__container {
  max-width: 1152px;
  margin: 0 auto;
}

.ag-impact__title {
  font-family: var(--ag-font-display), Georgia, serif;
  font-size: clamp(2.5rem, 7.5vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
}

.ag-impact__title .text-gold-400 {
  background: linear-gradient(to right, #fb923c, #fcd34d, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ag-impact__description {
  font-size: clamp(1.125rem, 2.8vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.ag-impact__description .text-orange-300 {
  color: #fdba74;
  font-weight: 600;
}

.ag-impact__description em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.ag-impact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .ag-impact__grid {
    grid-template-columns: 1fr;
  }
}

.ag-impact__card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 243, 240, 0.92));
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(215, 211, 206, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ag-impact__card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.ag-impact__card--gold {
  border-color: rgba(245, 158, 11, 0.25);
}

.ag-impact__card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 1rem 1rem 0 0;
}

.ag-impact__card-accent--forest {
  background: linear-gradient(to right, #22c55e, #4ade80, transparent);
}

.ag-impact__card-accent--gold {
  background: linear-gradient(to right, #fbbf24, #fcd34d, transparent);
}

.ag-impact__card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.ag-impact__card-icon--forest {
  background: #0e3e29;
}

.ag-impact__card-icon--gold {
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

.ag-impact__card-title {
  font-family: var(--ag-font-display), Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0e3e29;
  text-align: center;
  margin-bottom: 0.5rem;
}

.ag-impact__card-subtitle {
  font-size: 0.875rem;
  color: #5a6370;
  text-align: center;
  margin-bottom: 2rem;
}

.ag-impact__values {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ag-impact__values li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ag-impact__check {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ag-impact__check--forest {
  background: #dcfce7;
  color: #166534;
}

.ag-impact__check--gold {
  background: #fef3c7;
  color: #b45309;
}

.ag-impact__values li span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0e3e29;
}

.ag-impact__values li div span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #5a6370;
  margin-top: 0.125rem;
}

/* Final CTA Section */
.ag-final-cta {
  background: linear-gradient(to bottom, #f5f3f0, #ffffff, #f5f3f0);
  padding: clamp(2rem, 5vw, 4rem) 1.5rem;
  position: relative;
}

.ag-final-cta__container {
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff, #f9f8f6, #ffffff);
  border: 2px solid #e8e4dc;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.ag-final-cta__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, #22c55e, #fbbf24, #c9754b);
}

.ag-final-cta__decorations {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
}

.ag-final-cta__decorations span:first-child {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 2.5rem;
}

.ag-final-cta__decorations span:last-child {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 2rem;
}

.ag-final-cta__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}

.ag-final-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.ag-final-cta__badge span:first-child {
  width: 0.375rem;
  height: 0.375rem;
  background: #166534;
  border-radius: 50%;
}

.ag-final-cta__badge span:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  color: #15803d;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.ag-final-cta__title {
  font-family: var(--ag-font-display), Georgia, serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: #0e3e29;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.ag-final-cta__title .text-gold-600 {
  color: #d97706;
}

.ag-final-cta__description {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #5a6370;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.ag-final-cta__highlight {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 600;
  color: #0e3e29;
  margin-bottom: 2rem;
}

.ag-final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ag-final-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ag-final-cta__button--primary {
  background: linear-gradient(to right, #ea580c, #d97706);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.35);
}

.ag-final-cta__button--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.45);
}

.ag-final-cta__button--secondary {
  background: #0e3e29;
  border: 2px solid #0e3e29;
  color: #ffffff;
}

.ag-final-cta__button--secondary:hover {
  transform: translateY(-1px);
}

.ag-final-cta__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-size: 0.875rem;
  color: #5a6370;
}

.ag-final-cta__trust span {
  font-weight: 500;
}

.ag-main [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

/* Home hero heading alignment fix */
.template-index .ag-home-hero__heading {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* Homepage impact animations */
@keyframes ag-impact-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes ag-impact-fade-right {
  from {
    opacity: 0;
    transform: translate3d(-26px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ag-impact-kenburns {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.12);
  }
}

@keyframes ag-impact-glow-sweep {
  0% {
    opacity: 0.45;
    transform: translateX(-3%) scale(1);
  }

  100% {
    opacity: 0.75;
    transform: translateX(3%) scale(1.06);
  }
}

@keyframes ag-impact-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.template-index .ag-home-hero__image,
.template-index .ag-home-hero__video {
  animation: ag-impact-kenburns 18s ease-in-out infinite alternate;
  will-change: transform;
}

.template-index .ag-home-hero__overlay--warm {
  animation: ag-impact-glow-sweep 10s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.template-index .ag-home-hero__eyebrow-container,
.template-index .ag-home-hero__heading-main,
.template-index .ag-home-hero__heading-accent,
.template-index .ag-home-hero__subheading,
.template-index .ag-home-hero__actions {
  opacity: 0;
  animation: ag-impact-fade-up 900ms var(--ag-ease-emphasized) forwards;
}

.template-index .ag-home-hero__eyebrow-container {
  animation-delay: 120ms;
}

.template-index .ag-home-hero__heading-main {
  animation-delay: 260ms;
}

.template-index .ag-home-hero__heading-accent {
  animation-delay: 420ms;
}

.template-index .ag-home-hero__subheading {
  animation-delay: 580ms;
}

.template-index .ag-home-hero__actions {
  animation-delay: 740ms;
}

.template-index section.bg-forest-950[data-reveal] .group {
  opacity: 0;
  animation: ag-impact-fade-up 820ms var(--ag-ease-emphasized) forwards;
}

.template-index section.bg-forest-950[data-reveal] .group:nth-child(1) {
  animation-delay: 100ms;
}

.template-index section.bg-forest-950[data-reveal] .group:nth-child(2) {
  animation-delay: 250ms;
}

.template-index section.bg-forest-950[data-reveal] .group:nth-child(3) {
  animation-delay: 400ms;
}

.template-index section.bg-forest-950[data-reveal] .group>div:first-child {
  animation: ag-impact-float 4.2s ease-in-out infinite;
}

.template-index .featured-collection-section .product-card,
.template-index .ag-testimonials-section [data-reveal]>article,
.template-index .ag-featured-blog-section [data-reveal]>article {
  opacity: 0;
  animation: ag-impact-fade-up 840ms var(--ag-ease-emphasized) forwards;
  will-change: transform, opacity;
}

.template-index .featured-collection-section [data-reveal]:nth-child(1) .product-card,
.template-index .ag-testimonials-section [data-reveal]:nth-child(1)>article,
.template-index .ag-featured-blog-section [data-reveal]:nth-child(1)>article {
  animation-delay: 120ms;
}

.template-index .featured-collection-section [data-reveal]:nth-child(2) .product-card,
.template-index .ag-testimonials-section [data-reveal]:nth-child(2)>article,
.template-index .ag-featured-blog-section [data-reveal]:nth-child(2)>article {
  animation-delay: 260ms;
}

.template-index .featured-collection-section [data-reveal]:nth-child(3) .product-card,
.template-index .ag-testimonials-section [data-reveal]:nth-child(3)>article,
.template-index .ag-featured-blog-section [data-reveal]:nth-child(3)>article {
  animation-delay: 400ms;
}

.template-index .ag-featured-blog-section .group:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px -24px rgba(0, 0, 0, 0.46);
}

.template-index .ag-home-promo__content>* {
  opacity: 0;
  animation: ag-impact-fade-right 900ms var(--ag-ease-emphasized) forwards;
}

.template-index .ag-home-promo__content>*:nth-child(1) {
  animation-delay: 140ms;
}

.template-index .ag-home-promo__content>*:nth-child(2) {
  animation-delay: 260ms;
}

.template-index .ag-home-promo__content>*:nth-child(3) {
  animation-delay: 380ms;
}

.template-index .ag-home-promo__content>*:nth-child(4) {
  animation-delay: 500ms;
}

.template-index .ag-home-promo__content>*:nth-child(5) {
  animation-delay: 620ms;
}

.template-index .ag-home-promo__image-frame {
  animation: ag-impact-fade-up 1s var(--ag-ease-emphasized) 260ms both;
}

.template-index .ag-home-promo__story-badge {
  animation: ag-impact-float 4.6s ease-in-out 1s infinite;
}

.template-index .ag-discovery__header>* {
  opacity: 0;
  animation: ag-impact-fade-up 840ms var(--ag-ease-emphasized) forwards;
}

.template-index .ag-discovery__header>*:nth-child(1) {
  animation-delay: 100ms;
}

.template-index .ag-discovery__header>*:nth-child(2) {
  animation-delay: 220ms;
}

.template-index .ag-discovery__header>*:nth-child(3) {
  animation-delay: 340ms;
}

.template-index .ag-discovery__card .ag-discovery__card-inner {
  opacity: 0;
  animation: ag-impact-fade-up 820ms var(--ag-ease-emphasized) forwards;
}

.template-index .ag-discovery__grid .ag-discovery__card:nth-child(1) .ag-discovery__card-inner {
  animation-delay: 160ms;
}

.template-index .ag-discovery__grid .ag-discovery__card:nth-child(2) .ag-discovery__card-inner {
  animation-delay: 320ms;
}

.template-index .ag-discovery__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px -22px rgba(14, 62, 41, 0.25);
}

@media (prefers-reduced-motion: reduce) {

  .template-index .ag-home-hero__image,
  .template-index .ag-home-hero__video,
  .template-index .ag-home-hero__overlay--warm,
  .template-index section.bg-forest-950[data-reveal] .group>div:first-child,
  .template-index .ag-home-promo__story-badge {
    animation: none !important;
  }

  .template-index .ag-home-hero__eyebrow-container,
  .template-index .ag-home-hero__heading-main,
  .template-index .ag-home-hero__heading-accent,
  .template-index .ag-home-hero__subheading,
  .template-index .ag-home-hero__actions,
  .template-index section.bg-forest-950[data-reveal] .group,
  .template-index .featured-collection-section .product-card,
  .template-index .ag-testimonials-section [data-reveal]>article,
  .template-index .ag-featured-blog-section [data-reveal]>article,
  .template-index .ag-home-promo__content>*,
  .template-index .ag-home-promo__image-frame,
  .template-index .ag-discovery__header>*,
  .template-index .ag-discovery__card .ag-discovery__card-inner {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Homepage non-hero canvas unification (header/hero/footer untouched) */
body.template-index #MainContent {
  --ag-home-canvas-cream: #f8f4ec;
  --ag-home-canvas-cream-deep: #f4efe5;
  --ag-home-canvas-divider: rgba(15, 61, 46, 0.08);
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, var(--ag-home-canvas-cream) 0%, var(--ag-home-canvas-cream-deep) 100%);
}

body.template-index #MainContent::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(0, 0, 0, 0.2) 0.5px, transparent 0.65px),
    radial-gradient(circle at 80% 32%, rgba(0, 0, 0, 0.18) 0.5px, transparent 0.65px),
    radial-gradient(circle at 42% 74%, rgba(0, 0, 0, 0.16) 0.5px, transparent 0.65px);
  background-size: 180px 180px, 220px 220px, 200px 200px;
  mix-blend-mode: multiply;
}

body.template-index #MainContent>.shopify-section {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* Keep the hero untouched and avoid a seam directly under hero */
body.template-index #MainContent>.shopify-section:first-child,
body.template-index #MainContent>.shopify-section:nth-child(2) {
  z-index: 2;
}

/* Unified light-canvas treatment across non-hero homepage sections */
body.template-index #MainContent .featured-collection-section--shell,
body.template-index #MainContent .ag-testimonials-section,
body.template-index #MainContent .ag-featured-blog-section,
body.template-index #MainContent .ag-discovery {
  background: transparent !important;
}

/* Soft section separation for non-hero section rhythm */
body.template-index #MainContent>.shopify-section:not(:first-child):not(:nth-child(2))::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(to right, transparent, var(--ag-home-canvas-divider), transparent);
}

/* Keep card surfaces cohesive against unified cream canvas */
body.template-index #MainContent .featured-collection-section .product-card,
body.template-index #MainContent .ag-testimonials-section article,
body.template-index #MainContent .ag-discovery__card {
  background-color: rgba(255, 255, 255, 0.96);
}

/* Trust band height safety: ensure content fits with comfortable vertical space */
.template-index .ag-trust-band {
  padding-top: clamp(2.5rem, 5vw, 4rem) !important;
  padding-bottom: clamp(2.5rem, 5vw, 4rem) !important;
  min-height: clamp(210px, 24vw, 320px) !important;
}

.template-index .ag-trust-band__inner {
  align-items: center !important;
}

/* ========================================
   FAQ HERO — FLUSH HEADER GAP FIX
   Ensures the hero video starts immediately
   below the sticky header on all breakpoints.
   ======================================== */

/* Zero out top padding on the main content area for page templates
   that have a full-bleed hero (FAQ, About, Collection, etc.) */
.template-page:not(.page-about):not(.page-contact):not(.page-faq) .ag-main,
.template-page:not(.page-about):not(.page-contact):not(.page-faq) #MainContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Collection and blog templates also use full-bleed hero blocks */
.template-collection .ag-main,
.template-collection #MainContent,
.template-blog .ag-main,
.template-blog #MainContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Remove any top gap from the Shopify section wrapper itself */
.template-page .shopify-section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.template-collection .shopify-section:first-child,
.template-blog .shopify-section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ensure the FAQ page root and its hero have no stray top space */
.ag-faq-page {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.ag-faq-hero {
  margin-top: 0 !important;
}

/* Mobile: same fix, belt-and-braces */
@media (max-width: 768px) {

  .template-page .ag-main,
  .template-page #MainContent {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .template-collection .ag-main,
  .template-collection #MainContent,
  .template-blog .ag-main,
  .template-blog #MainContent {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}
/* ========================================
   PRODUCT CARDS - Premium Styling
   Matching Next.js HomeTopSellers
   Added: 2026-03-01
   ======================================== */

/* Product card base - matches card-premium class from Next.js */
.template-index .product-card {
  background: linear-gradient(135deg, #ffffff 0%, #faf9f6 50%, rgba(240, 245, 235, 0.4) 100%) !important;
  border: 1px solid rgba(14, 62, 41, 0.05) !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 12px 30px rgba(14, 62, 41, 0.06) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.2s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.template-index .product-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  ) !important;
  transition: transform 0.5s ease !important;
  pointer-events: none !important;
  z-index: 1 !important;
  transform: translateX(-200%) !important;
}

.template-index .product-card:hover::before {
  transform: translateX(200%) !important;
}

.template-index .product-card:hover {
  transform: translateY(-8px) !important;
  box-shadow:
    0 24px 48px rgba(14, 62, 41, 0.12),
    0 8px 16px rgba(245, 158, 11, 0.08),
    0 0 0 2px rgba(246, 185, 0, 0.15) !important;
  border-color: rgba(245, 158, 11, 0.6) !important;
}

/* Product card image */
.template-index .product-card__media {
  position: relative !important;
  background: #f0f5eb !important;
  aspect-ratio: 4/3 !important;
  overflow: hidden !important;
}

.template-index .product-card__media img {
  transition: transform 0.2s ease-out !important;
}

.template-index .product-card:hover .product-card__media img {
  transform: scale(1.05) !important;
}

/* Product card content */
.template-index .product-card__content {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  padding: 1.4rem !important;
  row-gap: 0.15rem !important;
}

/* Product title */
.template-index .product-card__content h3 {
  font-family: 'Fraunces', serif !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #0a1f17 !important;
  margin-bottom: 0.55rem !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  overflow: hidden !important;
}

/* Product rating */
.template-index .product-card__rating {
  min-height: 1.3rem !important;
  margin-bottom: 0.65rem !important;
}

.template-index .product-card__rating span:first-child {
  color: #f38f18 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.1em !important;
}

.template-index .product-card__rating span:last-child {
  font-size: 0.625rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-weight: 600 !important;
  color: #8a8a8a !important;
}

/* Product description */
.template-index .product-card__content p {
  font-size: 0.8125rem !important;
  line-height: 1.65 !important;
  color: #525252 !important;
  margin-bottom: 1.25rem !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  overflow: hidden !important;
}

/* Product footer */
.template-index .product-card__footer {
  margin-top: auto !important;
  padding-top: 0.55rem !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  border-top: 1px solid rgba(14, 62, 41, 0.08) !important;
}

.template-index .product-card__footer span {
  font-family: 'Fraunces', serif !important;
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  color: #0a1f17 !important;
}

/* Product button - premium styling */
.template-index .product-card button {
  background: linear-gradient(180deg, #F4B942 0%, #E8A735 100%) !important;
  color: #0F3D2E !important;
  font-size: 0.625rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 0.58rem 1.05rem !important;
  min-height: 2.55rem !important;
  border-radius: 0.5rem !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 30px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    filter 0.18s ease-out !important;
  cursor: pointer !important;
  border: none !important;
}

.template-index .product-card button:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 18px 45px rgba(0, 0, 0, 0.3) !important;
  filter: brightness(1.04) !important;
}

/* Featured collection section - noise texture overlay */
.template-index .featured-collection-section {
  position: relative !important;
}

.template-index .featured-collection-section::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  opacity: 0.035 !important;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E") !important;
  z-index: 0 !important;
}

.template-index .featured-collection-section > .page-width {
  position: relative !important;
  z-index: 1 !important;
}

/* See All button - premium styling */
.template-index .featured-collection-section .see-all-btn {
  background: linear-gradient(180deg, #F4B942 0%, #E8A735 100%) !important;
  color: #0F3D2E !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  padding: 0.875rem 2.25rem !important;
  min-height: 3.05rem !important;
  border-radius: 0.75rem !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 30px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    filter 0.18s ease-out !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.625rem !important;
  text-decoration: none !important;
}

.template-index .featured-collection-section .see-all-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 18px 45px rgba(0, 0, 0, 0.3) !important;
  filter: brightness(1.04) !important;
}

/* ============================================
   ABOUT PAGE HERO OVERRIDES - Force pure white
   ============================================ */

/* Force pure white on About page subheading - override all other rules */
.ag-about-page .ag-home-hero__subheading,
.template-page.page-about .ag-home-hero__subheading,
.ag-about-page p.ag-home-hero__subheading,
.template-page.page-about p.ag-home-hero__subheading {
  color: #ffffff !important;
  color: rgb(255, 255, 255) !important;
  color: white !important;
}

/* Remove pill styling from About page eyebrow */
.ag-about-page .ag-home-hero__eyebrow,
.template-page.page-about .ag-home-hero__eyebrow,
.ag-about-page .ag-kicker,
.template-page.page-about .ag-kicker {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  display: inline !important;
}

/* ============================================
   FEATURED BLOG SECTION - Card visibility fix
   ============================================ */

/* Ensure card backgrounds are rendered */
.ag-featured-blog-section article {
  background: linear-gradient(to bottom right, #0e3e29, #184a2c, #0a1f17) !important;
  border-radius: 1rem !important;
}

/* Card titles - make visible white text */
.ag-featured-blog-section .text-white,
.ag-featured-blog-section article h3,
.ag-featured-blog-section article .text-xl,
.ag-featured-blog-section article .text-2xl,
.ag-featured-blog-section article .text-3xl {
  color: #ffffff !important;
}

/* Card excerpts */
.ag-featured-blog-section article p {
  color: rgba(180, 212, 196, 1) !important;
}

/* Category badges */
.ag-featured-blog-section article span.bg-\[\#f35201\]\/20 {
  background-color: rgba(243, 82, 1, 0.2) !important;
  color: #f35201 !important;
}

.ag-featured-blog-section article span.bg-\[\#0e3e29\]\/80 {
  background-color: rgba(14, 62, 41, 0.8) !important;
  color: #10b981 !important;
}

.ag-featured-blog-section article span.bg-\[\#c9754b\]\/20 {
  background-color: rgba(201, 117, 75, 0.2) !important;
  color: #c9754b !important;
}

/* Large watermarks */
.ag-featured-blog-section article span.text-white\/10 {
  color: rgba(255, 255, 255, 0.1) !important;
}

.ag-featured-blog-section article .group-hover\:text-\[\#f35201\]\/30:hover {
  color: rgba(243, 82, 1, 0.3) !important;
}

/* Card links - inherit parent color */
.ag-featured-blog-card-title > a,
.ag-featured-blog-card-title > a:visited {
  color: inherit !important;
  text-decoration: none !important;
}

/* Hover state for card titles */
.ag-featured-blog-section article:hover .text-xl,
.ag-featured-blog-section article:hover .text-2xl,
.ag-featured-blog-section article:hover h3,
.ag-featured-blog-section article:hover .group-hover\:text-\[\#ea580c\] {
  color: #ea580c !important;
}

/* Ensure article content is visible */
.ag-featured-blog-section article .p-12,
.ag-featured-blog-section article .p-14 {
  padding: 3rem !important;
}

@media (min-width: 768px) {
  .ag-featured-blog-section article .p-12 {
    padding: 3.5rem !important;
  }
}

/* ============================================
   HOME HERO BUTTONS - Match About page hero
   ============================================ */

/* Use .ag-button styles for home hero - light text on dark background */
.template-index .ag-home-hero .ag-button--primary {
  background: #f35201 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.template-index .ag-home-hero .ag-button--primary:hover {
  background: #ea580c !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

.template-index .ag-home-hero .ag-button--ghost {
  background: rgba(255, 248, 240, 0.95) !important;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #0E3E29 !important;
  border: 1.5px solid #0E3E29 !important;
}

.template-index .ag-home-hero .ag-button--ghost:hover {
  background: rgba(255, 248, 240, 1) !important;
}

/* Ensure buttons have consistent sizing */
.template-index .ag-home-hero .ag-button {
  min-height: 50px;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (min-width: 640px) {
  .template-index .ag-home-hero .ag-button {
    padding: 0.75rem 2rem;
    min-height: 48px;
  }
}

/* Remove glow from hero accent text */
.template-index .ag-hero-accent-text {

/* Home hero secondary button - black with white outline */
.template-index .ag-home-hero .ag-button--ghost {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1.5px solid #ffffff !important;
}

/* Home hero secondary button override - higher specificity */
.template-index .ag-home-hero .ag-home-hero__button-secondary {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1.5px solid #ffffff !important;
}

.template-index .ag-home-hero .ag-home-hero__button-secondary:hover {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

/* Maximum specificity for home hero secondary button */
.template-index .ag-home-hero .ag-button.ag-button--ghost.ag-home-hero__button.ag-home-hero__button-secondary,
.template-index .ag-home-hero .ag-button.ag-button--ghost.ag-home-hero__button-secondary,
.template-index .ag-home-hero__actions .ag-button.ag-button--ghost.ag-home-hero__button-secondary {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1.5px solid #ffffff !important;
}

.template-index .ag-home-hero .ag-button.ag-button--ghost.ag-home-hero__button.ag-home-hero__button-secondary:hover,
.template-index .ag-home-hero .ag-button.ag-button--ghost.ag-home-hero__button-secondary:hover,
.template-index .ag-home-hero__actions .ag-button.ag-button--ghost.ag-home-hero__button-secondary:hover {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

/* Direct override for home hero secondary button - simplest approach */
.template-index .ag-home-hero__button-secondary {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1.5px solid #ffffff !important;
}

.template-index .ag-home-hero__button-secondary:hover {
  background-color: #000000 !important;
}

/* Home hero video - remove filters and make 50% darker */
.template-index .ag-home-hero .ag-home-hero__video,
.template-index .ag-home-hero video,
.ag-home-hero__video {
  filter: brightness(0.3) !important;
}

/* Remove all animation and filter overrides */
.template-index .ag-home-hero .ag-home-hero__video,
.template-index .ag-home-hero video {
  animation: none !important;
}

/* Hero accent text - matches localhost:3000 */
.template-index .ag-hero-accent-text,
.template-index section .ag-home-hero .ag-hero-accent-text,
.template-index .ag-home-hero section .ag-hero-accent-text,
.template-index .ag-home-hero__text-wrapper .ag-hero-accent-text {
  text-shadow: none !important;
  filter: none !important;
}

/* Sharpen subheading text to pop against background */
.template-index .ag-home-hero .ag-home-hero__subheading {
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 1),
    0 4px 12px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(255, 255, 255, 0.3),
    0 0 1px rgba(255, 255, 255, 0.8) !important;
  color: #ffffff !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  letter-spacing: 0.5px;
}


